/* Calmtopia Kids — scene-based marketing site
 * Art direction: bold hierarchy, staged objects, drift / arrive / settle / pulse
 */

:root {
  --bg-primary: #0b1026;
  --bg-gradient-start: #1a1f4d;
  --bg-gradient-end: #2e3a8c;
  --calm-blue: #6e8bff;
  --soft-purple: #a78bfa;
  --warm-glow: #ffd580;
  --success-yellow: #ffe066;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --glass: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.12);
  --blur-strong: blur(20px);
  --soft-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  --hover-lift: translateY(-4px) scale(1.01);
  --ink: #0c1028;
  --ink-soft: #161c44;
  --dawn: #7b8cff;
  --dawn-deep: #4a56c4;
  --twilight: #2a3270;
  --night: #0a0e24;
  --night-mid: #12183a;
  --glow: #c9d4ff;
  --peach: #ffc58a;
  --mint: #8ee6cb;
  --rose: #f9a7d9;
  --cloud: #eef2ff;
  --text: rgba(255, 255, 255, 0.92);
  --text-soft: rgba(255, 255, 255, 0.78);
  --text-dim: rgba(255, 255, 255, 0.58);
  /* One stack like the light React page (Tailwind font-sans ≈ Inter) */
  --font-display: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1180px;
  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-settle: cubic-bezier(0.34, 1.3, 0.64, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .site-nav__cta--pulse,
  .btn--shimmer {
    animation: none !important;
    background: var(--dawn-deep) !important;
    background-size: auto !important;
  }
  .scene--journey.is-visible .journey-quad__path {
    stroke-dashoffset: 0 !important;
    transition: none !important;
    animation: none !important;
  }
  .scene--entry.scene--light .entry__copy .h1 span {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  color: var(--ink);
  background: #f8fafc;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--peach);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 12px 16px;
  background: var(--peach);
  color: var(--ink);
  font-weight: 700;
  z-index: 9999;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ——— Nav: tone follows scroll (light pages vs night stack) ——— */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 40px);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.94) 0%, rgba(248, 250, 252, 0.72) 82%, transparent 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    background 0.45s var(--ease-out-soft),
    color 0.35s ease;
}

body[data-nav-tone="dark"] .site-nav {
  background: linear-gradient(180deg, rgba(10, 14, 36, 0.92) 0%, rgba(10, 14, 36, 0.65) 85%, transparent 100%);
}

.site-nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 0.35s ease;
}

body[data-nav-tone="dark"] .site-nav__logo {
  color: #fff;
}

.site-nav__links {
  display: none;
  align-items: center;
  gap: clamp(8px, 2vw, 22px);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(12, 16, 40, 0.62);
  transition: color 0.35s ease;
}

body[data-nav-tone="dark"] .site-nav__links {
  color: var(--text-soft);
}

@media (min-width: 900px) {
  .site-nav__links {
    display: flex;
  }
}

.site-nav__links a {
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
}
.site-nav__links a:hover,
.site-nav__links a:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--dawn);
}

body[data-nav-tone="dark"] .site-nav__links a:hover,
body[data-nav-tone="dark"] .site-nav__links a:focus-visible {
  color: #fff;
  border-bottom-color: var(--peach);
}

.site-nav__dropdown {
  position: relative;
}
.site-nav__dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 6px 4px;
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: inherit;
  cursor: pointer;
  border-radius: 4px;
}
.site-nav__dropdown-btn:hover,
.site-nav__dropdown-btn:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--dawn);
}
body[data-nav-tone="dark"] .site-nav__dropdown-btn {
  color: var(--text-soft);
}
body[data-nav-tone="dark"] .site-nav__dropdown-btn:hover,
body[data-nav-tone="dark"] .site-nav__dropdown-btn:focus-visible {
  color: #fff;
  border-bottom-color: var(--peach);
}
.site-nav__dropdown.is-open .site-nav__dropdown-btn {
  color: var(--ink);
  border-bottom-color: var(--dawn);
}
body[data-nav-tone="dark"] .site-nav__dropdown.is-open .site-nav__dropdown-btn {
  color: #fff;
  border-bottom-color: var(--peach);
}
.site-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(12, 16, 40, 0.1);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(12, 16, 40, 0.12);
  z-index: 120;
}
body[data-nav-tone="dark"] .site-nav__dropdown-menu {
  background: rgba(22, 26, 58, 0.98);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.site-nav__dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: none;
}
.site-nav__dropdown-menu a:hover,
.site-nav__dropdown-menu a:focus-visible {
  background: rgba(99, 102, 241, 0.1);
  color: var(--dawn-deep);
  border-bottom: none;
}
body[data-nav-tone="dark"] .site-nav__dropdown-menu a {
  color: #e2e8f0;
}
body[data-nav-tone="dark"] .site-nav__dropdown-menu a:hover,
body[data-nav-tone="dark"] .site-nav__dropdown-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.site-nav__tag {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.2);
  color: #047857;
}
.site-nav__tag--muted {
  background: rgba(12, 16, 40, 0.06);
  color: rgba(12, 16, 40, 0.5);
}
body[data-nav-tone="dark"] .site-nav__tag--muted {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(226, 232, 240, 0.65);
}

.mobile-drawer__label {
  display: block;
  margin-top: 4px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(12, 16, 40, 0.45);
}
.mobile-drawer__sub {
  padding-left: 14px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
}

.site-nav__cta {
  font-size: 0.82rem;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--peach);
  color: var(--ink);
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-settle), box-shadow 0.25s;
}

.site-nav__cta--pulse,
.btn--shimmer {
  background: linear-gradient(120deg, #6366f1, #f59e0b);
  background-size: 180% 180%;
  animation: ctaShimmer 10s ease-in-out infinite;
  color: #fff;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.25);
}

.scene--light .btn.btn--shimmer {
  background: linear-gradient(120deg, #6366f1, #f59e0b);
  background-size: 180% 180%;
  color: #fff;
  box-shadow: 0 14px 36px rgba(99, 102, 241, 0.22);
}

.site-nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(255, 197, 138, 0.35);
}

.site-nav__cta--pulse:hover {
  box-shadow: 0 12px 34px rgba(99, 102, 241, 0.35);
}

@keyframes ctaShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* ——— Scene shell ——— */
.scene {
  position: relative;
  min-height: min(100vh, 920px);
  padding: clamp(88px, 12vh, 120px) clamp(18px, 5vw, 48px) clamp(64px, 10vh, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scene--sparse {
  min-height: auto;
  padding-top: clamp(72px, 10vh, 100px);
  padding-bottom: clamp(72px, 10vh, 100px);
}

.scene__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.scene__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

/* ——— Typography ——— */
.h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0 0 0.35em;
  color: #fff;
}

.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 0.4em;
  color: #fff;
}

.lead {
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 38ch;
  margin: 0 0 1.5rem;
}

.caption {
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 1rem;
}

/* ——— Buttons ——— */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.28s var(--ease-settle), box-shadow 0.28s;
}

