/* ─────────────────────────── DESIGN TOKENS ─────────────────────────── */
:root {
  --navy: #101B4D;
  --indigo: #1E2A78;
  --lavender: #8E8FF5;
  --moon-gold: #FFD98A;
  --cloud-cream: #FFF8ED;
  --mist-blue: #DDE7FF;
  --coral: #FF8F8F;

  --ink: #101B4D;
  --ink-soft: rgba(16, 27, 77, 0.72);
  --ink-muted: rgba(16, 27, 77, 0.55);
  --ink-faint: rgba(16, 27, 77, 0.12);

  --font-display: 'Fraunces', 'Recoleta', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --r-card: 24px;
  --r-btn: 999px;
  --r-input: 16px;

  --shadow-soft: 0 10px 40px rgba(30, 42, 120, 0.10);
  --shadow-lift: 0 24px 60px rgba(30, 42, 120, 0.16);
  --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.7);

  --page-max: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
}

/* ─────────────────────────── RESET ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cloud-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─────────────────────────── ATOMS ─────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--moon-gold);
}
.eyebrow-dark { color: var(--indigo); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 26px;
  border-radius: var(--r-btn);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--moon-gold);
  color: var(--navy);
  box-shadow: 0 12px 32px rgba(255, 217, 138, 0.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(255, 217, 138, 0.55); }
.btn-ghost {
  background: transparent;
  color: var(--cloud-cream);
  border: 1px solid rgba(255, 248, 237, 0.28);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 248, 237, 0.08); border-color: rgba(255, 248, 237, 0.5); }
.btn-sm { height: 44px; padding: 0 18px; font-size: 14px; }

.section {
  padding: clamp(80px, 12vw, 140px) 0;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  color: var(--navy);
}
.section-head p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 17px;
}

/* ─────────────────────────── HEADER ─────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 14px 0;
  transition: background 300ms ease, backdrop-filter 300ms ease, box-shadow 300ms ease;
}
.site-header.is-scrolled {
  background: rgba(255, 248, 237, 0.85);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  box-shadow: 0 4px 24px rgba(16, 27, 77, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-icon { width: 32px; height: 32px; border-radius: 8px; }
.logo-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.site-header:not(.is-scrolled) .logo-word { color: var(--cloud-cream); }
.site-nav {
  margin-left: auto;
  display: flex;
  gap: 28px;
}
.site-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--cloud-cream);
  opacity: 0.85;
  transition: opacity 200ms ease;
}
.site-header.is-scrolled .site-nav a { color: var(--ink-soft); }
.site-nav a:hover { opacity: 1; }
.header-cta { margin-left: 4px; }
@media (max-width: 720px) {
  .site-nav { display: none; }
  /* On mobile: logo left, button right — matches the ask. */
  .header-cta { margin-left: auto; }
}

