:root {
  --ink-950: #070b19;
  --ink-900: #0b1026;
  --ink-850: #101633;
  --ink-800: #161c3d;
  --ink-700: #23294c;
  --cream-100: #fff9e9;
  --cream-200: #f5edda;
  --cream-400: #cfc5b0;
  --cream-500: #a89f8f;
  --gold-300: #cdbbff;
  --gold-400: #a77cff;
  --gold-500: #7d50e8;
  --sage-400: #8fc4b7;
  --violet-400: #aa8cff;
  --border: rgb(255 249 233 / 0.13);
  --border-strong: rgb(255 249 233 / 0.22);
  --shadow: 0 24px 80px rgb(1 3 12 / 0.38);
  --radius-card: 24px;
  --radius-media: 28px;
  --radius-button: 999px;
  --header-height: 74px;
  --page-width: 1200px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section-space: clamp(5rem, 11vw, 9rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink-900);
  color: var(--cream-100);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 4px;
}

::selection {
  background: var(--gold-400);
  color: var(--ink-950);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  background: var(--cream-100);
  color: var(--ink-950);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(100% - (var(--gutter) * 2), var(--page-width));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.nav-sentinel {
  position: absolute;
  top: 12px;
  width: 1px;
  height: 1px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--border);
  background: rgb(7 11 25 / 0.88);
  box-shadow: 0 10px 36px rgb(1 3 12 / 0.18);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}

.nav-shell {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100% - (var(--gutter) * 2), var(--page-width));
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.brand strong {
  display: block;
  font-weight: 800;
}

.brand-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgb(92 45 205 / 0.38);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.3vw, 2rem);
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav > a:not(.nav-download) {
  position: relative;
  padding-block: 0.65rem;
  color: var(--cream-400);
  transition: color 160ms ease;
}

.site-nav > a:not(.nav-download)::after {
  position: absolute;
  right: 0;
  bottom: 0.34rem;
  left: 0;
  height: 1px;
  background: var(--gold-400);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-download):hover,
.site-nav > a:not(.nav-download):focus-visible {
  color: var(--cream-100);
}

.site-nav > a:not(.nav-download):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-download {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--gold-300);
  border-radius: var(--radius-button);
  background: var(--gold-400);
  color: var(--ink-950);
  font-weight: 850;
  white-space: nowrap;
  transition: transform 160ms ease, background-color 160ms ease;
}

.nav-download:hover {
  background: var(--gold-300);
  transform: translateY(-1px);
}

.nav-download:active,
.app-store-button:active {
  transform: translateY(1px) scale(0.99);
}

.menu-toggle,
.menu-scrim {
  display: none;
}

.hero {
  position: relative;
  min-height: min(900px, 100dvh);
  overflow: hidden;
  padding-top: calc(var(--header-height) + clamp(3.25rem, 8vw, 7rem));
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 77% 30%, rgb(116 66 226 / 0.3), transparent 24%),
    radial-gradient(circle at 68% 42%, rgb(70 38 151 / 0.2), transparent 38%),
    linear-gradient(115deg, #060919 0%, #090b22 54%, #100d2c 100%);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: auto -20% -50% 30%;
  z-index: -1;
  height: 70%;
  border-radius: 50%;
  background: rgb(126 78 232 / 0.1);
  filter: blur(80px);
  content: "";
}

