:root {
  --bg: #070b16;
  --night: #0a1128;
  --ink: #f5f7ff;
  --muted: #8e9ab8;
  --blue: #5b8dff;
  --blue-deep: #3d6be0;
  --live: #ff3b4a;
  --cta-top: #9affc8;
  --cta-mid: #22c57a;
  --cta-bot: #0b6b45;
  --cta-ink: #04160e;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --font-d: "Big Shoulders Display", Impact, sans-serif;
  --font-b: "Figtree", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .face { animation: none !important; }
  .live-dot { animation: none !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-b);
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus { left: 12px; top: 12px; z-index: 20; background: var(--ink); color: var(--bg); padding: 8px 12px; }

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

.nav {
  position: sticky;
  top: 14px;
  z-index: 10;
  width: min(1120px, calc(100% - 28px));
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 10px 8px 16px;
  background: rgba(10, 17, 40, 0.62);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 247, 255, 0.08);
  border-radius: 999px;
}
.brand img { height: 28px; width: auto; }
.nav nav { display: flex; align-items: center; gap: 6px; }
.nav nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 8px 12px;
  color: var(--muted);
  border-radius: 999px;
}
.nav nav a:hover { color: var(--ink); }
.nav-cta {
  background: rgba(91, 141, 255, 0.14);
  color: var(--ink) !important;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 72px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100dvh - 88px);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
}

h1, h2, h3 { font-family: var(--font-d); letter-spacing: -0.03em; line-height: 0.92; }
h1 {
  margin: 0 0 22px;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  text-transform: uppercase;
}
h1 .or { color: var(--live); }
h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
}

.lede {
  margin: 0 0 32px;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.cta-dl {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: var(--cta-ink);
  background:
    linear-gradient(180deg, var(--cta-top) 0%, var(--cta-mid) 46%, var(--cta-bot) 100%);
  padding: 10px 10px 10px 26px;
  border-radius: 999px;
  box-shadow:
    0 18px 50px rgba(34, 197, 122, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.cta-dl:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 26px 60px rgba(34, 197, 122, 0.4), inset 0 1px 0 rgba(255,255,255,.6);
}
.cta-dl:active { transform: scale(0.98); }
.cta-label {
  display: flex;
  flex-direction: column;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.cta-kicker {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  opacity: 0.7;
  margin-bottom: 6px;
}
.cta-orb {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(4, 22, 14, 0.18);
  font-size: 22px;
}
.cta-dl-xl { padding: 12px 12px 12px 32px; }
.cta-dl-xl .cta-label { font-size: 1.55rem; }
.cta-dl-xl .cta-orb { width: 60px; height: 60px; }
.cta-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.hero-stage { position: relative; }
.phone {
  position: relative;
  padding: 14px;
  border-radius: 32px;
  background: linear-gradient(160deg, rgba(91,141,255,.18), rgba(255,59,74,.12));
  border: 1px solid rgba(245,247,255,.12);
  box-shadow: 0 40px 80px rgba(0,0,0,.45);
}
.phone-notch {
  width: 88px;
  height: 8px;
  margin: 4px auto 12px;
  border-radius: 999px;
  background: rgba(245,247,255,.12);
}
.phone-shot {
  width: 100%;
  border-radius: 18px;
  background: #0a1128;
}
.hero-caption {
  margin: 14px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.band {
  padding: 88px 0;
  background:
    radial-gradient(80% 80% at 10% 0%, rgba(91,141,255,.16), transparent 55%),
    var(--night);
}
.band-inner {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}
.chips li {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245,247,255,.12);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.split {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-text p { color: var(--muted); }
.split-text strong { color: var(--ink); }
.quiet { font-size: 15px; }

.unison {
  padding: 28px 24px 22px;
  border-radius: 28px;
  background: rgba(245,247,255,.03);
  border: 1px solid rgba(245,247,255,.08);
}
.unison-row {
  display: flex;
  justify-content: center;
}
.face {
  width: 52px;
  height: 52px;
  margin-left: -10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: #152044;
  border: 2px solid #0a1128;
  color: var(--ink);
  box-shadow: 0 0 0 0 rgba(91,141,255,0);
  transition: box-shadow 0.8s var(--ease), border-color 0.8s var(--ease);
}
.face:first-child { margin-left: 0; }
.unison.is-on .face {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(91,141,255,.35);
  transition-delay: calc(var(--i) * 70ms);
}
.unison-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--live);
  animation: pulse 1.4s var(--ease) infinite;
}
@keyframes pulse {
  50% { opacity: 0.35; transform: scale(0.85); }
}

.steps {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 96px;
}
.steps ol {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.steps li {
  padding: 24px 22px 26px;
  border-radius: 22px;
  background: rgba(245,247,255,.03);
  border: 1px solid rgba(245,247,255,.07);
}
.n {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-d);
  font-size: 28px;
  color: var(--blue);
}
.steps h3 {
  margin: 0 0 8px;
  font-size: 28px;
  text-transform: uppercase;
}
.steps p { margin: 0; color: var(--muted); font-size: 16px; }

.not-that { padding: 0 16px 96px; }
.not-card {
  width: min(800px, 100%);
  margin: 0 auto;
  padding: 40px 36px;
  border-radius: 28px;
  border: 1px solid rgba(255, 59, 74, 0.22);
  background:
    linear-gradient(135deg, rgba(255,59,74,.08), transparent 50%),
    var(--night);
}
.not-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  padding: 0;
  margin: 20px 0 18px;
  list-style: none;
  color: var(--muted);
}
.not-card ul li::before {
  content: "— ";
  color: var(--live);
}
.not-card p:last-child { margin: 0; color: var(--ink); }

.finale {
  text-align: center;
  padding: 48px 20px 110px;
}
.finale-mark { margin: 0 auto 22px; width: 72px; height: 72px; }
.finale p { color: var(--muted); margin: 0 0 28px; }

footer {
  padding: 24px 20px 40px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid rgba(245,247,255,.06);
}
footer p { margin: 4px 0; }
footer a { color: var(--blue); text-decoration: none; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (max-width: 860px) {
  .nav nav a:not(.nav-cta) { display: none; }
  .hero, .split, .steps ol { grid-template-columns: 1fr; }
  .hero { padding-top: 36px; min-height: auto; gap: 36px; }
  h1 { font-size: clamp(44px, 14vw, 68px); }
  .cta-dl { width: 100%; justify-content: space-between; }
  .steps li { padding: 20px; }
  .not-card { padding: 28px 22px; }
  .face { width: 42px; height: 42px; font-size: 10px; }
}