.btn--primary {
  background: var(--peach);
  color: var(--ink);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

/* ——— Phone / screenshot artifact (consistent ~device aspect) ——— */
.phone {
  position: relative;
  box-sizing: border-box;
  border-radius: 36px;
  padding: 12px;
  background: linear-gradient(145deg, #2a3158 0%, #12162e 40%, #0a0c1c 100%);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
  /* ~9:19.5 portrait — matches common phone screenshots */
  aspect-ratio: 9 / 19.5;
  width: min(300px, 44vw);
  max-width: min(300px, 92vw);
  max-height: min(78vh, 680px);
  height: auto;
  margin-inline: auto;
}

.phone__glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.14) 0%, transparent 42%);
  pointer-events: none;
  z-index: 2;
}

.phone__screen {
  position: absolute;
  inset: 10px;
  border-radius: 28px;
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

/*
 * App screenshots as <img> inside .phone--shot: bezel height follows the capture’s
 * aspect ratio (no fixed 9:19.5 shell). Width caps how large it displays; img scales down
 * if taller than max-height.
 */
.phone.phone--shot {
  aspect-ratio: unset;
  max-height: none;
  height: auto;
  width: min(300px, 44vw);
  max-width: min(300px, 92vw);
  display: block;
  margin-inline: auto;
}

.phone.phone--shot .phone__screen--img {
  position: relative;
  inset: auto;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  line-height: 0;
  background-color: #0c1024;
}

.phone.phone--shot .phone__screen--img img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(82vh, 960px);
  height: auto;
  margin: 0 auto;
  vertical-align: top;
}

.phone.phone--shot .phone__screen--img.phone__screen--closing-splash {
  background-color: #0b061c;
}

.phone.phone--small.phone--shot {
  width: min(210px, 52vw);
  max-width: min(210px, 90vw);
}

.entry__phone-main .phone.phone--shot {
  width: 100%;
  max-width: 100%;
}

.phone--realapp.phone--shot {
  width: min(280px, 84vw);
  max-width: min(280px, 94vw);
}

.phone--realapp.realapp-card--moment.phone--shot {
  width: min(268px, 86vw);
  max-width: min(268px, 94vw);
}

/* Let intrinsic-height shot phones ignore the generic realapp max-height cap */
.phone--realapp.phone--shot,
.phone--realapp.realapp-card--moment.phone--shot {
  max-height: none;
}

.music-hero__device.phone.phone--shot {
  width: min(300px, 88vw);
  max-width: min(300px, 94vw);
  max-height: none;
}

.world-pair__stage .phone--hero.phone--shot {
  max-height: none;
}

.night-cluster .phone.phone--shot {
  width: min(240px, 82vw);
  max-width: min(240px, 94vw);
  max-height: none;
}

.music-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.music-hero__device.phone {
  width: min(300px, 88vw);
}

.p-growth-sheet img.is-app-shot {
  display: block;
  width: 100%;
  max-height: min(640px, 78vh);
  height: auto;
  object-fit: contain;
  object-position: center center;
  clip-path: none;
  margin: 0 auto;
}

.scene-different__device {
  margin: 2rem auto 0;
  max-width: min(300px, 88vw);
}