/* ─────────────────────────── HERO ─────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0A143C 0%, var(--navy) 45%, var(--indigo) 100%);
  color: var(--cloud-cream);
  padding: 160px 0 100px;
  isolation: isolate;
}
.stars-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle at center, rgba(255, 217, 138, 0.24) 0%, transparent 60%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
  animation: glow-pulse 10s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
}
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero-title {
  font-size: clamp(36px, 5.5vw, 62px);
  line-height: 1.08;
  color: var(--cloud-cream);
  letter-spacing: -0.025em;
}
.hero-title em {
  font-style: italic;
  color: var(--moon-gold);
  font-weight: 500;
}
.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 14px;
  color: rgba(255, 248, 237, 0.72);
}
.stars-line { color: var(--moon-gold); letter-spacing: 2px; font-size: 15px; }

/* Hero visual: moon disc + halo + mascot layered so the mascot reads
   as "peeking out from the moon". Mascot is deliberately oversized and
   overhangs the bottom edge of the hero for a more premium storybook
   composition. */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 560px;
  margin: 0 auto;
  margin-bottom: -80px;
  z-index: 2;
}
.hero-moon {
  position: absolute;
  inset: 8% 6% auto auto;
  width: 68%;
  aspect-ratio: 1;
  pointer-events: none;
}
.hero-moon-halo,
.hero-moon-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.hero-moon-halo {
  background: radial-gradient(circle at 45% 45%, rgba(255, 217, 138, 0.55) 0%, rgba(255, 217, 138, 0.12) 40%, transparent 70%);
  filter: blur(6px);
  transform: scale(1.35);
  animation: glow-pulse 8s ease-in-out infinite;
}
.hero-moon-disc {
  background: radial-gradient(circle at 35% 30%, #FFF3D6 0%, #F8CE7A 55%, #E4B25B 100%);
  box-shadow: inset -20px -30px 60px rgba(120, 70, 20, 0.25),
              inset 12px 16px 30px rgba(255, 255, 255, 0.35);
}
.hero-mascot {
  position: absolute;
  bottom: -6%;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.45));
  z-index: 3;
}
.floaty { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-16px); }
}
.cta-mascot.floaty { animation-name: floaty-plain; }
@keyframes floaty-plain {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.orbit-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--moon-gold);
  box-shadow: 0 0 24px var(--moon-gold);
  opacity: 0.6;
}
.orbit-dot-1 { width: 10px; height: 10px; top: 6%; left: 8%; animation: twinkle 3.2s ease-in-out infinite; }
.orbit-dot-2 { width: 6px; height: 6px; top: 22%; right: 2%; animation: twinkle 4s ease-in-out infinite 0.6s; }
.orbit-dot-3 { width: 8px; height: 8px; bottom: 22%; left: 4%; animation: twinkle 3.6s ease-in-out infinite 1.1s; }
.orbit-dot-4 { width: 5px; height: 5px; top: 45%; left: 2%; animation: twinkle 4.4s ease-in-out infinite 1.6s; }
@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

@media (max-width: 900px) {
  .hero-visual { max-width: 380px; margin-bottom: -40px; }
  .hero-mascot { width: 92%; }
}
@media (max-width: 480px) {
  .hero-visual { max-width: 320px; margin-bottom: -20px; }
}

/* ─────────────────────────── FEATURES ─────────────────────────── */
.features { background: var(--cloud-cream); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature-card {
  position: relative;
  background: white;
  border-radius: var(--r-card);
  padding: 34px 28px;
  border: 1px solid rgba(30, 42, 120, 0.06);
  overflow: hidden;
  transition: transform 300ms cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 300ms ease,
              border-color 300ms ease;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--moon-gold), var(--lavender));
  opacity: 0;
  transition: opacity 300ms ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(30, 42, 120, 0.14);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  margin-bottom: 22px;
  background: linear-gradient(160deg, #F1F3FD 0%, #E6EBFB 100%);
  color: var(--indigo);
}
.feature-icon svg { width: 32px; height: 32px; }
.feature-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.feature-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ─────────────────────────── HOW IT WORKS / TIMELINE ─────────────────────────── */
.how { background: linear-gradient(180deg, var(--cloud-cream) 0%, var(--mist-blue) 100%); }

/* Timeline geometry, top to bottom per column:
     [mascot 140]  [gap 20]  [dot 56]  [gap 24]  [card ...]
   The dotted horizontal track sits at the dot's vertical center so it
   physically connects the three numbered circles (mascots float above,
   uninterrupted). Numbers used in --track-top below match those offsets. */
