:root {
  color-scheme: light;
  --bg: #fbf7ff;
  --ink: #171225;
  --muted: #5f5a6f;
  --pink: #ff6aa9;
  --rose: #ff9bd0;
  --violet: #7c5cff;
  --blue: #47b5ff;
  --aqua: #7ef0ff;
  --glass: rgba(255, 255, 255, 0.7);
  --card: rgba(255, 255, 255, 0.88);
  --border: rgba(124, 92, 255, 0.15);
  --shadow: 0 30px 80px rgba(40, 16, 82, 0.2);
  --radius: 24px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(160deg, #f7f2ff 0%, #f3f7ff 45%, #fff5fb 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

.bg-aurora {
  position: fixed;
  inset: -20% -10% auto -10%;
  height: 70vh;
  background: radial-gradient(circle at 20% 20%, rgba(255, 170, 220, 0.6), transparent 55%),
    radial-gradient(circle at 70% 30%, rgba(124, 92, 255, 0.45), transparent 60%),
    radial-gradient(circle at 40% 80%, rgba(71, 181, 255, 0.35), transparent 65%);
  filter: blur(20px);
  z-index: -2;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    180deg,
    rgba(251, 247, 255, 0.95) 0%,
    rgba(251, 247, 255, 0.75) 100%
  );
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.nav.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(255, 106, 169, 0.4);
}

.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 500;
  color: var(--muted);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: white;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(124, 92, 255, 0.25);
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero {
  min-height: 240vh;
  position: relative;
  padding: 110px 6vw;
}

.hero-stage {
  position: sticky;
  top: 10vh;
  height: 80vh;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero.is-revealed .hero-stage {
  grid-template-columns: 1.1fr 1fr;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 4vw, 4.6rem);
  margin-bottom: 18px;
}

.subhead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-content {
  grid-column: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  position: relative;
}

.hero-content.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero:not(.is-revealed) .hero-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -30%);
  width: min(520px, 90%);
  text-align: center;
  opacity: 0;
}

.eyebrow {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--violet);
  margin-bottom: 14px;
  font-size: 0.75rem;
}

.waitlist {
  display: grid;
  gap: 12px;
  max-width: 520px;
}

.waitlist-center {
  margin: 0 auto;
}

.tally-embed {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 8px;
  box-shadow: 0 14px 30px rgba(124, 92, 255, 0.12);
}

.tally-embed iframe {
  width: 100%;
  min-height: 640px;
  border: none;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  grid-column: 1 / -1;
}

.hero.is-revealed .hero-visual {
  grid-column: 2;
}

.hero:not(.is-revealed) .hero-visual {
  position: fixed;
  inset: 0;
  z-index: 0;
  height: 100vh;
  background: linear-gradient(160deg, #f5ecff 0%, #efe8ff 35%, #eaf4ff 70%, #fff3f9 100%);
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(circle at 30% 20%, rgba(255, 200, 230, 0.6), transparent 45%),
    radial-gradient(circle at 70% 30%, rgba(124, 92, 255, 0.35), transparent 55%),
    linear-gradient(160deg, #f5ecff 0%, #efe8ff 35%, #eaf4ff 70%, #fff3f9 100%);
  transition: opacity 0.6s ease;
}

.intro-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.intro-type {
  max-width: 900px;
  padding: 0 8vw;
  color: #111021;
  transition: opacity 0.4s ease;
}

.intro-type.is-hidden {
  opacity: 0;
}

.intro-text {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.05;
  min-height: 3.8em;
}

.typewriter-cursor {
  width: 2px;
  height: 32px;
  background: #7c5cff;
  margin: 12px auto 0;
  animation: blink 1s steps(2, start) infinite;
}

.intro-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 3;
}

.intro-logo img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(124, 92, 255, 0.25);
}

.intro-logo.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.intro-logo.is-zooming {
  animation: logo-zoom 2.2s ease-in forwards;
  opacity: 1;
  transition: none;
}

#netflix-container {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

#netflix-container.is-active {
  opacity: 1;
}

netflixintro {
  position: relative;
  width: 320px;
  height: 320px;
  overflow: hidden;
  transform-origin: 30% center;
}