.hero-stars,
.cta-stars {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-stars::before,
.hero-stars::after,
.cta-stars::before,
.cta-stars::after {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgb(223 213 255 / 0.8);
  box-shadow:
    110px 50px 0 -1px rgb(205 187 255 / 0.72),
    280px 180px 0 -1px rgb(255 249 233 / 0.38),
    480px 76px 0 rgb(205 187 255 / 0.68),
    720px 220px 0 -1px rgb(255 249 233 / 0.4),
    900px 104px 0 rgb(167 124 255 / 0.62),
    1100px 330px 0 -1px rgb(255 249 233 / 0.36),
    1260px 128px 0 rgb(205 187 255 / 0.72),
    1420px 260px 0 -1px rgb(255 249 233 / 0.4),
    190px 460px 0 rgb(167 124 255 / 0.42),
    560px 520px 0 -1px rgb(255 249 233 / 0.34),
    1050px 570px 0 rgb(205 187 255 / 0.48),
    1360px 650px 0 -1px rgb(255 249 233 / 0.3);
  content: "";
}

.hero-stars::before,
.cta-stars::before {
  top: 8%;
  left: 3%;
}

.hero-stars::after,
.cta-stars::after {
  top: 48%;
  left: 11%;
  opacity: 0.6;
  transform: translateX(160px);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1.25rem;
  color: var(--gold-300);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.eyebrow > span {
  width: 24px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 5.9rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

h1 em {
  display: inline;
  color: var(--gold-300);
  font-style: normal;
  font-weight: 500;
}

.hero-intro {
  max-width: 59ch;
  margin-bottom: 2rem;
  color: var(--cream-400);
  font-size: clamp(1.03rem, 1.5vw, 1.18rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
}

.app-store-button {
  display: inline-grid;
  min-width: 196px;
  min-height: 64px;
  padding: 0.58rem 1.45rem 0.62rem;
  border: 1px solid var(--cream-100);
  border-radius: var(--radius-button);
  background: var(--cream-100);
  color: var(--ink-950);
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.app-store-button:hover {
  background: white;
  box-shadow: 0 12px 32px rgb(0 0 0 / 0.2);
  transform: translateY(-2px);
}

.store-kicker {
  margin-bottom: 0.16rem;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.app-store-button strong {
  font-size: 1.27rem;
  font-weight: 820;
  letter-spacing: -0.025em;
}

.text-link,
.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-strong);
  color: var(--cream-200);
  font-size: 0.92rem;
  font-weight: 750;
  transition: border-color 160ms ease, color 160ms ease;
}

.text-link:hover,
.inline-cta:hover {
  border-color: var(--gold-300);
  color: var(--gold-300);
}

.trust-strip {
  display: flex;
  margin: clamp(2.25rem, 4vw, 3.5rem) 0 0;
}

.trust-strip > div {
  min-width: 92px;
  padding-right: clamp(1rem, 3vw, 2rem);
}

.trust-strip > div + div {
  padding-left: clamp(1rem, 3vw, 2rem);
  border-left: 1px solid var(--border);
}

.trust-strip dt {
  margin-bottom: 0.1rem;
  color: var(--cream-100);
  font-size: 1.3rem;
  font-weight: 820;
  line-height: 1;
}

.trust-strip dd {
  margin: 0;
  color: var(--cream-500);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.device-stage {
  position: relative;
  min-height: 620px;
}

.orb {
  position: absolute;
  top: 10%;
  left: 6%;
  width: min(470px, 80%);
  aspect-ratio: 1;
  border: 1px solid rgb(205 187 255 / 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgb(145 91 255 / 0.2), rgb(81 43 169 / 0.08) 48%, transparent 72%);
  box-shadow: 0 0 110px rgb(116 66 226 / 0.2), inset 0 0 70px rgb(205 187 255 / 0.06);
}

.tablet-device,
.phone-device,
.mini-phone {
  margin: 0;
  border: 6px solid #252945;
  background: #080a12;
  box-shadow: var(--shadow), inset 0 0 0 1px rgb(255 255 255 / 0.15);
}

.tablet-device {
  position: absolute;
  top: 14%;
  left: 0;
  width: min(430px, 76%);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-width: 8px;
  border-radius: var(--radius-media);
  transform: rotate(-5deg);
}

.tablet-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tablet-device::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(4 7 18 / 0.72), transparent 52%);
  content: "";
}

.tablet-device figcaption {
  position: absolute;
  right: 1.3rem;
  bottom: 1.05rem;
  left: 1.3rem;
  z-index: 1;
  color: white;
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  font-weight: 750;
}

.tablet-camera {
  position: absolute;
  top: 50%;
  right: 1px;
  z-index: 2;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #474b65;
}

.phone-device {
  position: absolute;
  right: clamp(0rem, 4vw, 2.6rem);
  bottom: 0;
  z-index: 2;
  width: clamp(232px, 28vw, 305px);
  aspect-ratio: 1320 / 2868;
  overflow: hidden;
  border: 7px solid #292c45;
  border-radius: 43px;
  transform: rotate(3deg);
}

.phone-device::after,
.mini-phone::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.phone-device img,
.mini-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 3;
  width: 31%;
  height: 20px;
  border-radius: 999px;
  background: #030305;
  transform: translateX(-50%);
}

.stage-note {
  position: absolute;
  right: 0;
  bottom: 9%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 220px;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 16px;
  background: rgb(18 23 51 / 0.9);
  box-shadow: 0 16px 42px rgb(0 0 0 / 0.3);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.stage-note img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 11px;
}

.stage-note span {
  color: var(--cream-400);
  font-size: 0.68rem;
  line-height: 1.35;
}

.stage-note strong {
  display: block;
  color: var(--cream-100);
  font-size: 0.75rem;
}

.values-section {
  border-bottom: 1px solid var(--border);
  background: var(--ink-900);
}

.values-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(2.5rem, 8vw, 8rem);
}

.section-heading h2,
.section-copy h2,
.faq-intro h2,
.cta-inner h2 {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.values-copy > p,
.section-copy > p,
.faq-intro > p,
.cta-inner > p {
  max-width: 58ch;
  margin-bottom: 2rem;
  color: var(--cream-400);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
}

.value-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.value-cloud span {
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-button);
  color: var(--cream-200);
  font-size: 0.82rem;
  font-weight: 650;
}

.read-listen {
  background: var(--ink-900);
}

.read-listen-grid,
.parents-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.media-composition {
  position: relative;
  min-height: 680px;
}

.family-photo {
  position: absolute;
  inset: 4% 9% 10% 0;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-media);
}

