:root {
  color-scheme: light;
  font-family: Inter, ui-rounded, "SF Pro Rounded", "Segoe UI", system-ui, sans-serif;
  font-synthesis: none;
  --ink: #171a35;
  --muted: #65687f;
  --purple: #6d5ef5;
  --purple-dark: #5545e7;
  --purple-deep: #302879;
  --pink: #ec4899;
  --orange: #ffb347;
  --green: #16a675;
  --blue: #38bdf8;
  --cream: #fff9f1;
  --lavender: #f5f2ff;
  --line: rgba(23, 26, 53, 0.11);
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-width: 300px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--purple-deep);
  border-radius: 10px;
  transform: translateY(-150%);
}

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

.section-shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(31, 25, 88, 0.05);
}

.nav-shell {
  display: flex;
  width: min(calc(100% - 40px), var(--shell));
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.8px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  background: linear-gradient(135deg, var(--purple), #8b5cf6 52%, var(--pink));
  border-radius: 13px;
  box-shadow: 0 7px 18px rgba(109, 94, 245, 0.24);
}

.brand-mark svg {
  width: 29px;
  fill: #fff;
}

.brand-mark circle {
  fill: var(--purple);
}

.brand-smile {
  fill: none;
  stroke: var(--purple);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 27px;
}

.primary-navigation a {
  color: #4f5268;
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.primary-navigation a:not(.nav-cta):hover {
  color: var(--purple);
}

.primary-navigation .nav-cta {
  padding: 11px 17px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: var(--lavender);
  border: 0;
  border-radius: 13px;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  border-radius: 99px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 150px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 179, 71, 0.15), transparent 25%),
    radial-gradient(circle at 88% 75%, rgba(236, 72, 153, 0.12), transparent 27%),
    linear-gradient(145deg, #f8f6ff 0%, #fffaf4 62%, #fff 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 95px;
  background: linear-gradient(to bottom, transparent, #fff);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(440px, 0.92fr);
  gap: clamp(45px, 7vw, 95px);
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--purple);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.75px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.eyebrow a {
  color: inherit;
  text-underline-offset: 3px;
}

.eyebrow i {
  color: #aaa6bd;
  font-style: normal;
}

.eyebrow span {
  width: 25px;
  height: 2px;
  background: var(--purple);
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 6vw, 78px);
  line-height: 0.99;
  letter-spacing: -4.3px;
}

.hero h1 em {
  color: var(--purple);
  font-style: normal;
}

.hero-lede {
  max-width: 610px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), #8b5cf6 55%, var(--pink));
  box-shadow: 0 12px 26px rgba(109, 94, 245, 0.23);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--line);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 27px;
  color: #707287;
  font-size: 12px;
  font-weight: 700;
}

.hero-notes span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.dot.purple { background: var(--purple); }
.dot.orange { background: var(--orange); }
.dot.pink { background: var(--pink); }

.hero-visual {
  position: relative;
  min-height: 555px;
}

.journey-card {
  position: absolute;
  top: 0;
  right: 10px;
  width: min(100%, 435px);
  padding: 25px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(109, 94, 245, 0.12);
  border-radius: 31px;
  box-shadow: 0 30px 70px rgba(48, 40, 121, 0.16);
  transform: rotate(1.2deg);
}

.journey-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.journey-topline > div:first-child {
  display: grid;
  gap: 3px;
}

.mini-label,
.journey-item span {
  color: #85879a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.3px;
}

.journey-topline strong {
  font-size: 20px;
  letter-spacing: -0.4px;
}