netflixintro.is-zooming {
  animation: netflix-zoom-in 2.2s ease-in forwards;
}

netflixintro::before {
  content: "";
  position: absolute;
  display: block;
  background-color: rgba(10, 8, 20, 0.9);
  width: 150%;
  height: 30%;
  left: -25%;
  bottom: -27%;
  border-radius: 50%;
  z-index: 5;
  transform-origin: left center;
}

netflixintro[letter="N"] .helper-1 {
  width: 19.5%;
  height: 100%;
  left: 22.4%;
  top: 0;
  transform: rotate(180deg);
  animation: fading-lumieres-box 2s 0.6s forwards;
}

netflixintro[letter="N"] .helper-2 {
  width: 19.5%;
  height: 100%;
  left: 57.8%;
  top: 0;
  transform: rotate(180deg);
  overflow: hidden;
}

netflixintro[letter="N"] .helper-3 {
  width: 19%;
  height: 150%;
  left: 40.5%;
  top: -25%;
  transform: rotate(-19.5deg);
  box-shadow: 0 0 35px -12px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

netflixintro[letter="N"] .helper-4 {
  width: 19%;
  height: 150%;
  left: 40.5%;
  top: -25%;
  transform: rotate(19.5deg);
  overflow: hidden;
}

netflixintro .helper-1 .effect-brush,
netflixintro .helper-2 .effect-brush,
netflixintro .helper-3 .effect-brush,
netflixintro .helper-4 .effect-brush {
  animation: brush-moving 2.5s forwards;
}

netflixintro .helper-1 .effect-brush { animation-delay: 1.2s; }
netflixintro .helper-2 .effect-brush { animation-delay: 0.5s; }
netflixintro .helper-3 .effect-brush { animation-delay: 0.8s; }
netflixintro .helper-4 .effect-brush { animation-delay: 0.6s; }

netflixintro [class^="helper-"] {
  position: absolute;
}

netflixintro .effect-brush {
  position: absolute;
  width: 100%;
  height: 300%;
  top: 0;
  overflow: hidden;
}

netflixintro .effect-brush::before {
  display: block;
  content: "";
  position: absolute;
  background: linear-gradient(180deg, #ff6aa9 0%, #7c5cff 60%, #47b5ff 100%);
  width: 100%;
  height: 70%;
  box-shadow: 0 0 29px 24px rgba(255, 106, 169, 0.5);
}

netflixintro [class^="fur-"] {
  display: block;
  position: absolute;
  bottom: 10%;
  height: 30%;
}

netflixintro .fur-1 { left: 0%; width: 3.8%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 15%, rgba(0,0,0,0) 81%, rgba(0,0,0,0) 100%); }
netflixintro .fur-2 { left: 3.8%; width: 2.8%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 10%, rgba(0,0,0,0) 62%, rgba(0,0,0,0) 100%); }
netflixintro .fur-3 { left: 6.6%; width: 4.8%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 37%, rgba(0,0,0,0) 100%); }
netflixintro .fur-4 { left: 11.4%; width: 4%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 23%, rgba(0,0,0,0) 100%); }
netflixintro .fur-5 { left: 15.4%; width: 4%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 15%, rgba(0,0,0,0) 86%, rgba(0,0,0,0) 100%); }
netflixintro .fur-6 { left: 19.4%; width: 2.5%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 27%, rgba(0,0,0,0) 89%, rgba(0,0,0,0) 100%); }
netflixintro .fur-7 { left: 21.9%; width: 4%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 20%, rgba(0,0,0,0) 100%); }
netflixintro .fur-8 { left: 25.9%; width: 2%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 30%, rgba(0,0,0,0) 100%); }
netflixintro .fur-9 { left: 27.9%; width: 4%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 35%, rgba(0,0,0,0) 95%, rgba(0,0,0,0) 100%); }
netflixintro .fur-10 { left: 31.9%; width: 3.5%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 39%, rgba(0,0,0,0) 95%, rgba(0,0,0,0) 100%); }
netflixintro .fur-11 { left: 35.4%; width: 2%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 34%, rgba(0,0,0,0) 95%, rgba(0,0,0,0) 100%); }
netflixintro .fur-12 { left: 37.4%; width: 2.6%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 22%, rgba(0,0,0,0) 95%, rgba(0,0,0,0) 100%); }
netflixintro .fur-13 { left: 40%; width: 6%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 47%, rgba(0,0,0,0) 100%); }
netflixintro .fur-14 { left: 46%; width: 2%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 36%, rgba(0,0,0,0) 100%); }
netflixintro .fur-15 { left: 48%; width: 5.5%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 29%, rgba(0,0,0,0) 100%); }
netflixintro .fur-16 { left: 53.5%; width: 3%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 39%, rgba(0,0,0,0) 95%, rgba(0,0,0,0) 100%); }
netflixintro .fur-17 { left: 56.5%; width: 4.1%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 45%, rgba(0,0,0,0) 100%); }
netflixintro .fur-18 { left: 60.6%; width: 2.4%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 34%, rgba(0,0,0,0) 100%); }
netflixintro .fur-19 { left: 63%; width: 4%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 47%, rgba(0,0,0,0) 100%); }
netflixintro .fur-20 { left: 67%; width: 1.5%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 27%, rgba(0,0,0,0) 95%, rgba(0,0,0,0) 100%); }
netflixintro .fur-21 { left: 68.5%; width: 2.8%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 37%, rgba(0,0,0,0) 100%); }
netflixintro .fur-22 { left: 71.3%; width: 2.3%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 9%, rgba(0,0,0,0) 100%); }
netflixintro .fur-23 { left: 73.6%; width: 2.2%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 28%, rgba(0,0,0,0) 92%, rgba(0,0,0,0) 100%); }
netflixintro .fur-24 { left: 75.8%; width: 1%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 37%, rgba(0,0,0,0) 100%); }
netflixintro .fur-25 { left: 76.8%; width: 2.1%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 28%, rgba(0,0,0,0) 100%); }
netflixintro .fur-26 { left: 78.9%; width: 4.1%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 34%, rgba(0,0,0,0) 100%); }
netflixintro .fur-27 { left: 83%; width: 2.5%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 21%, rgba(0,0,0,0) 100%); }
netflixintro .fur-28 { left: 85.5%; width: 4.5%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 39%, rgba(0,0,0,0) 100%); }
netflixintro .fur-29 { left: 90%; width: 2.8%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 30%, rgba(0,0,0,0) 100%); }
netflixintro .fur-30 { left: 92.8%; width: 3.5%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 19%, rgba(0,0,0,0) 100%); }
netflixintro .fur-31 { left: 96.3%; width: 3.7%; background: linear-gradient(to bottom, #ff6aa9 0%, #ff6aa9 37%, rgba(0,0,0,0) 100%); }

netflixintro .effect-lumieres {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: showing-lumieres 2s 1.6s forwards;
}

netflixintro .effect-lumieres [class^="lamp-"] {
  position: absolute;
  display: block;
  height: 100%;
  box-shadow: 0 0 10px 0 rgba(255, 106, 169, 0.6);
  background: var(--color);
}

netflixintro .effect-lumieres [class^="lamp-"]::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color);
  box-shadow: 0 0 10px 0 rgba(124, 92, 255, 0.6);
}