.family-photo::after,
.parents-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: inherit;
  box-shadow: inset 0 -100px 80px rgb(4 7 18 / 0.22);
  content: "";
  pointer-events: none;
}

.family-photo img,
.parents-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-phone {
  position: absolute;
  z-index: 2;
  width: clamp(125px, 13vw, 164px);
  aspect-ratio: 1320 / 2868;
  overflow: hidden;
  border-width: 5px;
  border-radius: 27px;
}

.mini-phone-read {
  right: 4%;
  bottom: 0;
  transform: rotate(3deg);
}

.mini-phone-listen {
  top: 0;
  right: 0;
  transform: rotate(-4deg);
}

.section-copy h2 {
  max-width: 11ch;
}

.check-list {
  display: grid;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0.8rem 0 0.8rem 1.65rem;
  border-bottom: 1px solid var(--border);
  color: var(--cream-200);
  font-size: 0.93rem;
}

.check-list li::before {
  position: absolute;
  top: 1.15rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 4px rgb(245 203 92 / 0.12);
  content: "";
}

.inline-cta {
  color: var(--gold-300);
}

.features-section {
  border-block: 1px solid var(--border);
  background: var(--ink-850);
}

.section-heading.centered {
  max-width: 850px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.section-heading.centered h2 {
  max-width: 17ch;
  margin-inline: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.feature {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--ink-900);
}

.feature h3 {
  max-width: 14ch;
  margin-bottom: 0.85rem;
  font-size: clamp(1.5rem, 2.7vw, 2.25rem);
  font-weight: 730;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.feature p:not(.feature-index) {
  max-width: 46ch;
  margin-bottom: 0;
  color: var(--cream-400);
  font-size: 0.93rem;
}

.feature-index {
  margin-bottom: 2.5rem;
  color: var(--gold-300);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.feature-primary {
  grid-column: span 7;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.8fr);
  align-items: center;
  gap: 2rem;
  min-height: 440px;
  background: #111732;
}

.story-shelf {
  position: relative;
  display: flex;
  min-height: 270px;
  align-items: flex-end;
  justify-content: center;
  gap: 0.45rem;
  perspective: 800px;
}

.story-shelf::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  border-radius: 99px;
  background: var(--gold-500);
  box-shadow: 0 12px 30px rgb(0 0 0 / 0.32);
  content: "";
}

.book {
  display: flex;
  width: 64px;
  height: 220px;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: 1px solid rgb(255 255 255 / 0.15);
  border-radius: 8px 12px 8px 8px;
  color: var(--cream-100);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotateY(-6deg);
  writing-mode: vertical-rl;
}

.book-one {
  height: 210px;
  background: #4f397b;
}

.book-two {
  height: 250px;
  background: #176459;
}

.book-three {
  height: 228px;
  background: #9d6728;
}

.feature-audio {
  grid-column: span 5;
  background: #142c33;
}

.feature-language {
  grid-column: span 5;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  background: #222037;
}

.feature-calm {
  grid-column: span 7;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: center;
  gap: 2rem;
  background: #171d32;
}

.audio-wave {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  height: 95px;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.7rem);
}

