:root {
  --ink: #05070b;
  --surface: #0a0c12;
  --surface-2: #0d1018;
  --white: #fbfbfd;
  --text: #f5f4f8;
  --muted: #a7a6b1;
  --muted-2: #73727f;
  --hairline: rgba(255,255,255,.115);
  --pink: #ff2b9b;
  --magenta: #f20f89;
  --violet: #923cff;
  --blue: #297cff;
  --cyan: #23cfff;
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-smooth: cubic-bezier(.22,1,.36,1);
  --title-duration: .62s;
  --title-start: .14s;
  --title-stagger: 22ms;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--ink); }
html, body { margin: 0; min-height: 100%; }
body {
  min-height: 100svh;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }

.landing {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(14px, 2.4vw, 44px);
  background:
    radial-gradient(70% 68% at 4% 15%, rgba(125, 11, 75, .20), transparent 60%),
    radial-gradient(62% 64% at 94% 83%, rgba(0, 96, 132, .16), transparent 62%),
    linear-gradient(120deg, #050608 0%, #07070c 48%, #05080d 100%);
}

.energy-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ambient {
  position: absolute;
  z-index: 0;
  width: min(52vw, 780px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(95px);
  opacity: .18;
  pointer-events: none;
  transform: translate3d(0,0,0);
  animation: ambientFloat 14s var(--ease-smooth) infinite alternate;
}
.ambient--magenta { left: -22%; top: -24%; background: #d4127e; }
.ambient--cyan { right: -26%; bottom: -30%; background: #0289b7; animation-delay: -7s; }

.grain {
  position: absolute;
  inset: 0;
  z-index: 20;
  opacity: .055;
  pointer-events: none;
  mix-blend-mode: soft-light;
  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='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.62'/%3E%3C/svg%3E");
}

.stage {
  position: relative;
  z-index: 2;
  width: min(1240px, 100%);
  min-height: min(790px, calc(100svh - clamp(28px, 4.8vw, 88px)));
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border-radius: clamp(24px, 2.4vw, 38px);
  border: 1px solid rgba(255,255,255,.13);
  background:
    radial-gradient(80% 90% at 0% 0%, rgba(255, 36, 151, .075), transparent 45%),
    radial-gradient(70% 85% at 100% 100%, rgba(35, 207, 255, .07), transparent 48%),
    linear-gradient(155deg, rgba(17,18,26,.86), rgba(6,9,14,.92));
  box-shadow:
    0 42px 130px rgba(0,0,0,.48),
    0 1px 0 rgba(255,255,255,.07) inset,
    0 0 0 1px rgba(0,0,0,.35) inset;
  backdrop-filter: blur(24px) saturate(115%);
}
.stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255,31,145,.4), transparent 13%, transparent 87%, rgba(35,207,255,.25)) top / 100% 1px no-repeat;
  opacity: .62;
}
.stage::after {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  bottom: -35%;
  height: 55%;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(47, 69, 132, .11), transparent 66%);
  filter: blur(42px);
}

.stage__edge {
  position: absolute;
  top: 6%;
  bottom: 8%;
  width: 1px;
  z-index: 3;
  opacity: .72;
  pointer-events: none;
}
.stage__edge::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 210px;
  top: 11%;
  filter: blur(42px);
  opacity: .5;
}
.stage__edge--left {
  left: 0;
  background: linear-gradient(to bottom, transparent, rgba(255,43,155,.65) 28%, rgba(255,43,155,.15) 68%, transparent);
  box-shadow: 0 0 16px rgba(255,43,155,.2);
}
.stage__edge--left::before { left: -65px; background: rgba(255,43,155,.5); }
.stage__edge--right {
  right: 0;
  background: linear-gradient(to bottom, transparent, rgba(35,207,255,.12) 30%, rgba(35,207,255,.44) 70%, transparent);
  box-shadow: 0 0 14px rgba(35,207,255,.15);
}
.stage__edge--right::before { right: -65px; top: 56%; background: rgba(35,207,255,.38); }

.nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 3vw, 46px) clamp(30px, 4.4vw, 68px) 0;
}
.brand { display: inline-flex; align-items: center; }
.brand__logo {
  display: block;
  width: clamp(148px, 13.4vw, 190px);
  height: auto;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,.18));
}
.nav__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(231,229,238,.72);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .115em;
  text-transform: uppercase;
  white-space: nowrap;
}
.status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 9px rgba(255,43,155,.9), 0 0 22px rgba(255,43,155,.45);
}

.hero {
  position: relative;
  z-index: 4;
  align-self: center;
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
  padding: 52px clamp(28px, 4vw, 60px) 50px;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255,43,155,.33);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  color: rgba(250,249,252,.9);
  box-shadow: 0 0 0 1px rgba(255,255,255,.018) inset, 0 12px 32px rgba(0,0,0,.18);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px) scale(.98);
  animation: fadeRise .58s .08s var(--ease-out) forwards;
}