.avatar {
  position: relative;
  width: 50px;
  height: 50px;
  overflow: hidden;
  background: linear-gradient(145deg, #d8d0ff, #ffe0ef);
  border: 3px solid #fff;
  border-radius: 18px;
  box-shadow: 0 6px 14px rgba(56, 46, 140, 0.15);
}

.avatar-face {
  position: absolute;
  top: 14px;
  left: 10px;
  width: 30px;
  height: 32px;
  background: #f2c7a2;
  border-radius: 44% 44% 48% 48%;
}

.avatar-hair {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 9px;
  width: 33px;
  height: 19px;
  background: #3a2417;
  border-radius: 18px 18px 7px 9px;
  transform: rotate(-4deg);
}

.avatar-face i {
  position: absolute;
  top: 12px;
  width: 3px;
  height: 3px;
  background: #24243b;
  border-radius: 50%;
}

.avatar-face i:first-child { left: 7px; }
.avatar-face i:nth-child(2) { right: 7px; }
.avatar-face b {
  position: absolute;
  bottom: 7px;
  left: 11px;
  width: 9px;
  height: 4px;
  border-bottom: 1.5px solid #a85152;
  border-radius: 50%;
}

.progress-track {
  height: 7px;
  margin: 19px 0 18px;
  overflow: hidden;
  background: #efedf8;
  border-radius: 99px;
}

.progress-track span {
  display: block;
  width: 46%;
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  border-radius: inherit;
}

.journey-list {
  display: grid;
  gap: 9px;
}

.journey-item {
  display: grid;
  grid-template-columns: 47px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 68px;
  padding: 10px 13px 10px 10px;
  background: #fafafe;
  border: 1px solid transparent;
  border-radius: 18px;
}

.journey-item.active {
  background: #f3f0ff;
  border-color: rgba(109, 94, 245, 0.22);
  box-shadow: 0 8px 20px rgba(109, 94, 245, 0.09);
}

.journey-item.complete {
  opacity: 0.72;
}

.journey-item > div:nth-child(2) {
  display: grid;
  gap: 3px;
}

.journey-item strong {
  font-size: 13px;
}

.item-icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 14px;
}