.audio-wave i {
  display: block;
  width: 100%;
  height: var(--wave, 35%);
  border-radius: 999px;
  background: var(--sage-400);
  opacity: 0.82;
}

.audio-wave i:nth-child(2), .audio-wave i:nth-child(8) { --wave: 58%; }
.audio-wave i:nth-child(3), .audio-wave i:nth-child(7) { --wave: 82%; }
.audio-wave i:nth-child(4), .audio-wave i:nth-child(6) { --wave: 46%; }
.audio-wave i:nth-child(5) { --wave: 100%; background: var(--gold-400); }

.language-list {
  position: static;
  display: grid;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.language-list span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream-200);
  font-size: 0.86rem;
}

.language-list b {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--gold-300);
  font-size: 0.68rem;
}

.calm-mark {
  position: relative;
  width: min(210px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  border: 1px solid rgb(255 226 138 / 0.22);
  border-radius: 50%;
  background: rgb(245 203 92 / 0.04);
}

.calm-mark::before,
.calm-mark::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.calm-mark::before {
  inset: 23%;
  background: var(--gold-400);
}

.calm-mark::after {
  top: 15%;
  left: 36%;
  width: 48%;
  height: 48%;
  background: #171d32;
}

.calm-mark span::before,
.calm-mark span::after {
  position: absolute;
  z-index: 2;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-300);
  box-shadow: 32px -16px 0 -1px var(--gold-300), -22px 34px 0 -1px var(--gold-300);
  content: "";
}

.calm-mark span::before { top: 20%; right: 24%; }
.calm-mark span::after { bottom: 23%; left: 17%; }

.parents-section {
  background: var(--ink-900);
}

.parents-layout {
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
}

.parents-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-media);
}

.quiet-label {
  position: absolute;
  bottom: 1.3rem;
  left: 1.3rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: var(--radius-button);
  background: rgb(7 11 25 / 0.78);
  color: var(--cream-100);
  font-size: 0.75rem;
  font-weight: 700;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.quiet-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage-400);
  box-shadow: 0 0 0 4px rgb(143 196 183 / 0.14);
}

.parent-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 0.5rem;
}

.parent-points div {
  padding-top: 1rem;
  border-top: 1px solid var(--border-strong);
}

.parent-points strong,
.parent-points span {
  display: block;
}

.parent-points strong {
  margin-bottom: 0.35rem;
  color: var(--cream-100);
  font-size: 0.86rem;
}

.parent-points span {
  color: var(--cream-500);
  font-size: 0.75rem;
  line-height: 1.5;
}

.steps-section {
  border-block: 1px solid var(--border);
  background: var(--ink-850);
}