netflixintro .lamp-1 { --color: #ff6aa9; left: 0.7%; width: 1%; }
netflixintro .lamp-2 { --color: #7c5cff; left: 2.2%; width: 1.4%; }
netflixintro .lamp-3 { --color: #47b5ff; left: 5.8%; width: 2.1%; }
netflixintro .lamp-4 { --color: #ff9bd0; left: 10.1%; width: 2%; }
netflixintro .lamp-5 { --color: #8c6bff; left: 12.9%; width: 1.4%; }
netflixintro .lamp-6 { --color: #ff6aa9; left: 15.3%; width: 2.8%; }
netflixintro .lamp-7 { --color: #7ef0ff; left: 21.2%; width: 2.5%; }
netflixintro .lamp-8 { --color: #ff7ab9; left: 25%; width: 2.5%; }
netflixintro .lamp-9 { --color: #7c5cff; left: 30.5%; width: 3%; }
netflixintro .lamp-10 { --color: #47b5ff; left: 36.3%; width: 3%; }
netflixintro .lamp-11 { --color: #ff6aa9; left: 41%; width: 2.2%; }
netflixintro .lamp-12 { --color: #7ef0ff; left: 44.2%; width: 2.6%; }
netflixintro .lamp-13 { --color: #ff9bd0; left: 51.7%; width: 0.5%; }
netflixintro .lamp-14 { --color: #8c6bff; left: 52.1%; width: 1.8%; }
netflixintro .lamp-15 { --color: #47b5ff; left: 53.8%; width: 2.3%; }
netflixintro .lamp-16 { --color: #7c5cff; left: 57.2%; width: 2%; }
netflixintro .lamp-17 { --color: #ff6aa9; left: 62.3%; width: 2.9%; }
netflixintro .lamp-18 { --color: #ff9bd0; left: 65.8%; width: 1.7%; }
netflixintro .lamp-19 { --color: #7c5cff; left: 72.8%; width: 0.8%; }
netflixintro .lamp-20 { --color: #47b5ff; left: 74.3%; width: 2%; }
netflixintro .lamp-21 { --color: #ff6aa9; left: 79.8%; width: 2%; }
netflixintro .lamp-22 { --color: #7ef0ff; left: 78.2%; width: 2%; }
netflixintro .lamp-23 { --color: #7c5cff; left: 78.5%; width: 2%; }
netflixintro .lamp-24 { --color: #ff9bd0; left: 85.3%; width: 1.1%; }
netflixintro .lamp-25 { --color: #8c6bff; left: 86.9%; width: 1.1%; }
netflixintro .lamp-26 { --color: #47b5ff; left: 88.8%; width: 2%; }
netflixintro .lamp-27 { --color: #ff6aa9; left: 92.4%; width: 2.4%; }
netflixintro .lamp-28 { --color: #7ef0ff; left: 96.2%; width: 2.1%; }

netflixintro .lamp-1,
netflixintro .lamp-3,
netflixintro .lamp-5,
netflixintro .lamp-7,
netflixintro .lamp-9,
netflixintro .lamp-11,
netflixintro .lamp-13,
netflixintro .lamp-15,
netflixintro .lamp-17,
netflixintro .lamp-19,
netflixintro .lamp-21,
netflixintro .lamp-23,
netflixintro .lamp-25,
netflixintro .lamp-27 {
  animation: lumieres-moving-left 5s forwards;
}

netflixintro .lamp-2,
netflixintro .lamp-4,
netflixintro .lamp-6,
netflixintro .lamp-8,
netflixintro .lamp-10,
netflixintro .lamp-12,
netflixintro .lamp-14,
netflixintro .lamp-16,
netflixintro .lamp-18,
netflixintro .lamp-20,
netflixintro .lamp-22,
netflixintro .lamp-24,
netflixintro .lamp-26,
netflixintro .lamp-28 {
  animation: lumieres-moving-right 5s forwards;
}

@keyframes brush-moving {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

@keyframes fading-lumieres-box {
  0% { background-color: rgba(255, 106, 169, 0.5); }
  100% { background-color: rgba(255, 106, 169, 0); }
}

@keyframes showing-lumieres {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes lumieres-moving-right {
  0% { transform: translate(0); }
  40% { transform: translate(-10px) scaleX(1); }
  50% { transform: translate(-60px); }
  100% { transform: translate(-120px) scaleX(3); }
}

@keyframes lumieres-moving-left {
  0% { transform: translate(0); }
  40% { transform: translate(10px) scaleX(1); }
  50% { transform: translate(60px); }
  100% { transform: translate(120px) scaleX(3); }
}

@keyframes netflix-zoom-in {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(15); opacity: 1; }
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.intro-burst {
  position: absolute;
  inset: -30%;
  opacity: 0;
  transform: scale(0.6);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 140, 210, 0.85), rgba(124, 92, 255, 0.6) 35%, rgba(71, 181, 255, 0.4) 55%, transparent 70%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 8px, rgba(255, 255, 255, 0.18) 8px 12px, rgba(255, 255, 255, 0.02) 12px 20px);
  filter: blur(8px) saturate(1.2);
  z-index: 1;
}

.intro-burst.is-zooming {
  animation: burst-zoom 2.2s ease-in forwards;
  opacity: 1;
}

@keyframes burst-zoom {
  0% {
    transform: scale(0.6);
    opacity: 0.1;
  }
  45% {
    transform: scale(2.8);
    opacity: 0.45;
  }
  55% {
    transform: scale(4.6);
    opacity: 1;
    filter: blur(10px) saturate(1.4);
  }
  100% {
    transform: scale(16);
    opacity: 1;
  }
}

@keyframes logo-zoom {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: blur(0);
  }
  50% {
    transform: translate(-50%, -50%) scale(5.5);
    opacity: 1;
  }
  60% {
    transform: translate(-50%, -50%) scale(5.5);
    opacity: 0.2;
    filter: blur(4px);
  }
  100% {
    transform: translate(-50%, -50%) scale(5.5);
    opacity: 0;
    filter: blur(6px);
  }
}

.phone-reveal {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero.is-revealed .phone-reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.phone-frame {
  width: min(320px, 70%);
  height: min(620px, 85%);
  border-radius: 36px;
  background: #ffffff;
  box-shadow: none;
  border: 1px solid rgba(120, 108, 160, 0.25);
  padding: 16px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: #0f0b1a;
  overflow: hidden;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  padding: 110px 6vw;
}

.section.how {
  padding-top: 220px;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 14px;
}

.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

.steps,
.app-grid,
.team-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step,
.app-card,
.team-card,
.mission-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(40, 16, 82, 0.08);
}

.app-mock {
  height: 240px;
  border-radius: 18px;
  background: #0f0b1a;
  overflow: hidden;
  margin-bottom: 18px;
}

.app-mock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.app-mock--notif img {
  object-fit: contain;
  object-position: center;
}

.app-mock--notif {
  background: #f2ebff;
}

.app-mock--interventions img {
  object-position: center 70%;
}
.mission-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  background: linear-gradient(135deg, rgba(255, 106, 169, 0.2), rgba(71, 181, 255, 0.2));
}

.team-card .avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 106, 169, 0.7), rgba(124, 92, 255, 0.7));
  margin-bottom: 16px;
}

.team-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4a3a78;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.team-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.team-link:hover {
  color: #2f2456;
}

.cta {
  padding: 110px 6vw;
  background: radial-gradient(circle at 20% 20%, rgba(255, 155, 208, 0.35), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(71, 181, 255, 0.35), transparent 55%);
  position: relative;
  z-index: 5;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--card);
  padding: 40px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer {
  padding: 40px 6vw 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    gap: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stage {
    grid-template-columns: 1fr;
    height: auto;
    position: relative;
  }

  .hero.is-revealed .hero-stage {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    position: fixed;
    inset: 0;
    height: 100vh;
    grid-column: 1 / -1;
    z-index: 0;
  }

  .phone-reveal {
    display: none;
  }

  .footer {
    flex-direction: column;
    gap: 12px;
  }

  .hero {
    min-height: auto;
    padding: 90px 4vw;
  }

  .hero:not(.is-revealed) .hero-content {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    text-align: center;
    opacity: 0;
    margin-bottom: 32px;
    pointer-events: none;
  }

  .hero-content {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: grid;
    justify-items: center;
    position: relative;
    z-index: 1;
  }

  .hero-content h1,
  .hero-content .subhead {
    max-width: 100%;
    text-align: center;
  }

  .hero-content .waitlist {
    width: 100%;
    margin: 0 auto;
  }

  .phone-reveal {
    position: static;
    transform: none;
    opacity: 1;
  }

  .phone-frame {
    width: min(300px, 86vw);
    height: auto;
    aspect-ratio: 9 / 19.5;
    margin: 0 auto;
  }

  .waitlist {
    max-width: 100%;
  }

  .hero .tally-embed iframe {
    min-height: 900px;
  }

  .cta .tally-embed iframe {
    min-height: 720px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brain-shell,
  .brain-core,
  .signal-ribbon,
  .data-nodes,
  .bloom,
  .forecast-map {
    transition: none;
    transform: none !important;
  }
}