.timeline {
  --mascot-size: 140px;
  --mascot-gap: 20px;
  --dot-size: 56px;
  --track-top: calc(var(--mascot-size) + var(--mascot-gap) + var(--dot-size) / 2);

  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 20px 0 0;
}
.timeline-track {
  position: absolute;
  top: var(--track-top);
  left: 14%;
  right: 14%;
  height: 2px;
  background-image: linear-gradient(90deg, var(--indigo) 40%, transparent 0);
  background-size: 14px 2px;
  background-repeat: repeat-x;
  opacity: 0.32;
  z-index: 0;
}
.timeline-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
}
.timeline-mascot {
  width: var(--mascot-size);
  height: var(--mascot-size);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: var(--mascot-gap);
  transition: transform 400ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.timeline-mascot img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(30, 42, 120, 0.18));
}
.timeline-step:hover .timeline-mascot { transform: translateY(-6px); }
.timeline-dot {
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: linear-gradient(160deg, var(--indigo), var(--navy));
  color: var(--moon-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  /* Two-tone ring blends the dot into the section gradient so the dotted
     track appears to "route through" the circle instead of colliding
     with it. First layer is the page background; second is a hairline. */
  box-shadow: 0 10px 24px rgba(30, 42, 120, 0.22),
              0 0 0 8px var(--cloud-cream),
              0 0 0 9px rgba(30, 42, 120, 0.10);
  transition: transform 300ms ease;
}
.timeline-step:hover .timeline-dot { transform: translateY(-3px); }
.timeline-card {
  background: white;
  border-radius: var(--r-card);
  padding: 24px 26px 26px;
  box-shadow: var(--shadow-soft);
  width: 100%;
  max-width: 320px;
}
.timeline-card h3 {
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.timeline-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
}
@media (max-width: 780px) {
  .timeline { grid-template-columns: 1fr; gap: 44px; --mascot-size: 120px; }
  .timeline-track {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
    background-image: linear-gradient(180deg, var(--indigo) 40%, transparent 0);
    background-size: 2px 14px;
    background-repeat: repeat-y;
  }
  .timeline-card { text-align: center; }
}

/* ─────────────────────────── SHOWCASE ─────────────────────────── */
.showcase { background: var(--mist-blue); }
.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) {
  .showcase-inner { grid-template-columns: 1fr; text-align: center; }
  .pillar-list { justify-content: center; }
  .showcase-visual { order: -1; }
  .showcase-copy .eyebrow { justify-content: center; }
}
.showcase-copy .eyebrow { margin-bottom: 14px; }
.showcase-copy h2 {
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 28px;
}
.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
}
.pillar-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 12px 20px 12px 14px;
  border-radius: var(--r-btn);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(30, 42, 120, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.pillar-list li:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(30, 42, 120, 0.10); }
.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 217, 138, 0.35);
  color: var(--indigo);
}
.pillar-icon svg { width: 18px; height: 18px; }

/* Phone mockup — CSS-drawn "Tonight's Story" preview */
.showcase-visual { display: flex; justify-content: center; }
.mock-phone {
  position: relative;
  width: 300px;
  aspect-ratio: 300 / 600;
  border-radius: 44px;
  padding: 12px;
  background: linear-gradient(160deg, #0A143C, var(--navy));
  box-shadow: 0 40px 80px rgba(16, 27, 77, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.mock-phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #06102F;
  border-radius: 999px;
  z-index: 2;
}
.mock-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, #0A143C 0%, var(--indigo) 100%);
  color: var(--cloud-cream);
  padding: 60px 24px 24px;
  display: flex;
  flex-direction: column;
}
.mock-moon {
  position: absolute;
  top: 40px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(255, 217, 138, 0.85), rgba(255, 217, 138, 0.15) 60%, transparent 80%);
  filter: blur(2px);
}
.mock-star {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cloud-cream);
  box-shadow: 0 0 8px rgba(255, 248, 237, 0.6);
  opacity: 0.7;
}
.mock-star-1 { top: 30%; left: 12%; animation: twinkle 3s ease-in-out infinite; }
.mock-star-2 { top: 22%; left: 40%; animation: twinkle 4s ease-in-out infinite 0.8s; width: 3px; height: 3px; }
.mock-star-3 { top: 45%; left: 68%; animation: twinkle 3.6s ease-in-out infinite 1.4s; width: 3px; height: 3px; }
.mock-eyebrow {
  font-size: 10px;
  font-weight: 600;
  color: var(--moon-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 12px;
}
.mock-title {
  font-size: 22px;
  color: var(--cloud-cream);
  line-height: 1.2;
  margin-top: 10px;
  letter-spacing: -0.02em;
}
.mock-lines {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mock-lines span {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 248, 237, 0.14);
  width: 100%;
}
.mock-lines span:nth-child(2n) { width: 92%; }
.mock-lines span:nth-child(3) { width: 96%; }
.mock-play {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 217, 138, 0.10);
  border: 1px solid rgba(255, 217, 138, 0.28);
  border-radius: 14px;
  color: var(--moon-gold);
  font-size: 13px;
  font-weight: 600;
}
.mock-play svg { width: 14px; height: 14px; }
.mock-play-time {
  margin-left: auto;
  color: rgba(255, 248, 237, 0.55);
  font-family: 'SF Mono', 'Menlo', monospace;
  font-size: 12px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .mock-phone { width: 260px; }
}

