:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #050507;
  color: #fff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  min-width: 320px;
  overflow: hidden;
  background: #050507;
}

.coming-soon {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
}

.media,
.media__video,
.media__fallback,
.media__overlay,
.media__grain {
  position: absolute;
  inset: 0;
}

.media {
  z-index: -1;
  background: #050507;
}

.media__video {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transform: scale(1.025);
  filter: saturate(1.32) contrast(1.08) brightness(0.94);
  transition: opacity 0.65s ease;
}

.media__video.is-ready {
  opacity: 0.9;
}

.media__fallback {
  z-index: 0;
  background:
    radial-gradient(circle at 74% 24%, rgba(66, 212, 255, 0.2), transparent 26%),
    radial-gradient(circle at 18% 82%, rgba(113, 201, 234, 0.16), transparent 31%),
    linear-gradient(135deg, #050507 15%, #11121a 52%, #050507 88%);
}

.media__fallback::before,
.media__fallback::after {
  position: absolute;
  content: "";
  width: 48vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform-origin: center;
}

.media__fallback::before {
  top: 20%;
  right: -8%;
  transform: rotate(-31deg);
}

.media__fallback::after {
  bottom: 18%;
  left: -9%;
  transform: rotate(-31deg);
}

.media__overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.4)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.64), transparent 44%, rgba(0, 0, 0, 0.22));
}

.media__grain {
  z-index: 3;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  pointer-events: none;
}

.content {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  padding: clamp(1.5rem, 5vw, 4.75rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 3rem;
  opacity: 0;
  transform: translateY(-1rem);
  animation: brand-in 0.8s 0.12s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.brand__logo {
  display: none;
  width: auto;
  max-width: min(22rem, 72vw);
  max-height: 5.5rem;
  object-fit: contain;
  filter: drop-shadow(0 0.75rem 1.5rem rgba(0, 0, 0, 0.45));
}

.brand.has-image .brand__logo {
  display: block;
}

.brand.has-image .brand__fallback {
  display: none;
}

.brand__fallback {
  color: #2c3942;
  font-size: clamp(0.84rem, 1.4vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.28em;
}

.announcement {
  align-self: center;
  width: min(62rem, 100%);
  padding-block: 3rem;
}

.announcement__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  font-weight: 650;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-1.25rem);
  animation: fade-slide-in 0.75s 0.58s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.announcement__eyebrow::before {
  width: 2.8rem;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #71c9ea, #ffffff);
  box-shadow: 0 0 18px rgba(113, 201, 234, 0.72);
  transform: scaleX(0);
  transform-origin: left;
  animation: line-grow 0.65s 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

h1 {
  margin: 0;
  font-size: clamp(4.5rem, 15vw, 12rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  text-wrap: balance;
}

.title__word {
  display: inline-block;
  color: transparent;
  background: linear-gradient(105deg, #ffffff 20%, #ffffff 42%, #73d2f4 50%, #ffffff 58%, #ffffff 80%);
  background-size: 260% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(0.72em) scale(0.96);
  animation:
    title-in 1s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    title-shimmer 6s 2.35s ease-in-out infinite;
}

.title__word--first {
  margin-right: 0.14em;
  animation-delay: 0.82s, 2.35s;
}

.title__word--second {
  animation-delay: 1.04s, 2.55s;
}

.announcement__copy {
  margin: clamp(1.4rem, 3vw, 2.4rem) 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(1rem);
  animation: fade-up-in 0.8s 1.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.social-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.6rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fade-up-in 0.8s 1.78s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.social-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.social-actions a:hover {
  transform: translateY(-2px);
}

.social-actions a:focus-visible {
  outline: 2px solid #73d2f4;
  outline-offset: 4px;
}

.social-actions svg {
  width: 1.35rem;
  height: 1.35rem;
}

.social-actions__instagram {
  width: 3rem;
  border-radius: 50%;
  color: #fff;
  background: rgba(5, 5, 7, 0.36);
  backdrop-filter: blur(10px);
}

.social-actions__instagram:hover {
  border-color: rgba(115, 210, 244, 0.8);
  background: rgba(115, 210, 244, 0.18);
  box-shadow: 0 0.6rem 1.8rem rgba(0, 0, 0, 0.28);
}

.social-actions__instagram svg,
.social-actions__agenda svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-actions__instagram .icon-dot {
  fill: currentColor;
  stroke: none;
}

.social-actions__agenda {
  gap: 0.65rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border-color: rgba(115, 210, 244, 0.52);
  color: #fff;
  background: linear-gradient(135deg, rgba(41, 160, 217, 0.36), rgba(72, 177, 225, 0.16));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0.75rem 2rem rgba(0, 0, 0, 0.25),
    0 0 1.8rem rgba(74, 190, 238, 0.1);
  backdrop-filter: blur(14px) saturate(145%);
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.social-actions__agenda svg {
  color: #fff;
  fill: currentColor;
  stroke: none;
}

.social-actions__agenda:hover {
  border-color: rgba(181, 234, 255, 0.9);
  background: linear-gradient(135deg, rgba(52, 175, 231, 0.5), rgba(96, 201, 240, 0.26));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0.8rem 2.2rem rgba(0, 0, 0, 0.24),
    0 0 2.2rem rgba(115, 210, 244, 0.28);
}

.footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  animation: simple-fade-in 0.9s 2.05s ease forwards;
}

.footer__line {
  width: 2.2rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

@keyframes brand-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-slide-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes line-grow {
  to {
    transform: scaleX(1);
  }
}

@keyframes title-in {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes title-shimmer {
  0%,
  62%,
  100% {
    background-position: 100% 0;
  }

  78% {
    background-position: 0 0;
  }
}

@keyframes fade-up-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes simple-fade-in {
  to {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .content {
    padding: 1.5rem;
  }

  .announcement {
    align-self: end;
    padding-bottom: clamp(4rem, 14vh, 8rem);
  }

  h1 {
    max-width: 6ch;
    font-size: clamp(4.2rem, 22vw, 7rem);
    line-height: 0.86;
  }

  .title__word {
    display: block;
  }

  .title__word--first {
    margin-right: 0;
  }

  .media__overlay {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.08) 68%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.3), transparent);
  }
}

@media (prefers-reduced-motion: reduce) {
  .media__video {
    display: none;
  }

  .brand,
  .announcement__eyebrow,
  .announcement__eyebrow::before,
  .title__word,
  .announcement__copy,
  .social-actions,
  .footer {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }
}