.hero__title {
  margin: clamp(30px, 4.2vh, 42px) 0 0;
  width: 100%;
  color: var(--white);
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-size: clamp(3.2rem, 7.75vw, 8.25rem);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.058em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 18px 52px rgba(0,0,0,.32);
}
.hero__word {
  display: inline-flex;
  max-width: none;
  justify-content: center;
  align-items: baseline;
}
.hero__char {
  display: inline-block;
  opacity: 0;
  transform: translateY(62px) rotateX(-55deg) scale(.94);
  transform-origin: 50% 100%;
  filter: blur(5px);
  animation: titleReveal var(--title-duration) var(--ease-out) forwards;
  animation-delay: calc(var(--title-start) + (var(--i) * var(--title-stagger)));
}

.hero__beam {
  position: relative;
  width: min(86%, 780px);
  height: 24px;
  margin: 2px auto 0;
  overflow: visible;
  opacity: 0;
  animation: beamReveal .62s .42s var(--ease-out) forwards;
}
.hero__beam::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,43,155,.62) 18%, #ff2b9b 34%, #a342ff 58%, #2cbffd 80%, transparent 100%);
  box-shadow: 0 0 8px rgba(255,43,155,.42), 0 0 18px rgba(58,163,255,.18);
}
.hero__beam span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18%;
  height: 2px;
  transform: translate(-50%,-50%);
  background: #fff;
  filter: blur(1px);
  box-shadow: 0 0 12px 2px rgba(255,255,255,.45), 0 0 28px 5px rgba(238,42,168,.28);
  opacity: .72;
  animation: beamTravel 3.2s .8s ease-in-out infinite;
}

.hero__copy {
  max-width: 720px;
  margin: clamp(24px, 3.1vh, 34px) auto 0;
  color: rgba(220,218,226,.78);
  font-size: clamp(15px, 1.32vw, 19px);
  font-weight: 500;
  line-height: 1.72;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeRise .58s .36s var(--ease-out) forwards;
}
.hero__copy strong { color: #fff; font-weight: 800; }

.hero__action {
  display: grid;
  justify-items: center;
  margin-top: clamp(24px, 3.2vh, 34px);
  opacity: 0;
  transform: translateY(18px);
  animation: fadeRise .58s .46s var(--ease-out) forwards;
}
.primary-cta {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  isolation: isolate;
  min-width: min(100%, 392px);
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 17px 0 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 17px;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,.20), transparent 28%),
    linear-gradient(112deg, #ff197f 0%, #e21bb3 36%, #9a36ff 67%, #3579ff 100%);
  box-shadow:
    0 16px 42px rgba(227, 23, 153, .20),
    0 4px 14px rgba(0,0,0,.22),
    0 1px 0 rgba(255,255,255,.28) inset,
    0 -1px 0 rgba(0,0,0,.2) inset;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.015em;
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out), filter .28s var(--ease-out);
}
.primary-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-120%) skewX(-20deg);
  background: linear-gradient(90deg, transparent 20%, rgba(255,255,255,.24), transparent 78%);
  animation: ctaSheen 4.8s 1.4s ease-in-out infinite;
}
.primary-cta:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 22px 56px rgba(227, 23, 153, .28),
    0 8px 18px rgba(0,0,0,.28),
    0 1px 0 rgba(255,255,255,.3) inset;
  filter: saturate(1.08) brightness(1.035);
}
.primary-cta:active { transform: translateY(-1px) scale(.995); }
.primary-cta:focus-visible {
  outline: 3px solid rgba(255,255,255,.95);
  outline-offset: 4px;
}
.primary-cta__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 11px;
  background: rgba(255,255,255,.10);
  transition: transform .3s var(--ease-out), background .3s ease;
}
.primary-cta__icon svg { width: 19px; height: 19px; }
.primary-cta:hover .primary-cta__icon { transform: translateX(3px); background: rgba(255,255,255,.15); }

.availability {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 17px 0 0;
  color: rgba(198,196,207,.66);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}
.availability__icon {
  width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  color: var(--pink);
  filter: drop-shadow(0 0 8px rgba(255,43,155,.32));
}
.availability__icon svg { width: 100%; height: 100%; }

.footer {
  position: relative;
  z-index: 5;
  padding: 0 24px clamp(24px, 3.1vw, 38px);
  color: rgba(160,157,171,.48);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .26em;
  text-align: center;
  text-transform: uppercase;
}
.footer span { margin-inline: .4em; color: rgba(255,43,155,.5); }