.item-icon svg,
.feature-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.book-icon { color: #6b59d9; background: #ebe7ff; }
.quiz-icon { color: #d43f86; background: #ffe5f2; }
.move-icon { color: #c77800; background: #fff0d5; }
.family-icon { color: #0d9772; background: #dcf8ef; }

.item-check {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 13px;
}

.item-arrow {
  color: var(--purple);
  font-size: 20px;
}

.item-time {
  color: #8c8ea1;
  font-size: 10px;
}

.floating-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: 0 17px 36px rgba(42, 35, 104, 0.14);
}

.floating-badge > span {
  font-size: 23px;
}

.floating-badge div {
  display: grid;
}

.floating-badge strong {
  font-size: 12px;
}

.floating-badge small {
  margin-top: 2px;
  color: #85879a;
  font-size: 9px;
  font-weight: 700;
}

.streak-badge {
  top: 115px;
  left: -32px;
  transform: rotate(-4deg);
}

.family-badge {
  right: -32px;
  bottom: 54px;
  transform: rotate(2deg);
}

.spark {
  position: absolute;
  z-index: 3;
  color: var(--orange);
  font-size: 31px;
}

.spark-a { top: -20px; left: 5px; transform: rotate(15deg); }
.spark-b { right: -4px; bottom: 9px; color: var(--pink); font-size: 22px; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orb-one {
  top: 100px;
  right: -120px;
  width: 340px;
  height: 340px;
  background: rgba(109, 94, 245, 0.06);
}

.orb-two {
  bottom: 45px;
  left: -105px;
  width: 230px;
  height: 230px;
  background: rgba(255, 179, 71, 0.08);
}

.manifesto {
  padding: 105px 0 96px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 80px;
  align-items: start;
}

.manifesto h2,
.section-heading h2,
.journey-heading h2,
.family-copy h2,
.project-grid h2,
.faq-layout h2,
.closing-card h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 59px);
  line-height: 1.07;
  letter-spacing: -2.6px;
}

.manifesto h2 span,
.family-copy h2 span {
  color: var(--purple);
}

.manifesto-grid > div p,
.project-copy > p {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.project-copy > p a {
  color: var(--purple-dark);
  font-weight: 800;
  text-underline-offset: 3px;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values-row article {
  min-height: 165px;
  padding: 26px 25px 24px 0;
}

.values-row article + article {
  padding-left: 25px;
  border-left: 1px solid var(--line);
}

.values-row strong {
  display: block;
  margin-bottom: 9px;
  font-size: 20px;
}

.values-row span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.experience-section {
  padding: 105px 0 115px;
  background: #f8f7fc;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 50px;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  min-height: 370px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(23, 26, 53, 0.08);
  border-radius: 28px;
  box-shadow: 0 13px 35px rgba(33, 29, 78, 0.05);
}

.feature-copy {
  position: relative;
  z-index: 2;
  padding: 30px 10px 30px 30px;
}

.feature-number {
  position: absolute;
  top: 26px;
  right: 0;
  color: #d6d4df;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.3px;
}

.feature-icon {
  display: grid;
  width: 49px;
  height: 49px;
  margin-bottom: 40px;
  place-items: center;
  border-radius: 15px;
}

.feature-card h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: -0.8px;
}

.feature-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.feature-learning .feature-icon { color: var(--purple); background: #eeebff; }
.feature-movement .feature-icon { color: #be7100; background: #fff0d7; }
.feature-expression .feature-icon { color: #d83c83; background: #ffe5f1; }
.feature-family .feature-icon { color: #0a936e; background: #ddf7ef; }

.lesson-preview,
.move-preview,
.avatar-preview,
.family-preview {
  position: relative;
  align-self: end;
  min-height: 285px;
  margin: 40px -16px -18px 10px;
  padding: 25px 22px;
  border-radius: 27px;
  transform: rotate(4deg);
}

.lesson-preview {
  display: flex;
  flex-direction: column;
  color: #fff;
  background: linear-gradient(155deg, #342b80, #7160d7);
}

.lesson-preview span,
.parent-card small {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.2px;
  opacity: 0.72;
}

.lesson-preview strong {
  margin-top: 13px;
  font-size: 17px;
  line-height: 1.25;
}

.moon-row {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  margin: 36px 0 auto;
}

.moon-row i {
  width: 25px;
  height: 25px;
  background: #fff2bc;
  border-radius: 50%;
  box-shadow: inset -8px 0 #584cae;
}

.moon-row i:nth-child(1) { box-shadow: inset -18px 0 #584cae; }
.moon-row i:nth-child(2) { box-shadow: inset -12px 0 #584cae; }
.moon-row i:nth-child(4) { box-shadow: inset 8px 0 #584cae; }
.moon-row i:nth-child(5) { box-shadow: inset 17px 0 #584cae; }

.lesson-progress {
  height: 5px;
  margin-top: 31px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 99px;
}

.lesson-progress b {
  display: block;
  width: 58%;
  height: 100%;
  background: #fff;
  border-radius: inherit;
}

.move-preview {
  display: grid;
  place-items: center;
  background: linear-gradient(155deg, #fff0ce, #ffd37c);
}

.move-ring {
  display: grid;
  width: 135px;
  height: 135px;
  place-content: center;
  color: #7c4b00;
  background: rgba(255, 255, 255, 0.7);
  border: 9px solid rgba(255, 255, 255, 0.45);
  border-top-color: #f7a719;
  border-radius: 50%;
  text-align: center;
}

.move-ring strong {
  font-size: 35px;
  line-height: 1;
}

.move-ring span {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 800;
}

.movement-pill {
  padding: 8px 11px;
  color: #7c4b00;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 99px;
  font-size: 9px;
  font-weight: 850;
}

.avatar-preview {
  display: grid;
  place-items: center;
  background: linear-gradient(155deg, #ffe1ef, #d9d1ff);
}

.preview-avatar {
  position: relative;
  width: 130px;
  height: 180px;
}

.preview-face {
  position: absolute;
  z-index: 2;
  top: 35px;
  left: 26px;
  width: 80px;
  height: 91px;
  background: #f2c7a2;
  border-radius: 45% 45% 48% 48%;
}

.preview-hair {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 21px;
  width: 91px;
  height: 57px;
  background: #3a2417;
  border-radius: 50px 50px 16px 20px;
  transform: rotate(-4deg);
}

.preview-face i {
  position: absolute;
  top: 38px;
  width: 7px;
  height: 7px;
  background: #24243b;
  border-radius: 50%;
}

.preview-face i:first-child { left: 21px; }
.preview-face i:nth-child(2) { right: 21px; }
.preview-face b {
  position: absolute;
  bottom: 20px;
  left: 30px;
  width: 21px;
  height: 10px;
  border-bottom: 3px solid #b25b5d;
  border-radius: 50%;
}

.preview-shirt {
  position: absolute;
  bottom: 0;
  left: 12px;
  width: 108px;
  height: 74px;
  background: var(--purple);
  border-radius: 43px 43px 12px 12px;
}

.swatches {
  display: flex;
  gap: 7px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 99px;
}

.swatches i {
  width: 16px;
  height: 16px;
  background: var(--purple);
  border-radius: 50%;
}

.swatches i:nth-child(2) { background: var(--pink); }
.swatches i:nth-child(3) { background: var(--green); }
.swatches i:nth-child(4) { background: var(--orange); }

.family-preview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(155deg, #dbf7ee, #b5ebdc);
}

.family-message {
  display: grid;
  gap: 5px;
  padding: 18px;
  color: #236451;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 18px 18px 18px 5px;
  font-size: 11px;
  line-height: 1.4;
  box-shadow: 0 9px 25px rgba(16, 113, 86, 0.11);
}

.family-message b {
  color: #0e7659;
  font-size: 13px;
}

.family-reaction {
  align-self: flex-end;
  margin-top: 13px;
  padding: 10px 13px;
  color: #2a6656;
  background: rgba(255, 255, 255, 0.68);
  border-radius: 15px 15px 5px 15px;
  font-size: 11px;
}

.journey-section {
  padding: 115px 0;
}

.journey-layout {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 100px;
  align-items: start;
}

.journey-heading {
  position: sticky;
  top: 120px;
}

.journey-heading > p:last-child {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.journey-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-steps li {
  display: grid;
  grid-template-columns: 53px 1fr;
  gap: 24px;
  padding: 0 0 37px;
}

.journey-steps li:not(:last-child) {
  position: relative;
}

.journey-steps li:not(:last-child)::before {
  position: absolute;
  top: 53px;
  bottom: 0;
  left: 26px;
  width: 1px;
  background: linear-gradient(var(--purple), #e4e0f5);
  content: "";
}

.journey-steps li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 53px;
  height: 53px;
  place-items: center;
  color: var(--purple);
  background: #f0edff;
  border: 1px solid #ded8ff;
  border-radius: 17px;
  font-weight: 900;
}

.journey-steps div {
  padding: 5px 0 33px;
  border-bottom: 1px solid var(--line);
}

.journey-steps strong {
  font-size: 21px;
  letter-spacing: -0.5px;
}

.journey-steps p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.family-section {
  padding: 50px 0 115px;
}

.family-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 80px;
  min-height: 610px;
  align-items: center;
  overflow: hidden;
  padding: 75px 80px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(76, 225, 194, 0.16), transparent 30%),
    linear-gradient(140deg, #111827, #162d46 53%, #155e75);
  border-radius: 38px;
  box-shadow: 0 30px 70px rgba(15, 42, 74, 0.18);
}

.family-panel::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 330px;
  height: 330px;
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.section-kicker.light {
  color: #70e1ca;
}

.family-copy h2 span {
  color: #70e1ca;
}

.family-copy > p:not(.section-kicker) {
  max-width: 610px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 25px;
  margin-top: 38px;
}

.safety-grid > div {
  display: flex;
  gap: 11px;
}

.safety-grid i {
  display: grid;
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  place-items: center;
  color: #0f564b;
  background: #70e1ca;
  border-radius: 8px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.safety-grid span {
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.45;
}

.safety-grid strong {
  color: #fff;
  font-size: 13px;
}

.parent-card {
  position: relative;
  z-index: 2;
  padding: 25px;
  color: var(--ink);
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.2);
  transform: rotate(1.4deg);
}

.parent-card-top {
  display: flex;
  justify-content: space-between;
  color: #888b9e;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.parent-card-top i {
  font-style: normal;
  letter-spacing: 2px;
}

.parent-greeting {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 24px;
}

.parent-avatar {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--purple), var(--pink));
  border-radius: 17px;
  font-weight: 900;
}

.parent-greeting > div:last-child {
  display: grid;
  gap: 4px;
}

.parent-greeting small,
.parent-win small {
  color: #9496a7;
}

.parent-greeting strong {
  font-size: 18px;
}

.parent-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 22px;
}

.parent-stats div {
  display: grid;
  gap: 4px;
  padding: 15px 7px;
  background: #f5f4fa;
  border-radius: 14px;
  text-align: center;
}

.parent-stats strong {
  font-size: 20px;
}

.parent-stats span {
  color: #86889a;
  font-size: 8px;
  font-weight: 750;
}

.parent-win {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  padding: 14px;
  background: #fff8e9;
  border: 1px solid #ffedc4;
  border-radius: 16px;
}

.parent-win > span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: #bd7200;
  background: #ffe3a5;
  border-radius: 13px;
}

.parent-win div {
  display: grid;
  gap: 3px;
}

.parent-win strong {
  font-size: 12px;
}

.parent-card button {
  width: 100%;
  margin-top: 16px;
  padding: 13px;
  color: #fff;
  background: var(--purple);
  border: 0;
  border-radius: 14px;
  font: inherit;
  font-size: 11px;
  font-weight: 850;
}

.project-section {
  padding: 108px 0;
  background: var(--cream);
}

.project-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 100px;
}

.project-status {
  display: flex;
  max-width: 390px;
  gap: 12px;
  align-items: center;
  margin-top: 29px;
  padding: 14px 17px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(109, 94, 245, 0.13);
  border-radius: 15px;
}

.status-pulse {
  position: relative;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
}

.status-pulse::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(22, 166, 117, 0.38);
  border-radius: 50%;
  content: "";
}

.project-status div {
  display: grid;
  gap: 3px;
}

.project-status strong {
  font-size: 12px;
}

.project-status small {
  color: var(--muted);
  font-size: 10px;
}

.faq-section {
  padding: 110px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  gap: 105px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 45px 24px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 820;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 0;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: var(--purple);
  background: #f0edff;
  border-radius: 9px;
  content: "+";
  font-size: 20px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -6px 45px 24px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.closing-section {
  padding: 15px 0 100px;
}

.closing-card {
  position: relative;
  overflow: hidden;
  padding: 80px 25px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 179, 71, 0.23), transparent 25%),
    radial-gradient(circle at 90% 90%, rgba(236, 72, 153, 0.25), transparent 27%),
    linear-gradient(135deg, #5b4be2, #8b5cf6 55%, #cf438e);
  border-radius: 38px;
  box-shadow: 0 27px 60px rgba(109, 94, 245, 0.21);
  text-align: center;
}

.closing-card::before,
.closing-card::after {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.closing-card::before { top: -110px; right: -50px; }
.closing-card::after { bottom: -140px; left: -45px; }

.closing-card h2 {
  position: relative;
  z-index: 1;
}

.closing-card > p:not(.section-kicker) {
  position: relative;
  z-index: 1;
  max-width: 610px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.7;
}

.closing-card .section-kicker {
  color: #ffe0ac;
}

.closing-star {
  display: block;
  margin-bottom: 16px;
  color: #ffe1a8;
  font-size: 27px;
}

.button-light {
  position: relative;
  z-index: 1;
  margin-top: 29px;
  color: var(--purple-deep);
  background: #fff;
}

.site-footer {
  padding: 55px 0 40px;
  background: #111526;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 70px;
  align-items: end;
}

.footer-brand {
  color: #fff;
}

.footer-grid > div:first-child > p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.footer-meta {
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
  text-align: right;
}

.footer-meta p {
  margin: 4px 0;
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
  text-underline-offset: 3px;
}

@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr 420px;
    gap: 30px;
  }

  .hero h1 {
    font-size: 57px;
  }

  .streak-badge { left: -10px; }
  .family-badge { right: -5px; }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    padding-right: 30px;
  }

  .feature-number {
    right: 27px;
  }

  .lesson-preview,
  .move-preview,
  .avatar-preview,
  .family-preview {
    min-height: 245px;
    margin: 0 25px -55px;
    transform: rotate(2deg);
  }

  .family-panel {
    gap: 45px;
    padding: 65px 50px;
  }
}

@media (max-width: 820px) {
  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .primary-navigation {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 16px 20px 28px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 25px 40px rgba(25, 21, 66, 0.1);
    transform: translateY(-140%);
    transition: transform 220ms ease;
  }

  .primary-navigation.open {
    transform: translateY(0);
  }

  .primary-navigation a {
    padding: 14px 5px;
  }

  .primary-navigation .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    padding-top: 126px;
  }

  .hero-grid,
  .manifesto-grid,
  .section-heading,
  .journey-layout,
  .family-panel,
  .project-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .hero-notes {
    justify-content: center;
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-visual {
    width: min(100%, 480px);
    margin: 20px auto 0;
  }

  .journey-card {
    right: 22px;
  }

  .manifesto-grid,
  .section-heading,
  .journey-layout,
  .project-grid,
  .faq-layout {
    gap: 35px;
  }

  .values-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-row article:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .values-row article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .journey-heading {
    position: static;
  }

  .family-panel {
    gap: 60px;
  }

  .parent-card {
    width: min(100%, 430px);
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 590px) {
  .section-shell,
  .nav-shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .nav-shell {
    min-height: 68px;
  }

  .primary-navigation {
    top: 68px;
  }

  .brand {
    font-size: 23px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 60px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 57px);
    letter-spacing: -3px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-notes {
    display: none;
  }

  .eyebrow {
    flex-wrap: wrap;
    column-gap: 6px;
    line-height: 1.5;
  }

  .eyebrow > span {
    display: none;
  }

  .hero-visual {
    min-height: 510px;
    margin-top: 18px;
  }

  .journey-card {
    right: 0;
    left: 0;
    width: 100%;
    padding: 20px 16px;
    border-radius: 25px;
    transform: none;
  }

  .journey-item {
    grid-template-columns: 42px 1fr auto;
    gap: 9px;
    min-height: 62px;
    padding-right: 10px;
  }

  .item-icon {
    width: 41px;
    height: 41px;
  }

  .journey-item strong {
    font-size: 11px;
  }

  .streak-badge {
    top: auto;
    bottom: 5px;
    left: 1px;
  }

  .family-badge {
    right: 0;
    bottom: 62px;
  }

  .spark {
    display: none;
  }

  .manifesto,
  .experience-section,
  .journey-section,
  .project-section,
  .faq-section {
    padding: 78px 0;
  }

  .manifesto h2,
  .section-heading h2,
  .journey-heading h2,
  .family-copy h2,
  .project-grid h2,
  .faq-layout h2,
  .closing-card h2 {
    font-size: 38px;
    letter-spacing: -1.8px;
  }

  .values-row {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .values-row article,
  .values-row article + article,
  .values-row article:nth-child(3) {
    min-height: 0;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .values-row article:first-child {
    border-top: 0;
  }

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

  .feature-card {
    min-height: 535px;
  }

  .feature-copy {
    padding: 25px;
  }

  .feature-icon {
    margin-bottom: 28px;
  }

  .lesson-preview,
  .move-preview,
  .avatar-preview,
  .family-preview {
    margin-inline: 18px;
  }

  .journey-steps li {
    grid-template-columns: 45px 1fr;
    gap: 16px;
  }

  .journey-steps li > span {
    width: 45px;
    height: 45px;
    border-radius: 14px;
  }

  .journey-steps li:not(:last-child)::before {
    top: 45px;
    left: 22px;
  }

  .family-section {
    padding: 20px 0 80px;
  }

  .family-panel {
    width: 100%;
    padding: 60px 20px;
    border-radius: 0;
  }

  .safety-grid {
    grid-template-columns: 1fr;
  }

  .parent-card {
    padding: 19px;
  }

  .closing-section {
    padding-bottom: 70px;
  }

  .closing-card {
    width: 100%;
    padding: 65px 20px;
    border-radius: 0;
  }

  .closing-card .button {
    width: auto;
  }

  .footer-links {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