/* ─────────────────────────── PARENT LETTER ─────────────────────────── */
.letter { background: var(--cloud-cream); padding: clamp(60px, 10vw, 100px) 0; }
.letter-card {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border-radius: 32px;
  padding: clamp(36px, 6vw, 64px);
  border: 1px solid rgba(30, 42, 120, 0.06);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.letter-card .eyebrow { margin-bottom: 18px; }
.letter-card h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.letter-card p {
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.letter-card p:last-of-type { margin-bottom: 0; }
.letter-signoff {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--ink-faint);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.letter-sign {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  color: var(--indigo);
  font-size: 17px;
}
.letter-note {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

/* ─────────────────────────── REVIEWS / MARQUEE ─────────────────────────── */
.reviews { background: var(--cloud-cream); overflow: hidden; }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  padding: 8px 0;
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 50s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  flex: 0 0 auto;
  width: 340px;
  background: white;
  border-radius: var(--r-card);
  padding: 28px 26px;
  margin: 0;
  border: 1px solid rgba(30, 42, 120, 0.06);
  box-shadow: 0 6px 18px rgba(30, 42, 120, 0.05);
  display: flex;
  flex-direction: column;
}
.review-stars {
  color: var(--moon-gold);
  letter-spacing: 3px;
  font-size: 15px;
  margin-bottom: 14px;
}
.review-card p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
  color: var(--navy);
  letter-spacing: -0.01em;
  flex: 1;
}
.review-card footer {
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-muted);
  display: flex;
  gap: 8px;
  align-items: center;
}
.review-card footer span { opacity: 0.5; }
@media (max-width: 480px) {
  .review-card { width: 280px; }
}

/* ─────────────────────────── CTA ─────────────────────────── */
.cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--indigo) 0%, var(--navy) 100%);
  color: var(--cloud-cream);
  padding: clamp(80px, 12vw, 120px) 0;
  text-align: center;
}
.stars-canvas-dense { opacity: 0.55; }
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-mascot {
  width: 140px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}
.cta h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.15;
  color: var(--cloud-cream);
}
.cta-inner > p {
  margin-top: 18px;
  font-size: 17.5px;
  color: rgba(255, 248, 237, 0.78);
}
.store-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 20px;
  background: #000;
  color: white;
  border-radius: 14px;
  min-width: 190px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35); }
.store-badge svg { width: 26px; height: 26px; flex-shrink: 0; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.store-badge small { font-size: 10.5px; font-weight: 400; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.05em; }
.store-badge strong { font-size: 16px; font-weight: 600; }

/* ─────────────────────────── FOOTER ─────────────────────────── */
.site-footer {
  background: #06102F;
  color: rgba(255, 248, 237, 0.55);
  padding: 48px 0 32px;
  font-size: 14px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cloud-cream);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
}
.footer-icon { width: 24px; height: 24px; border-radius: 6px; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { transition: color 200ms ease; }
.footer-nav a:hover { color: var(--cloud-cream); }
.footer-copy { font-size: 13px; color: rgba(255, 248, 237, 0.4); }

/* ─────────────────────────── REVEAL ANIMATION ─────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