@keyframes titleReveal {
  to { opacity: 1; transform: translateY(0) rotateX(0) scale(1); filter: blur(0); }
}
@keyframes fadeRise {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes beamReveal {
  from { opacity: 0; transform: scaleX(.55); }
  to { opacity: 1; transform: scaleX(1); }
}
@keyframes beamTravel {
  0%, 100% { left: 31%; opacity: .12; }
  48% { left: 68%; opacity: .85; }
}
@keyframes ctaSheen {
  0%, 70%, 100% { transform: translateX(-120%) skewX(-20deg); }
  82% { transform: translateX(135%) skewX(-20deg); }
}
@keyframes ambientFloat {
  from { transform: translate3d(-2%, -1%, 0) scale(.96); }
  to { transform: translate3d(8%, 6%, 0) scale(1.12); }
}

@media (max-width: 980px) {
  .hero__title { font-size: clamp(3rem, 9.4vw, 5.85rem); }
  .nav__status { font-size: 10px; }
}

@media (max-width: 720px) {
  :root {
    --title-duration: .42s;
    --title-start: .045s;
    --title-stagger: 8ms;
  }

  .landing {
    padding: 0;
    place-items: stretch;
    background:
      radial-gradient(92% 58% at -12% 42%, rgba(177, 10, 101, .22), transparent 62%),
      radial-gradient(88% 58% at 112% 72%, rgba(0, 112, 154, .20), transparent 64%),
      linear-gradient(160deg, #07080d 0%, #04060a 100%);
  }

  .ambient { display: none; }
  .grain { opacity: .026; mix-blend-mode: normal; }

  .stage {
    min-height: 100svh;
    width: 100%;
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(90% 54% at -10% 50%, rgba(215, 13, 121, .075), transparent 65%),
      radial-gradient(85% 54% at 110% 74%, rgba(12, 127, 166, .07), transparent 66%),
      linear-gradient(160deg, rgba(8,9,15,.73), rgba(3,6,10,.77));
    box-shadow: none;
    backdrop-filter: none;
  }

  .stage::before { opacity: .88; }
  .stage::after { opacity: .6; }

  .nav {
    padding: max(22px, env(safe-area-inset-top)) 20px 0;
  }
  .brand__logo { width: 142px; }
  .nav__status { display: none; }

  .hero {
    align-self: start;
    padding: clamp(78px, 10.5svh, 110px) 18px 38px;
  }

  .hero__badge {
    min-height: 35px;
    padding-inline: 13px;
    font-size: 9.2px;
    letter-spacing: .10em;
    transform: translateY(8px) scale(.985);
    animation-duration: .38s;
    animation-delay: .02s;
  }

  .hero__title {
    margin-top: 27px;
    /* JS performs a final pixel-perfect fit after the active font loads. */
    font-size: clamp(2.1rem, 10.45vw, 4.45rem);
    letter-spacing: -.066em;
    line-height: .91;
  }

  .hero__char {
    transform: translateY(28px) rotateX(-24deg) scale(.975);
    filter: blur(3px);
  }

  .hero__beam {
    width: 92%;
    height: 20px;
    margin-top: 2px;
    animation-duration: .46s;
    animation-delay: .24s;
  }
  .hero__beam span { animation-duration: 2.8s; animation-delay: .5s; }

  .hero__copy {
    max-width: 450px;
    margin-top: 20px;
    padding-inline: 3px;
    font-size: 14.5px;
    line-height: 1.62;
    transform: translateY(10px);
    animation-duration: .42s;
    animation-delay: .24s;
  }

  .hero__action {
    margin-top: 22px;
    transform: translateY(10px);
    animation-duration: .44s;
    animation-delay: .32s;
  }

  .primary-cta {
    width: min(100%, 390px);
    min-width: 0;
    min-height: 58px;
    padding: 0 14px 0 20px;
    border-radius: 16px;
    font-size: 13.7px;
    box-shadow:
      0 14px 34px rgba(227, 23, 153, .22),
      0 4px 12px rgba(0,0,0,.22),
      0 1px 0 rgba(255,255,255,.28) inset;
  }

  .primary-cta__icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .availability {
    max-width: 320px;
    margin-top: 14px;
    padding-inline: 6px;
    font-size: 11px;
    line-height: 1.42;
    text-align: center;
  }

  .footer {
    padding: 0 18px max(20px, env(safe-area-inset-bottom));
    font-size: 7.7px;
    letter-spacing: .20em;
  }
}

@media (max-width: 390px) {
  .brand__logo { width: 132px; }
  .hero { padding-inline: 14px; padding-top: clamp(70px, 9.5svh, 94px); }
  .hero__badge { font-size: 8.5px; padding-inline: 12px; }
  .hero__title { font-size: 10.25vw; margin-top: 24px; }
  .hero__copy { font-size: 14px; }
  .primary-cta { font-size: 13.2px; }
  .availability { font-size: 10.7px; }
}

@media (max-height: 720px) and (min-width: 721px) {
  .stage { min-height: calc(100svh - 28px); }
  .nav { padding-top: 24px; }
  .hero { padding-top: 28px; padding-bottom: 22px; }
  .hero__title { margin-top: 26px; font-size: clamp(3.8rem, 7.4vw, 6.9rem); }
  .hero__copy { margin-top: 18px; line-height: 1.55; }
  .hero__action { margin-top: 20px; }
  .footer { padding-bottom: 20px; }
}

@media (max-height: 670px) and (max-width: 720px) {
  .stage { min-height: 650px; }
  .hero { padding-top: 52px; padding-bottom: 26px; }
  .hero__badge { min-height: 32px; }
  .hero__title { margin-top: 20px; }
  .hero__copy { margin-top: 16px; line-height: 1.5; }
  .hero__action { margin-top: 17px; }
  body { overflow-y: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .hero__badge, .hero__char, .hero__copy, .hero__action, .hero__beam { opacity: 1; transform: none; filter: none; }
}