.steps-heading {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.steps-heading .section-kicker {
  align-self: start;
}

.steps-heading h2 {
  max-width: 15ch;
  margin: 0;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
}

.steps-list li {
  position: relative;
  min-width: 0;
  padding: 0 clamp(1.2rem, 3vw, 2.5rem);
}

.steps-list li:first-child { padding-left: 0; }
.steps-list li:last-child { padding-right: 0; }

.steps-list li + li {
  border-left: 1px solid var(--border);
}

.step-number {
  display: block;
  color: var(--gold-300);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.step-visual {
  position: relative;
  height: 145px;
  margin: 1.7rem 0;
}

.step-visual::after {
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 120px;
  height: 18px;
  border-radius: 50%;
  background: rgb(0 0 0 / 0.25);
  filter: blur(10px);
  content: "";
  transform: translateX(-50%);
}

.step-books {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.25rem;
}

.step-books i {
  position: relative;
  z-index: 1;
  display: block;
  width: 38px;
  height: 100px;
  border-radius: 5px;
  background: #51407e;
  transform: rotate(-4deg);
}

.step-books i:nth-child(2) { height: 122px; background: #176459; transform: rotate(1deg); }
.step-books i:nth-child(3) { height: 92px; background: #a36d2c; transform: rotate(5deg); }

.step-play i {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 105px;
  height: 105px;
  border: 1px solid rgb(255 226 138 / 0.28);
  border-radius: 50%;
  background: rgb(245 203 92 / 0.08);
  transform: translate(-50%, -50%);
}

.step-play i::after {
  position: absolute;
  top: 50%;
  left: 53%;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 21px solid var(--gold-300);
  content: "";
  transform: translate(-50%, -50%);
}

.step-moon i {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: var(--gold-400);
  transform: translate(-50%, -50%);
}

.step-moon i::after {
  position: absolute;
  top: -14px;
  left: 33px;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: var(--ink-850);
  content: "";
}

.steps-list h3 {
  margin-bottom: 0.55rem;
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

.steps-list p {
  max-width: 34ch;
  margin-bottom: 0;
  color: var(--cream-500);
  font-size: 0.88rem;
}

.faq-section {
  background: var(--ink-900);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 3rem);
}

.faq-intro h2 {
  max-width: 11ch;
}

.faq-list {
  border-top: 1px solid var(--border-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--border-strong);
}

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  color: var(--cream-100);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 720;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--gold-300);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 1fr;
  padding: 0 3rem 1.5rem 0;
  animation: faq-in 220ms ease both;
}

.faq-answer p {
  max-width: 61ch;
  margin: 0;
  color: var(--cream-400);
  font-size: 0.93rem;
}

@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.final-cta {
  overflow: hidden;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 15%, rgb(97 64 173 / 0.24), transparent 35%),
    var(--ink-950);
  isolation: isolate;
}

.cta-inner {
  display: flex;
  max-width: 820px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-icon {
  width: clamp(88px, 10vw, 116px);
  height: auto;
  margin-bottom: 2rem;
  border-radius: 25%;
  box-shadow: 0 20px 70px rgb(65 34 127 / 0.42);
}

.cta-inner h2 {
  max-width: 14ch;
  margin-inline: auto;
}

.cta-inner > p {
  max-width: 48ch;
  margin-inline: auto;
}

.cta-inner small {
  max-width: 58ch;
  margin-top: 1.2rem;
  color: var(--cream-500);
  font-size: 0.72rem;
  line-height: 1.55;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--ink-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding-block: 3.5rem;
}

.footer-brand p {
  max-width: 38ch;
  margin: 1rem 0 0;
  color: var(--cream-500);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1rem 2rem;
  color: var(--cream-400);
  font-size: 0.8rem;
}

.footer-links span {
  display: grid;
  gap: 0.1rem;
}

.footer-links em {
  color: var(--cream-500);
  font-size: 0.62rem;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border);
  color: var(--cream-500);
  font-size: 0.72rem;
}

.js.motion-ok [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js.motion-ok [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1023px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
    gap: 2.5rem;
  }

  .device-stage {
    min-height: 560px;
  }

  .phone-device {
    right: 0;
  }

  .media-composition {
    min-height: 600px;
  }

  .feature-primary {
    grid-column: span 8;
  }

  .feature-audio {
    grid-column: span 4;
  }

  .feature-language {
    grid-column: span 4;
  }

  .feature-calm {
    grid-column: span 8;
  }
}

@media (max-width: 900px) {
  .js .menu-toggle {
    position: relative;
    z-index: 3;
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--ink-850);
    color: var(--cream-100);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .site-nav {
    display: flex;
    flex: 1 0 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 1rem;
    padding-bottom: 0.8rem;
  }

  .nav-shell {
    flex-wrap: wrap;
  }

  .site-header:not(.is-open) .nav-shell {
    height: auto;
    min-height: var(--header-height);
  }

  .js .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 0.75rem;
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    background: #10152e;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
    visibility: hidden;
  }

  .js .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .js .site-nav > a:not(.nav-download) {
    padding: 0.9rem 0.8rem;
    border-bottom: 1px solid var(--border);
    color: var(--cream-200);
  }

  .js .site-nav > a::after {
    display: none;
  }

  .js .nav-download {
    margin-top: 0.75rem;
  }

  .js .menu-scrim {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: calc(100dvh - var(--header-height));
    padding: 0;
    border: 0;
    background: rgb(3 5 14 / 0.64);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .js .site-header.is-open .menu-scrim {
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
  }

  h1 {
    max-width: 11ch;
  }

  .device-stage {
    width: min(100%, 620px);
    min-height: 600px;
    margin-inline: auto;
  }

  .tablet-device {
    left: 3%;
  }

  .read-listen-grid,
  .parents-layout {
    grid-template-columns: 1fr;
  }

  .read-listen-grid .section-copy {
    max-width: 680px;
  }

  .media-composition {
    width: min(100%, 680px);
    min-height: 670px;
  }

  .family-photo {
    right: 15%;
  }

  .features-section .page-shell {
    width: min(100% - (var(--gutter) * 2), 760px);
  }

  .feature-primary,
  .feature-audio,
  .feature-language,
  .feature-calm {
    grid-column: 1 / -1;
  }

  .feature-primary {
    min-height: 390px;
  }

  .feature-audio,
  .feature-language {
    min-height: 300px;
  }

  .parents-layout {
    max-width: 760px;
  }

  .parents-visual {
    width: min(100%, 540px);
    aspect-ratio: 1;
  }

  .steps-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 767px) {
  :root {
    --radius-card: 20px;
    --radius-media: 22px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 3.25rem);
  }

  .hero-intro {
    max-width: 46ch;
  }

  .device-stage {
    min-height: 530px;
  }

  .tablet-device {
    top: 11%;
    width: 75%;
  }

  .phone-device {
    width: min(245px, 55vw);
  }

  .stage-note {
    bottom: 5%;
  }

  .values-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .media-composition {
    min-height: 560px;
  }

  .family-photo {
    inset: 6% 14% 10% 0;
  }

  .mini-phone {
    width: min(145px, 29vw);
  }

  .feature-primary,
  .feature-calm {
    grid-template-columns: 1fr;
  }

  .feature-primary {
    padding-bottom: 1.5rem;
  }

  .story-shelf {
    min-height: 230px;
  }

  .book { height: 175px; }
  .book-two { height: 205px; }
  .book-three { height: 188px; }

  .feature-calm {
    gap: 1.5rem;
  }

  .calm-mark {
    width: 165px;
  }

  .parent-points {
    grid-template-columns: 1fr;
  }

  .steps-list {
    grid-template-columns: 1fr;
  }

  .steps-list li,
  .steps-list li:first-child,
  .steps-list li:last-child {
    display: grid;
    grid-template-columns: 74px 1fr;
    padding: 1.5rem 0;
  }

  .steps-list li + li {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .step-number {
    grid-column: 1;
    grid-row: 1;
  }

  .step-visual {
    grid-column: 1;
    grid-row: 2 / span 2;
    width: 58px;
    height: 72px;
    margin: 0.7rem 0 0;
  }

  .step-visual::after {
    width: 56px;
  }

  .step-books i {
    width: 14px;
    height: 45px;
  }

  .step-books i:nth-child(2) { height: 57px; }
  .step-books i:nth-child(3) { height: 41px; }

  .step-play i,
  .step-moon i {
    width: 54px;
    height: 54px;
  }

  .step-play i::after {
    border-top-width: 8px;
    border-bottom-width: 8px;
    border-left-width: 12px;
  }

  .step-moon i::after {
    top: -8px;
    left: 19px;
    width: 52px;
    height: 52px;
  }

  .steps-list h3,
  .steps-list p {
    grid-column: 2;
  }

  .steps-list h3 {
    grid-row: 1;
    align-self: center;
    margin: 0;
  }

  .steps-list p {
    grid-row: 2;
    margin-top: 0.45rem;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .faq-intro {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 479px) {
  .brand {
    font-size: 0.78rem;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 3.65rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-strip > div {
    min-width: 0;
    padding-right: 0.9rem;
  }

  .trust-strip > div + div {
    padding-left: 0.9rem;
  }

  .device-stage {
    min-height: 455px;
  }

  .tablet-device {
    top: 9%;
    left: -4%;
    width: 77%;
  }

  .phone-device {
    right: -2%;
    width: min(220px, 58vw);
    border-width: 5px;
    border-radius: 34px;
  }

  .stage-note {
    right: auto;
    bottom: 2%;
    left: 0;
    max-width: 182px;
  }

  .stage-note img {
    width: 36px;
    height: 36px;
  }

  .media-composition {
    min-height: 460px;
  }

  .family-photo {
    inset: 5% 10% 12% 0;
  }

  .mini-phone {
    width: min(125px, 31vw);
    border-width: 4px;
    border-radius: 22px;
  }

  .mini-phone-listen {
    right: -2%;
  }

  .mini-phone-read {
    right: 2%;
  }

  .feature {
    min-height: 290px;
  }

  .feature-primary {
    min-height: 570px;
  }

  .feature-calm {
    min-height: 500px;
  }

  .language-list,
  .audio-wave {
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled,
  .site-header.is-open,
  .stage-note,
  .quiet-label {
    background: var(--ink-950);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media (forced-colors: active) {
  .app-store-button,
  .nav-download,
  .menu-toggle {
    border: 1px solid ButtonText;
  }
}