/* UI overlays on top of real app art backgrounds */
.screen-ui {
  position: absolute;
  inset: 0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 7px;
  background: linear-gradient(180deg, rgba(10, 14, 36, 0.12) 0%, rgba(10, 14, 36, 0.2) 100%);
}
.screen-ui__title {
  margin: 0;
  color: #fff;
  font-size: clamp(9px, 1.2vw, 12px);
  line-height: 1.2;
  font-weight: 900;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.screen-ui__stack {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.screen-ui__stack span {
  border-radius: 8px;
  padding: 4px 6px;
  background: rgba(121, 148, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-size: clamp(7px, 1vw, 10px);
  font-weight: 800;
  line-height: 1.2;
}
.screen-ui__stack .screen-ui__primary {
  background: rgba(244, 200, 92, 0.95);
  color: #24346e;
}
.screen-ui__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.screen-ui__tiles span {
  border-radius: 8px;
  min-height: 28px;
  padding: 4px;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(121, 148, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-size: clamp(7px, 0.95vw, 10px);
  font-weight: 800;
  line-height: 1.1;
}
.screen-ui--hold,
.screen-ui--body {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.screen-ui__hold-dot {
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  margin-top: 4px;
  background: radial-gradient(circle, rgba(244, 200, 92, 0.95) 0%, rgba(121, 148, 255, 0.4) 70%);
  border: 2px solid rgba(255, 255, 255, 0.65);
}
.screen-ui__body-pins {
  margin-top: 6px;
  width: 70%;
  height: 45%;
  position: relative;
}
.screen-ui__body-pins i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f4c85c;
  border: 1px solid rgba(255, 255, 255, 0.75);
}
.screen-ui__body-pins i:nth-child(1) { left: 12%; top: 45%; }
.screen-ui__body-pins i:nth-child(2) { right: 15%; top: 37%; }
.screen-ui__body-pins i:nth-child(3) { left: 50%; top: 68%; transform: translateX(-50%); }
.screen-ui--parent .screen-ui__bar {
  margin-top: 6px;
  width: 100%;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
}
.screen-ui--parent .screen-ui__bar b {
  display: block;
  width: 64%;
  height: 100%;
  background: linear-gradient(90deg, #8ee6cb, #7b8cff);
}
.screen-ui__tags {
  margin-top: 8px;
  display: flex;
  gap: 5px;
}
.screen-ui__tags span {
  border-radius: 7px;
  padding: 3px 5px;
  font-size: clamp(7px, 0.9vw, 9px);
  font-weight: 800;
  color: #fff;
  background: rgba(126, 156, 233, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.45);
}


.phone--tilt-l {
  transform: rotate(-2.5deg);
}
.phone--tilt-r {
  transform: rotate(3deg);
}

.phone--small {
  width: min(210px, 52vw);
  max-width: min(210px, 90vw);
  max-height: min(58vh, 480px);
  border-radius: 28px;
  padding: 9px;
  aspect-ratio: 9 / 19.5;
}
.phone--small .phone__screen {
  inset: 8px;
  border-radius: 22px;
}

/* ——— Motion utilities ——— */
.drift {
  animation: driftY 9s ease-in-out infinite alternate;
}
.drift-slow {
  animation: driftY 14s ease-in-out infinite alternate;
}
.twinkle {
  animation: twinkle 4s ease-in-out infinite;
}
.pulse-glow {
  animation: pulseGlow 5s ease-in-out infinite;
}

@keyframes driftY {
  0% {
    transform: translateY(0) translateX(0);
  }
  100% {
    transform: translateY(-14px) translateX(6px);
  }
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}
@keyframes pulseGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 12px rgba(255, 197, 138, 0.35));
  }
  50% {
    filter: drop-shadow(0 0 28px rgba(255, 197, 138, 0.55));
  }
}

/* Softer float for small cards (constellation) */
.drift-soft {
  animation: driftSoft 12s ease-in-out infinite alternate;
}
.drift-soft--delayed {
  animation-delay: -3s;
}
.drift-soft--slow {
  animation-duration: 16s;
}
/* Margin-based float so it stacks with .arrive (transform) on the same node */
@keyframes driftSoft {
  0% {
    margin-top: 0;
    margin-left: 0;
  }
  100% {
    margin-top: -7px;
    margin-left: 5px;
  }
}

/* Arrive / settle (scroll) */
.arrive {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  transition:
    opacity 0.9s var(--ease-out-soft),
    transform 1s var(--ease-settle);
}
.scene.is-visible .arrive {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.arrive--delay-1 {
  transition-delay: 0.12s;
}
.arrive--delay-2 {
  transition-delay: 0.24s;
}
.arrive--delay-3 {
  transition-delay: 0.36s;
}
.arrive--delay-4 {
  transition-delay: 0.48s;
}

/* ——— Light scenes (full page stays in the airy palette) ——— */
.scene--light {
  color: var(--ink);
}

.scene--light .h1,
.scene--light .h2 {
  color: var(--ink);
}

.scene--light .lead {
  color: rgba(12, 16, 40, 0.72);
}

.scene--light .caption {
  color: rgba(12, 16, 40, 0.45);
}

.scene--light .btn--ghost {
  background: rgba(12, 16, 40, 0.04);
  color: var(--ink);
  border-color: rgba(12, 16, 40, 0.14);
}

.scene--light .btn--primary {
  background: var(--dawn-deep);
  color: #fff;
}

.scene--light .btn--primary:hover {
  box-shadow: 0 12px 36px rgba(74, 86, 196, 0.35);
}

.scene--light .btn.btn--shimmer {
  color: #fff;
}

/* ——— Scene 1: Entry ——— */
.scene--entry.scene--light {
  background: radial-gradient(ellipse 120% 80% at 70% 18%, rgba(123, 140, 255, 0.38) 0%, transparent 58%),
    radial-gradient(ellipse 80% 60% at 12% 82%, rgba(249, 167, 217, 0.28) 0%, transparent 52%), #f8fafc;
}

.scene--entry.scene--light .entry__copy .h1 span {
  color: var(--ink);
}

.scene--entry.scene--light .entry__copy .h1 span:last-child {
  color: var(--dawn-deep);
}

.stars--soft {
  opacity: 0.18;
  filter: saturate(0.8);
}

.scene--entry .scene__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}
@media (min-width: 960px) {
  .scene--entry .scene__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  }
}

.entry__copy .h1 span {
  display: block;
  color: var(--cloud);
}
.entry__copy .h1 span:last-child {
  color: #fff;
}

/* Headline lines pop in one after another (light hero) */
.scene--entry.scene--light .entry__copy .h1 span {
  opacity: 0;
  transform: translateY(28px);
}
.scene--entry.scene--light.is-visible .entry__copy .h1 span {
  animation: h1LinePop 0.85s var(--ease-settle) forwards;
}
.scene--entry.scene--light.is-visible .entry__copy .h1 span:nth-child(1) {
  animation-delay: 0.18s;
}
.scene--entry.scene--light.is-visible .entry__copy .h1 span:nth-child(2) {
  animation-delay: 0.36s;
}
@keyframes h1LinePop {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.entry__stage {
  position: relative;
  min-height: min(68vh, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.entry__orb {
  position: absolute;
  width: min(180px, 28vw);
  right: 4%;
  top: 8%;
  z-index: 0;
  opacity: 0.95;
  filter: drop-shadow(0 20px 40px rgba(123, 140, 255, 0.4));
}

.entry__phones {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.entry__phone-main {
  position: relative;
  z-index: 2;
  width: min(340px, 52vw);
}
.entry__phone-main .phone {
  width: 100%;
  max-width: 100%;
  max-height: min(76vh, 680px);
}

.entry__float-shot {
  position: absolute;
  z-index: 3;
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.35));
}
.entry__float-shot--tr {
  top: -4%;
  right: -6%;
}
.entry__float-shot--bl {
  bottom: 6%;
  right: 10%;
}

.stars {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(2px 2px at 10% 20%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 80% 30%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1px 1px at 40% 70%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(2px 2px at 65% 85%, rgba(255, 255, 255, 0.4), transparent);
  opacity: 0.7;
  animation: driftY 16s ease-in-out infinite alternate;
}

/* ——— Scene 2: Constellation ——— */
.scene--carrying.scene--light {
  background: linear-gradient(180deg, #fdf4ff 0%, #f0fdf4 55%, #f8fafc 100%);
}

.constellation {
  position: relative;
  min-height: 620px;
  padding-top: 24px;
}
.constellation__anchor {
  position: relative;
  z-index: 2;
  max-width: 40ch;
  margin: 0 auto 2.25rem;
  text-align: center;
}
.cluster {
  position: absolute;
  z-index: 1;
  max-width: 200px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  line-height: 1.35;
}

.scene--light .cluster {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(12, 16, 40, 0.08);
  box-shadow: 0 16px 40px rgba(12, 16, 40, 0.06);
  color: rgba(12, 16, 40, 0.78);
}

.cluster strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: #fff;
}

.scene--light .cluster strong {
  color: var(--ink);
}
.cluster--1 {
  top: 22%;
  right: 6%;
}
.cluster--2 {
  top: 30%;
  left: 2%;
}
.cluster--3 {
  top: 48%;
  right: 12%;
}
.cluster--4 {
  top: 60%;
  left: 8%;
}
.cluster--5 {
  top: 76%;
  right: 4%;
}
.cluster--6 {
  top: 82%;
  left: 30%;
}

@media (max-width: 700px) {
  .cluster {
    position: relative;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    max-width: none;
    margin-bottom: 10px;
  }
  .constellation {
    min-height: 0;
    padding-top: 0;
  }
  .constellation__anchor {
    margin: 0 0 1.25rem;
    text-align: left;
  }
}

/* ——— Scene 3: Journey path ——— */
.scene--journey.scene--light {
  background: radial-gradient(ellipse 90% 70% at 50% 100%, rgba(123, 140, 255, 0.2) 0%, #f8fafc 55%);
  overflow: hidden;
}

/* ——— Scene 3.5: Real app mockups ——— */
.scene--realapp.scene--light {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 45%, #f8fafc 100%);
}

.scene--pathways.scene--light {
  background: linear-gradient(180deg, #eef2ff 0%, #f8fafc 55%, #fdf4ff 100%);
}

.pathway-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 920px) {
  .pathway-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.pathway-grid--stages {
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .pathway-grid--stages {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1120px) {
  .pathway-grid--stages {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.pathway-card--foundation {
  border-top: 4px solid #6ee7b7;
}

.pathway-card {
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(12, 16, 40, 0.08);
  box-shadow: 0 18px 46px rgba(12, 16, 40, 0.09);
  backdrop-filter: var(--blur-strong);
  -webkit-backdrop-filter: var(--blur-strong);
  display: grid;
  gap: 12px;
}

.pathway-card:hover {
  transform: var(--hover-lift);
  box-shadow: 0 22px 58px rgba(74, 86, 196, 0.17);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.realapp-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}
.realapp-head .lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 52ch;
}
.realapp-grid {
  display: grid;
  gap: 22px;
}
@media (min-width: 940px) {
  .realapp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
}
.realapp-grid--moments {
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .realapp-grid--moments {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1220px) {
  .realapp-grid--moments {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.realapp-card {
  border-radius: 28px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 16, 40, 0.08);
  box-shadow: 0 22px 55px rgba(12, 16, 40, 0.08);
  display: grid;
  gap: 16px;
}
.realapp-copy .world-title {
  margin-bottom: 6px;
}
.realapp-copy .world-desc {
  max-width: 40ch;
}
/* #ages-4-6 moment row — homepage cards */
.phone--realapp {
  width: min(280px, 84vw);
  max-width: min(280px, 94vw);
  max-height: min(72vh, 620px);
  margin: 4px auto 0;
}
.phone--realapp.realapp-card--moment {
  width: min(268px, 86vw);
  max-width: min(268px, 94vw);
  max-height: min(70vh, 620px);
}
.journey-layout {
  display: grid;
  gap: 40px;
}

.flow-inline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 440px;
  margin-top: 10px;
}

.flow-inline span {
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--dawn-deep);
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

@media (min-width: 740px) {
  .flow-inline {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .journey-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }
}

/* Emotional journey + trust visuals (static marketing) */
.emotion-flow-chips {
  margin-left: auto;
  margin-right: auto;
  margin-top: 8px;
}
@media (min-width: 740px) {
  .emotion-flow-chips {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 640px;
  }
}

.emotion-card-grid {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}
@media (min-width: 640px) {
  .emotion-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .emotion-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.emotion-card {
  border-radius: 22px;
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 16, 40, 0.08);
  box-shadow: 0 18px 45px rgba(12, 16, 40, 0.06);
}
.emotion-card .world-title {
  margin: 0 0 8px;
  font-size: 1.12rem;
}
.emotion-card .world-desc {
  margin: 0 0 14px;
  max-width: none;
  font-size: 0.95rem;
}
.emotion-card__glyph {
  font-size: 2rem;
  line-height: 1;
  margin: 0 0 12px;
}
.emotion-card__art {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 108px;
  margin: 0 0 10px;
}
.emotion-card__art img {
  width: min(120px, 34vw);
  height: auto;
  max-height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(99, 102, 241, 0.18));
}
.emotion-card__meta {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(12, 16, 40, 0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.emotion-card__badge {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(99, 102, 241, 0.12);
  color: var(--dawn-deep);
}

.visual-split {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}
@media (min-width: 900px) {
  .visual-split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.visual-panel {
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 16, 40, 0.08);
  box-shadow: 0 22px 55px rgba(12, 16, 40, 0.08);
}
.visual-panel .world-desc {
  max-width: none;
}
.compare-table-wrap {
  overflow-x: auto;
  margin-top: 16px;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.compare-table th,
.compare-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(12, 16, 40, 0.08);
  vertical-align: top;
}
.compare-table th {
  font-weight: 800;
  color: var(--dawn-deep);
  background: rgba(99, 102, 241, 0.06);
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table td:first-child {
  color: rgba(12, 16, 40, 0.55);
  font-weight: 600;
}
.compare-table td:last-child {
  color: rgba(12, 16, 40, 0.85);
  font-weight: 600;
}

.character-map {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.character-map li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(12, 16, 40, 0.06);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}
.character-map__emoji {
  font-size: 1.25rem;
  line-height: 1;
}
.character-map__thumb-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.character-map__thumb {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.2));
}
.character-map__code {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dawn-deep);
  background: rgba(99, 102, 241, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
}

.journey-path-wrap {
  position: relative;
  padding: 20px 0 40px;
}

.journey-quad {
  position: relative;
  margin-bottom: 28px;
}

.journey-quad__svg {
  display: none;
  position: absolute;
  left: 3%;
  right: 3%;
  top: 14%;
  bottom: 18%;
  width: auto;
  height: auto;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

@media (min-width: 768px) {
  .journey-quad__svg {
    display: block;
  }
}

.journey-quad__path {
  fill: none;
  stroke: url(#pathGradQuad);
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

/* Soft underlay: full trail reveals once */
.journey-quad__path--glow {
  stroke-width: 1.35;
  opacity: 0.35;
  stroke: rgba(129, 140, 248, 0.55);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 2.1s var(--ease-out-soft);
}

.scene--journey.is-visible .journey-quad__path--glow {
  stroke-dashoffset: 0;
}

/* Dashed “walking” trail through all four cards */
.journey-quad__path--dash {
  stroke-width: 0.95;
  stroke: url(#pathGradQuad);
  stroke-dasharray: 0.07 0.055;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 2.4s var(--ease-out-soft);
  filter: drop-shadow(0 0 6px rgba(99, 102, 241, 0.35));
}

.scene--journey.is-visible .journey-quad__path--dash {
  stroke-dashoffset: 0;
  animation: journeyDashMarch 12s linear 2.45s infinite;
}

@keyframes journeyDashMarch {
  to {
    stroke-dashoffset: -1;
  }
}

.journey-stops {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.journey-stops--quad {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .journey-stops--quad {
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px;
  }
}

.stop {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.scene--light .stop {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 16, 40, 0.08);
  box-shadow: 0 18px 50px rgba(12, 16, 40, 0.06);
}

.stop--card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 18px 20px;
  border-radius: 24px;
}

.stop--card .stop__num {
  flex-shrink: 0;
}

.stop--card .stop__kw {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
}

.stop--card .stop__micro {
  margin-top: 0;
  max-width: 42ch;
  grid-column: unset;
  width: 100%;
}

.stop--card .stop__thumb {
  width: 100%;
  margin-top: 4px;
  align-self: stretch;
  max-width: none;
}

.stop--card .stop__thumb .phone {
  width: min(100%, 200px);
  max-height: 280px;
  margin: 0 auto;
  border-radius: 22px;
  padding: 8px;
}

.stop--card .stop__thumb .phone__screen {
  inset: 7px;
  border-radius: 18px;
}

@media (min-width: 768px) {
  .stop--card .stop__thumb .phone {
    width: min(100%, 220px);
    max-height: 300px;
  }
}

.stop--wide {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 20px;
}

.stop--wide .stop__micro {
  grid-column: 2;
}

.stop--wide .stop__thumb {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 280px;
  margin: 8px auto 0;
}

.stop--wide .stop__thumb .phone {
  width: min(280px, 100%);
  max-height: 320px;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .stop--wide {
    grid-template-columns: auto 1fr minmax(220px, 300px);
    grid-template-rows: auto auto;
    column-gap: 18px;
    row-gap: 6px;
    align-items: start;
  }
  .stop--wide .stop__num {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }
  .stop--wide .stop__kw {
    grid-column: 2;
    grid-row: 1;
  }
  .stop--wide .stop__micro {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
  }
  .stop--wide .stop__thumb {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    margin: 0;
    width: 100%;
    max-width: none;
  }
}

.stop__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 0.85rem;
  background: rgba(255, 197, 138, 0.2);
  color: var(--peach);
}

.scene--light .stop__num {
  background: rgba(99, 102, 241, 0.12);
  color: var(--dawn-deep);
}

.stop__kw {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
}

.scene--light .stop__kw {
  color: var(--ink);
}

.stop__micro {
  font-size: 0.78rem;
  color: var(--text-dim);
  grid-column: 2;
  margin-top: -6px;
}

.scene--light .stop__micro {
  color: rgba(12, 16, 40, 0.55);
}

.stop__thumb {
  grid-column: 2;
  margin-top: 8px;
  width: 120px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.scene--light .stop__thumb {
  box-shadow: 0 16px 40px rgba(12, 16, 40, 0.12);
}

.stop__thumb .phone {
  width: 120px;
  max-height: 220px;
  border-radius: 20px;
  padding: 6px;
}
.stop__thumb .phone__screen {
  inset: 5px;
  border-radius: 16px;
}

/* ——— Scene 4: Worlds ——— */
.scene--worlds.scene--light {
  background: linear-gradient(180deg, #f8fafc 0%, #fdf4ff 45%, #f0fdf4 100%);
}

.world-pair {
  display: grid;
  gap: clamp(28px, 5vw, 48px);
  margin-bottom: clamp(48px, 8vh, 88px);
  align-items: center;
}
@media (min-width: 860px) {
  .world-pair {
    grid-template-columns: 1fr 1fr;
  }
  .world-pair--flip .world-pair__text {
    order: 2;
  }
  .world-pair--flip .world-pair__stage {
    order: 1;
  }
}

.world-pair__stage {
  position: relative;
  min-height: min(420px, 52vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

.world-phone-float {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
}

.world-blob {
  position: absolute;
  width: 85%;
  height: 85%;
  border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 197, 138, 0.15), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(139, 174, 255, 0.2), transparent 45%), rgba(255, 255, 255, 0.04);
  filter: blur(0px);
  z-index: 0;
}

.world-blob--lg {
  width: 94%;
  height: 92%;
  background: radial-gradient(circle at 28% 28%, rgba(255, 197, 138, 0.22), transparent 52%),
    radial-gradient(circle at 72% 62%, rgba(139, 174, 255, 0.28), transparent 48%), rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(12, 16, 40, 0.06);
}

.scene--light .world-blob--lg {
  background: radial-gradient(circle at 28% 28%, rgba(255, 197, 138, 0.35), transparent 52%),
    radial-gradient(circle at 72% 62%, rgba(139, 174, 255, 0.32), transparent 48%), rgba(255, 255, 255, 0.75);
}

.world-pair__stage .phone--hero {
  width: min(340px, 54vw);
  max-height: min(82vh, 680px);
  z-index: 2;
  filter: drop-shadow(0 28px 60px rgba(12, 16, 40, 0.18));
}

@media (min-width: 860px) {
  .world-pair--stagger-up .world-pair__stage {
    margin-top: -12px;
  }
  .world-pair--stagger-down .world-pair__stage {
    margin-top: 32px;
  }
}

.world-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 40px);
  margin: 0 0 8px;
}

.scene--light .world-title {
  color: var(--ink);
}

.world-desc {
  margin: 0;
  color: var(--text-soft);
  max-width: 36ch;
}

.scene--light .world-desc {
  color: rgba(12, 16, 40, 0.68);
}

/* ——— Scene 5: Trust ——— */
.scene--trust.scene--light {
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139, 174, 255, 0.28), transparent 60%), #f8fafc;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 2rem auto 0;
  max-width: 560px;
  text-align: left;
}
.trust-list li {
  padding: 14px 0 14px 36px;
  position: relative;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.scene--light .trust-list li {
  color: rgba(12, 16, 40, 0.72);
  border-bottom-color: rgba(12, 16, 40, 0.08);
}
.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
}

/* ——— Scene 6: Ages ——— */
.scene--ages.scene--light {
  background: linear-gradient(180deg, #f0fdf4 0%, #f8fafc 100%);
}

.age-table-wrap {
  margin-top: 16px;
  border-radius: 16px;
  border: 1px solid rgba(12, 16, 40, 0.08);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  max-width: 560px;
}

.age-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.age-table th,
.age-table td {
  text-align: left;
  padding: 10px 12px;
  color: rgba(12, 16, 40, 0.76);
}

.age-table thead th {
  background: rgba(99, 102, 241, 0.1);
  color: var(--dawn-deep);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.age-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid rgba(12, 16, 40, 0.08);
}
.ages-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 880px) {
  .ages-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.label-cloud {
  display: inline-block;
  padding: 8px 14px;
  margin: 6px 8px 6px 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 700;
}

.scene--light .label-cloud {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(12, 16, 40, 0.1);
  color: var(--ink);
}

/* ——— Scene 7: Skills ——— */
.scene--skills.scene--light {
  background: linear-gradient(180deg, #fdf4ff 0%, #eef2ff 100%);
}
.skills-layout {
  display: grid;
  gap: 40px;
}
@media (min-width: 900px) {
  .skills-layout {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }
}

.skill-nodes {
  position: relative;
  min-height: 420px;
}
.skill-node {
  position: absolute;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.scene--light .skill-node {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(12, 16, 40, 0.1);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(12, 16, 40, 0.06);
}
.skill-node:nth-child(1) {
  top: 4%;
  left: 8%;
}
.skill-node:nth-child(2) {
  top: 22%;
  right: 4%;
}
.skill-node:nth-child(3) {
  top: 42%;
  left: 0;
}
.skill-node:nth-child(4) {
  top: 58%;
  right: 12%;
}
.skill-node:nth-child(5) {
  bottom: 26%;
  left: 18%;
}
.skill-node:nth-child(6) {
  bottom: 10%;
  right: 2%;
}
.skill-node:nth-child(7) {
  top: 72%;
  left: 38%;
}
.skill-node:nth-child(8) {
  top: 12%;
  left: 42%;
}

@media (max-width: 720px) {
  .skill-nodes {
    position: relative;
    min-height: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .skill-node {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }
}

/* ——— Scene 8: Sleep & sounds (light, moonlit accents — no dark stack) ——— */
.scene--sleep.scene--light {
  text-align: center;
  background:
    radial-gradient(ellipse 100% 70% at 50% 0%, rgba(123, 140, 255, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 80% 100%, rgba(249, 167, 217, 0.22) 0%, transparent 50%),
    linear-gradient(180deg, #eef2ff 0%, #f8fafc 55%, #fdf4ff 100%);
}
.night-cluster {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  align-items: flex-end;
}
.night-cluster .phone {
  width: min(240px, 82vw);
  max-width: min(240px, 94vw);
  max-height: min(68vh, 600px);
}

/* ——— Scene 9: Parents ——— */
.scene--parents.scene--light {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  border-top: 1px solid rgba(12, 16, 40, 0.06);
}

/* ——— Scene 9.5: ESA invoice preview ——— */
.scene--esa.scene--light {
  background: linear-gradient(180deg, #f8fafc 0%, #f3f6ff 45%, #f8fafc 100%);
  border-top: 1px solid rgba(12, 16, 40, 0.06);
}

.esa-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.esa-form {
  margin-top: 12px;
}

.esa-grid {
  display: grid;
  gap: 10px;
}

@media (min-width: 760px) {
  .esa-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.esa-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #4b5c94;
}

.esa-field input,
.esa-field select {
  border: 1px solid #dfe6f8;
  border-radius: 10px;
  background: #fff;
  padding: 10px 11px;
  font-size: 0.9rem;
  color: #253872;
  font-weight: 600;
}

.invoice-preview {
  margin-top: 24px;
  border-radius: 24px;
  border: 1px solid rgba(12, 16, 40, 0.09);
  background: #fff;
  box-shadow: 0 24px 58px rgba(12, 16, 40, 0.1);
  padding: 18px;
}

.invoice-preview__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #e8edff;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(74, 96, 180, 0.08);
  padding: 12px 14px;
}

.invoice-preview__brand {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  color: #24367f;
}

.invoice-preview__doc {
  margin: 3px 0 0;
  font-size: 0.72rem;
  font-weight: 800;
  color: #6d7dae;
  letter-spacing: 0.08em;
}

.invoice-preview__status {
  font-size: 0.72rem;
  font-weight: 800;
  color: #166534;
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: 999px;
  padding: 5px 10px;
}

.invoice-preview__hero {
  margin-top: 12px;
  border-radius: 16px;
  background: linear-gradient(120deg, #efe9ff 0%, #dff1ff 100%);
  border: 1px solid #dfe9ff;
  padding: 14px;
}

.invoice-preview__hero h3 {
  margin: 0;
  font-size: 1rem;
  color: #213678;
}

.invoice-preview__hero p {
  margin: 7px 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #344b8f;
}

.invoice-preview__cards {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

@media (min-width: 760px) {
  .invoice-preview__cards {
    grid-template-columns: 1fr 1fr;
  }
}

.invoice-preview__card {
  border: 1px solid #e5eaf9;
  border-radius: 16px;
  background: #f8fafc;
  padding: 10px;
}

.invoice-preview__k {
  margin: 0 0 5px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6072a8;
}

.invoice-preview__v {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #243567;
  font-weight: 600;
}

.invoice-preview__program {
  margin-top: 12px;
  border: 1px solid #e4eafc;
  border-radius: 16px;
  background: #fff;
  padding: 10px;
}

.invoice-preview__program p {
  margin: 0 0 6px;
  font-size: 0.82rem;
  color: #243567;
}

.invoice-preview__program p:last-child {
  margin-bottom: 0;
}

.invoice-preview__line {
  margin-top: 10px;
  border: 1px solid #dfe6f8;
  border-radius: 12px;
  background: #f8faff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.84rem;
  color: #2f437e;
  font-weight: 700;
}

.invoice-preview__compliance {
  margin-top: 12px;
  border: 1px solid #d9d6ff;
  border-radius: 14px;
  background: #f1edff;
  padding: 10px;
}

.invoice-preview__compliance p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #33427a;
}

.esa-result {
  margin-top: 12px;
  border: 1px solid #dfe6f8;
  border-radius: 12px;
  background: #f8faff;
  padding: 10px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #2f437e;
  font-weight: 600;
  white-space: pre-wrap;
}

.esa-result:empty {
  display: none;
}
.parent-panel {
  border-radius: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 16, 40, 0.08);
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 22px 55px rgba(12, 16, 40, 0.08);
}
.scene--parents.scene--light .parent-panel {
  color: var(--ink);
}
.parent-panel__intro {
  margin: 0 0 18px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(12, 16, 40, 0.72);
  font-weight: 600;
}
.parent-panel__metrics {
  display: grid;
  gap: 16px;
  margin-bottom: 4px;
}
.parent-panel__metric-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.parent-panel__metric-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(12, 16, 40, 0.72);
}
.parent-panel__metric-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dawn-deep);
}
.parent-panel__note {
  margin: 14px 0 0;
  font-size: 0.9rem;
  color: rgba(12, 16, 40, 0.55);
}
.parent-panel__bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(12, 16, 40, 0.08);
  margin-bottom: 12px;
  overflow: hidden;
}
.parent-panel__bar--thin {
  height: 6px;
  margin-bottom: 0;
}
.parent-panel__bar > span {
  display: block;
  height: 100%;
  width: 68%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--mint), var(--dawn));
}
.parent-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.parent-panel__tags span {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--dawn-deep);
}

/* ——— Scene 10: Proof ——— */
.scene--proof.scene--light {
  background: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(255, 197, 138, 0.2) 0%, transparent 55%), #f8fafc;
}
.proof-deck {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .proof-deck {
    grid-template-columns: 1fr 1fr;
  }
}
.quote-card {
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 16, 40, 0.08);
  transform: rotate(-0.5deg);
  box-shadow: 0 20px 50px rgba(12, 16, 40, 0.08);
}
.quote-card:nth-child(even) {
  transform: rotate(1deg);
  margin-top: 16px;
}
.quote-card p {
  margin: 0 0 12px;
  font-style: italic;
  color: rgba(12, 16, 40, 0.78);
  font-size: 0.95rem;
}
.quote-card footer {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(12, 16, 40, 0.45);
}

/* ——— Scene 11: Close ——— */
.scene--close.scene--light {
  min-height: 85vh;
  text-align: center;
  position: relative;
  isolation: isolate;
  --close-dark-progress: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(123, 140, 255, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 20% 20%, rgba(255, 197, 138, 0.2), transparent),
    linear-gradient(180deg, #fdf4ff 0%, #f8fafc 45%, #f0fdf4 100%);
  transition: color 0.7s var(--ease-out-soft);
}

/* Closing mood-shift overlay (light → twilight as you scroll into CTA) */
.scene--close.scene--light::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 80% at 50% 100%, rgba(58, 45, 92, 0.9) 0%, transparent 60%),
    radial-gradient(ellipse 120% 100% at 50% 0%, rgba(16, 23, 48, 0.85) 0%, rgba(10, 14, 36, 0.92) 56%, rgba(10, 14, 36, 0.96) 100%);
  opacity: var(--close-dark-progress);
  transition: opacity 0.35s linear;
}

.scene--close.scene--light .scene__inner {
  position: relative;
  z-index: 1;
}

.scene--close.scene--light .h1 {
  color: var(--ink);
  transition: color 0.55s var(--ease-out-soft);
}

.scene--close.scene--light .lead,
.scene--close.scene--light .close-cta-note {
  color: rgba(12, 16, 40, 0.72);
  transition: color 0.55s var(--ease-out-soft);
}

.close-cta-row {
  gap: 18px;
}

.close-cta-note {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.scene--close.scene--light.is-deep .h1,
.scene--close.scene--light.is-deep .lead,
.scene--close.scene--light.is-deep .close-cta-note {
  color: rgba(255, 255, 255, 0.95);
}

.scene--close.scene--light.is-deep .btn--shimmer {
  box-shadow: 0 16px 42px rgba(99, 102, 241, 0.45);
}

.footer {
  padding: 32px 24px 48px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(12, 16, 40, 0.5);
  border-top: 1px solid rgba(12, 16, 40, 0.08);
  background: #f8fafc;
  transition:
    color 0.55s var(--ease-out-soft),
    border-color 0.55s var(--ease-out-soft),
    background-color 0.55s var(--ease-out-soft);
}

body[data-nav-tone="dark"] .footer {
  color: rgba(255, 255, 255, 0.62);
  border-top-color: rgba(255, 255, 255, 0.1);
  background: #0a0e24;
}

/* Mobile nav drawer toggle - simple */
.nav-toggle {
  display: flex;
  background: rgba(12, 16, 40, 0.06);
  border: 1px solid rgba(12, 16, 40, 0.12);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
}

body[data-nav-tone="dark"] .nav-toggle {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 60px;
  left: 12px;
  right: 12px;
  z-index: 99;
  padding: 16px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  border: 1px solid rgba(12, 16, 40, 0.1);
  box-shadow: 0 24px 60px rgba(12, 16, 40, 0.12);
  flex-direction: column;
  gap: 12px;
}
.mobile-drawer.is-open {
  display: flex;
}
.mobile-drawer a {
  font-weight: 700;
  padding: 10px 8px;
  border-radius: 10px;
  color: var(--ink);
}
.mobile-drawer a:hover {
  background: rgba(123, 140, 255, 0.12);
}

/* ——— Hero emphasis + age preference (homepage) ——— */
.inline-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.88em;
  font-weight: 700;
  color: var(--dawn-deep);
  background: rgba(99, 102, 241, 0.1);
  padding: 2px 8px;
  border-radius: 6px;
}

.lead--hero-emphasis {
  font-weight: 700;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  color: var(--ink);
  max-width: 42ch;
}

body[data-age-group="10-12"] .entry__orb {
  opacity: 0.72;
  transform: scale(0.94);
}
body[data-age-group="10-12"] .entry__float-shot {
  opacity: 0.55;
}

/* ——— Stage picker + growth journey ——— */
.scene--stage-picker.scene--light {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}
.stage-picker-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.stage-picker__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.stage-picker__options {
  display: grid;
  gap: clamp(14px, 2.5vw, 22px);
  margin-top: 24px;
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .stage-picker__options {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .stage-picker__options {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.stage-picker__cell {
  text-align: center;
  padding: 16px 14px 18px;
  border-radius: 20px;
  border: 1px solid rgba(12, 16, 40, 0.08);
  background: rgba(255, 255, 255, 0.72);
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}
.stage-picker__cell.is-active {
  border-color: rgba(99, 102, 241, 0.45);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(99, 102, 241, 0.14);
}
.stage-picker__cell .stage-picker__btn {
  width: 100%;
  max-width: 100%;
}
.stage-picker__blurb {
  margin: 10px 0 0;
  font-size: 0.84rem;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(12, 16, 40, 0.58);
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}
.stage-picker__btn {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 999px;
  border: 2px solid rgba(99, 102, 241, 0.35);
  background: rgba(255, 255, 255, 0.95);
  color: var(--dawn-deep);
  cursor: pointer;
  transition:
    transform 0.2s var(--ease-settle),
    box-shadow 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.stage-picker__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(99, 102, 241, 0.15);
}
.stage-picker__btn.is-active {
  background: linear-gradient(120deg, #6366f1, #7c3aed);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.35);
}
.stage-picker__soon {
  font-weight: 700;
  font-size: 0.78em;
  opacity: 0.9;
}
.stage-picker__hint {
  text-align: center;
  margin-top: 1.5rem;
}
.stage-picker__hint a {
  font-weight: 700;
  color: var(--dawn-deep);
}

.growth-journey {
  margin-top: 28px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.growth-journey__track {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 8px 10px;
}
.growth-journey__track--four .growth-journey__step {
  flex: 1 1 120px;
  max-width: 200px;
}
.growth-journey__step {
  flex: 1 1 140px;
  max-width: 220px;
  text-align: center;
  padding: 16px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(12, 16, 40, 0.08);
  box-shadow: 0 12px 32px rgba(12, 16, 40, 0.06);
}
.growth-journey__band {
  display: block;
  font-weight: 800;
  font-size: clamp(0.82rem, 1.8vw, 1rem);
  color: var(--dawn-deep);
  margin-bottom: 6px;
}
.growth-journey__label {
  font-size: clamp(0.72rem, 1.6vw, 0.82rem);
  font-weight: 600;
  color: rgba(12, 16, 40, 0.62);
  line-height: 1.35;
}
.growth-journey__arrow {
  flex: 0 0 auto;
  width: 28px;
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.65));
  border-radius: 2px;
  position: relative;
  margin: 0 4px;
}
.growth-journey__arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left: 8px solid rgba(99, 102, 241, 0.65);
}
@media (max-width: 700px) {
  .growth-journey__arrow {
    width: 100%;
    height: 2px;
    margin: 4px 0;
    max-width: 120px;
  }
  .growth-journey__arrow::after {
    right: 0;
  }
}

/* ——— Tweens lane (homepage + by-age) ——— */
.scene--tweens.scene--light {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
}
.tweens-layout {
  display: grid;
  gap: 32px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}
@media (min-width: 880px) {
  .tweens-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}
.tweens-points {
  margin: 1rem 0 1.25rem;
  padding-left: 1.2rem;
  color: rgba(12, 16, 40, 0.78);
  font-weight: 600;
  line-height: 1.55;
}
.tweens-points li {
  margin-bottom: 8px;
}
.tweens-orbit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
}
.tweens-orbit__star {
  position: absolute;
  top: 8%;
  right: 14%;
  font-size: 1.75rem;
  opacity: 0.85;
  filter: drop-shadow(0 8px 20px rgba(99, 102, 241, 0.25));
}
.tweens-orbit--subtle .tweens-orbit__star {
  font-size: 1.35rem;
  opacity: 0.65;
  top: 12%;
}
.tweens-card-sim {
  width: min(100%, 320px);
  border-radius: 18px;
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(12, 16, 40, 0.1);
  box-shadow: 0 24px 50px rgba(12, 16, 40, 0.1);
}
.tweens-card-sim--compact {
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 16px 40px rgba(12, 16, 40, 0.08);
}
.tweens-card-sim__title {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--dawn-deep);
}
.tweens-card-sim__body {
  margin: 0 0 14px;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(12, 16, 40, 0.62);
  line-height: 1.45;
}
.tweens-card-sim__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tweens-card-sim__row span {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.06);
  color: rgba(12, 16, 40, 0.75);
}

.pathway-card--young {
  border-top: 4px solid #a78bfa;
}
.pathway-card--tween {
  border-top: 4px solid #38bdf8;
}
.pathway-card--teen {
  border-top: 4px solid #34d399;
}

.what-does-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .what-does-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.what-does-card {
  border-radius: 18px;
  border: 1px solid rgba(12, 16, 40, 0.08);
  background: linear-gradient(155deg, rgba(124, 58, 237, 0.06), rgba(255, 255, 255, 0.95));
  box-shadow: 0 14px 36px rgba(31, 35, 82, 0.08);
  padding: 18px;
}
.what-does-card h3 {
  margin: 0;
  font-size: clamp(1rem, 2.1vw, 1.1rem);
  line-height: 1.35;
  color: var(--ink-soft);
  font-weight: 800;
}

.not-just-list {
  list-style: none;
  margin: 12px auto 0;
  padding: 0;
  display: grid;
  gap: 10px;
  max-width: 460px;
}
.not-just-list li {
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.16);
  color: var(--ink-soft);
  font-weight: 700;
}

/* ——— ESA age callout ——— */
.esa-age-callout {
  max-width: 640px;
  margin: 0 auto 28px;
  padding: 22px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(52, 211, 153, 0.1));
  border: 1px solid rgba(99, 102, 241, 0.2);
}
.esa-age-callout__list {
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(12, 16, 40, 0.78);
  font-weight: 600;
  line-height: 1.6;
}
.esa-age-callout__list li {
  margin-bottom: 6px;
}

/* ——— By age page ——— */
.by-age-hero .by-age-toc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.age-band--young .age-band__emoji-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 2rem;
  margin: 1rem 0 0;
}
.age-band__char-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(12px, 4vw, 28px);
  margin: 1.25rem 0 0;
  flex-wrap: wrap;
}
.age-band__char-row img {
  width: min(88px, 22vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(99, 102, 241, 0.2));
}
.age-band__grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
@media (min-width: 720px) {
  .age-band__grid--bouncy {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.age-card--round {
  border-radius: 26px;
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(12, 16, 40, 0.08);
  box-shadow: 0 20px 48px rgba(167, 139, 250, 0.12);
}
.age-band--young {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(167, 139, 250, 0.18), transparent 55%), #f8fafc;
}
.age-band--foundation {
  background:
    radial-gradient(ellipse 85% 55% at 50% 0%, rgba(110, 231, 183, 0.22), transparent 52%),
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(253, 230, 138, 0.15), transparent 45%),
    #f8fafc;
}
.age-band--tween .tweens-layout {
  max-width: 1000px;
}
.age-band--teen {
  background:
    radial-gradient(ellipse 90% 80% at 30% 20%, rgba(99, 102, 241, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 60% at 80% 60%, rgba(52, 211, 153, 0.2), transparent 45%),
    linear-gradient(165deg, #0f172a 0%, #1e1b4b 45%, #0a0e24 100%);
  color: #fff;
}
.age-band--teen .h2 {
  color: #fff;
}
.age-teen-panel {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 24px 56px;
}

/* ——— Teens waitlist ——— */
.page--waitlist {
  margin: 0;
  min-height: 100vh;
  background: #070a16;
  color: rgba(255, 255, 255, 0.92);
}
.page--waitlist .site-nav__logo {
  color: #fff;
}
.site-nav--waitlist {
  background: linear-gradient(180deg, rgba(7, 10, 22, 0.94) 0%, rgba(7, 10, 22, 0.72) 85%, transparent 100%);
}
.site-nav--waitlist .site-nav__links {
  color: rgba(255, 255, 255, 0.72);
}
.site-nav--waitlist .site-nav__links a:hover,
.site-nav--waitlist .site-nav__links a:focus-visible {
  color: #fff;
  border-bottom-color: var(--peach);
}
.waitlist-main {
  padding: 100px 20px 48px;
}
.waitlist-hero {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
.waitlist-hero__glow {
  position: absolute;
  inset: -20% -40% auto;
  height: 280px;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(99, 102, 241, 0.45), transparent 70%);
  pointer-events: none;
  filter: blur(2px);
}
.waitlist-hero__inner {
  position: relative;
  z-index: 1;
}
.waitlist-eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 12px;
}
.waitlist-h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #fff;
}
.waitlist-lead {
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}
.waitlist-form {
  display: grid;
  gap: 14px;
}
.waitlist-label {
  display: grid;
  gap: 8px;
  text-align: left;
}
.waitlist-label__text {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
}
.waitlist-input {
  font: inherit;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.waitlist-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.waitlist-submit {
  justify-self: start;
}
.waitlist-thanks {
  margin: 20px 0 0;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.35);
  color: #bbf7d0;
  font-weight: 600;
  line-height: 1.5;
}
.waitlist-note {
  margin: 28px 0 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
}
.waitlist-note a {
  color: #c4b5fd;
  font-weight: 600;
}
.waitlist-note a:hover {
  color: #fde68a;
}
.footer--waitlist {
  background: #050814;
  border-top-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
}
body[data-nav-tone="dark"] .nav-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.page--waitlist .mobile-drawer {
  background: rgba(15, 23, 42, 0.97);
  border-color: rgba(255, 255, 255, 0.12);
}
.page--waitlist .mobile-drawer a {
  color: #fff;
}
.page--waitlist .mobile-drawer a:hover {
  background: rgba(99, 102, 241, 0.25);
}
.page--waitlist .mobile-drawer__label {
  color: rgba(255, 255, 255, 0.45);
}
.site-nav--waitlist .site-nav__dropdown-btn {
  color: rgba(255, 255, 255, 0.72);
}
.site-nav--waitlist .site-nav__dropdown-btn:hover,
.site-nav--waitlist .site-nav__dropdown-btn:focus-visible {
  color: #fff;
  border-bottom-color: var(--peach);
}

/* Homepage — breathing room: music, differentiator, immersive line */
.scene__inner--narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.music-hero-layout {
  display: grid;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

@media (min-width: 900px) {
  .music-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 1.05fr);
  }
}

.music-hero-figure {
  margin: 0 auto;
  max-width: min(300px, 88vw);
  border-radius: 24px;
  overflow: visible;
  box-shadow: none;
}

.music-hero-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.scene--different.scene--light {
  background: linear-gradient(180deg, #f8fafc 0%, #f0fdf4 100%);
}

.scene--kids-ways {
  position: relative;
  min-height: min(70vh, 620px);
  padding-top: clamp(96px, 16vh, 140px);
  padding-bottom: clamp(96px, 16vh, 140px);
}

.scene--kids-ways.scene--light {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 45%, #fdf4ff 100%);
}

.scene__kids-ways-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.42;
  pointer-events: none;
}

.kids-ways-lines {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3.8vw, 40px);
  line-height: 1.45;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.kids-ways-lines p {
  margin: 0.35em 0;
}

.funding-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  align-items: center;
}
