:root {
  color-scheme: light;
  --ink: #201a2b;
  --muted: #6d6479;
  --paper: #faf6f1;
  --surface: #fffdf9;
  --mint: #5ecfc5;
  --mint-soft: #dff8f4;
  --sky: #9fd4ff;
  --navy: #071733;
  --lilac: #7b61c8;
  --lilac-dark: #49337d;
  --lavender: #ebe4fb;
  --periwinkle: #dfe9ff;
  --blush: #f8e3e6;
  --honey: #f4c665;
  --sage: #dce9dc;
  --line: #ded7e8;
  --soft-shadow: rgba(73, 51, 125, 0.13);
  --shell-max: 1280px;
  --shell-pad: max(clamp(20px, 6vw, 92px), calc((100vw - var(--shell-max)) / 2));
  --header-pad: max(clamp(20px, 5vw, 72px), calc((100vw - var(--shell-max)) / 2));
}

* {
  box-sizing: border-box;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: #070a4d;
  color: #fff;
  transform: translateY(-160%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

.download-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(94, 207, 197, 0.72);
  outline-offset: 4px;
}

p {
  color: var(--muted);
  line-height: 1.6;
}

ul,
ol {
  line-height: 1.55;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  min-height: 72px;
  padding: 8px var(--header-pad);
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand-wordmark,
.footer-wordmark {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-wordmark {
  height: auto;
  width: clamp(148px, 13vw, 184px);
}

.footer-wordmark {
  height: auto;
  width: 166px;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
}

.header-cta,
.primary-button {
  color: white;
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(7, 23, 51, 0.18);
}

.secondary-button {
  color: var(--lilac-dark);
  background: var(--surface);
  border: 1px solid var(--line);
}

.header-cta,
.primary-button,
.secondary-button,
.contact-text-link {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.header-cta {
  white-space: nowrap;
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.secondary-button:hover {
  border-color: rgba(94, 207, 197, 0.72);
  box-shadow: 0 12px 30px rgba(94, 207, 197, 0.16);
}

main {
  overflow: hidden;
}

section[id],
.story-banner {
  scroll-margin-top: 92px;
}

.download-redirect {
  display: grid;
  justify-items: start;
  max-width: 620px;
  padding: clamp(28px, 6vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 28px 78px rgba(73, 51, 125, 0.08);
}

.download-redirect h1 {
  margin: 0;
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: 0;
}

.download-redirect p:not(.eyebrow) {
  max-width: 560px;
  font-size: 1.1rem;
}

.download-redirect .primary-button {
  margin: 14px 0 20px;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 690px;
  padding: 64px var(--shell-pad) 70px;
  overflow: hidden;
  background: var(--surface);
  isolation: isolate;
}

.motion-ready .reveal-target {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.motion-ready .reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  width: 55%;
  min-width: 540px;
  content: "";
  background: var(--mint-soft);
  -webkit-clip-path: ellipse(76% 94% at 100% 50%);
  clip-path: ellipse(76% 94% at 100% 50%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 1px;
  content: "";
  background: var(--line);
}

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

.hero h1,
.section-heading h2,
.example-intro h2,
.pricing-heading h2,
.download-section h2,
.faq-section h2 {
  margin: 0;
  max-width: 900px;
  font-size: 5rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-text {
  max-width: 690px;
  margin: 24px 0 0;
  color: #574c68;
  font-size: 1.22rem;
}

.hero-scene {
  position: absolute;
  top: 42px;
  right: var(--shell-pad);
  bottom: 0;
  z-index: 1;
  width: 54vw;
  max-width: 660px;
  min-width: 520px;
  pointer-events: none;
}

.hero-character {
  position: absolute;
  right: 42px;
  bottom: -30px;
  width: 42vw;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 26px 34px rgba(7, 23, 51, 0.16));
}

.flow-card {
  position: absolute;
  display: grid;
  gap: 8px;
  width: 230px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.76);
  box-shadow: 0 24px 60px rgba(7, 23, 51, 0.12);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.flow-card span {
  color: #5364ed;
  font-size: 0.76rem;
  font-weight: 850;
}

.flow-card p,
.flow-card strong,
.flow-card small {
  margin: 0;
  color: var(--navy);
}

.flow-card p {
  font-size: 1rem;
  line-height: 1.35;
}

.flow-card strong {
  font-size: 1.12rem;
  line-height: 1.15;
}

.flow-card small {
  color: var(--muted);
  font-weight: 750;
}

.input-card {
  top: 110px;
  left: 150px;
}

.output-card-mini {
  top: 76px;
  right: 26px;
  background: rgba(255, 253, 249, 0.66);
}

.insight-card-mini {
  right: 10px;
  bottom: 112px;
  width: 250px;
  background: rgba(255, 255, 255, 0.7);
}

.mini-lines {
  display: grid;
  gap: 6px;
  margin-top: 4px;
}

.mini-lines i {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: #9eb8ff;
}

.mini-lines i:nth-child(1) {
  width: 80%;
}

.mini-lines i:nth-child(2) {
  width: 64%;
}

.mini-lines i:nth-child(3) {
  width: 48%;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lilac-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span,
.download-trust-row span,
.story-meta-row span,
.phrase-list span,
.moment-grid span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--lilac-dark);
  background: var(--surface);
  font-weight: 750;
}

.section,
.moment-section,
.faq-section {
  padding: 72px var(--shell-pad);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.section-heading h2,
.example-intro h2,
.pricing-heading h2,
.download-section h2,
.faq-section h2 {
  font-size: 3.6rem;
}

.section-heading > p:not(.eyebrow),
.example-intro p,
.pricing-heading p,
.download-copy p {
  max-width: 720px;
  font-size: 1.1rem;
}

.moment-section {
  border-bottom: 1px solid var(--line);
  background: #f6f1ea;
}

.moment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 980px;
}

.moment-grid span:nth-child(2n) {
  background: #e7f0ff;
}

.moment-grid span:nth-child(3n) {
  background: var(--blush);
}

.moment-grid span:nth-child(5n) {
  background: var(--mint-soft);
}

.story-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  padding: clamp(42px, 6vw, 76px) var(--shell-pad);
  overflow: hidden;
  color: white;
  background:
    linear-gradient(135deg, #071733 0%, #263d69 48%, #2d6f73 100%);
}

.story-banner::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 253, 249, 0.1), transparent 62%);
  pointer-events: none;
}

.story-banner::after {
  position: absolute;
  right: var(--shell-pad);
  bottom: 0;
  left: var(--shell-pad);
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.18);
}

.banner-copy,
.banner-visual {
  position: relative;
  z-index: 1;
}

.banner-copy {
  max-width: 780px;
}

.story-banner .eyebrow,
.story-banner p {
  color: rgba(255, 255, 255, 0.78);
}

.story-banner h2 {
  max-width: 840px;
  margin: 0;
  color: white;
  font-size: clamp(2.4rem, 5.2vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.story-banner p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 1.13rem;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.story-banner .primary-button {
  color: var(--navy);
  background: white;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.story-banner .secondary-button {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
}

.banner-visual {
  min-height: 470px;
}

.banner-phone {
  position: absolute;
  right: clamp(12px, 4vw, 54px);
  bottom: -128px;
  width: 310px;
  max-width: 48vw;
  height: 674px;
  max-height: 78vw;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.84);
  border-radius: 34px;
  background: #f9f2ef;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
  transform: rotate(4deg);
}

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

.banner-note {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 253, 249, 0.86);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.banner-note span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--honey);
  font-weight: 900;
}

.banner-note strong {
  white-space: nowrap;
}

.note-one {
  top: 64px;
  right: 246px;
}

.note-two {
  top: 192px;
  right: 18px;
}

.note-three {
  right: 262px;
  bottom: 92px;
}

.value-output-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-grid article,
.plan-card,
.pack-card,
.situation-card,
.story-paper,
.output-card,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.trust-grid article {
  padding: 26px;
}

.value-flow {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) 74px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.moment-input-card,
.value-output-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.moment-input-card {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px;
  background: #f6f1ea;
  box-shadow: 0 20px 58px rgba(73, 51, 125, 0.07);
}

.moment-input-card span,
.value-output-card span {
  color: var(--lilac-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.moment-input-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
}

.moment-input-card small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.flow-arrow {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
}

.flow-arrow::before {
  position: absolute;
  width: 2px;
  height: 84%;
  content: "";
  background: linear-gradient(var(--mint), var(--lilac));
  border-radius: 999px;
  opacity: 0.35;
}

.flow-arrow i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 8px rgba(94, 207, 197, 0.15);
}

.flow-arrow i:nth-child(1) {
  align-self: start;
  margin-top: 26px;
}

.flow-arrow i:nth-child(3) {
  align-self: end;
  margin-bottom: 26px;
}

.value-output-card {
  position: relative;
  min-height: 260px;
  padding: 26px;
  overflow: hidden;
}

.value-output-card::after {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 70px;
  height: 8px;
  content: "";
  background: rgba(94, 207, 197, 0.34);
  border-radius: 999px;
}

.value-output-card h3 {
  max-width: 280px;
}

.value-output-card p {
  margin-bottom: 0;
  font-size: 1rem;
}

.value-output-card small {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 10px;
  border: 1px solid rgba(73, 51, 125, 0.16);
  border-radius: 999px;
  color: var(--lilac-dark);
  background: rgba(255, 253, 249, 0.7);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.25;
}

.story-output {
  background: var(--mint-soft);
}

.parent-insight-output {
  border-color: rgba(123, 97, 200, 0.44);
  background: var(--lavender);
  box-shadow: 0 24px 64px rgba(73, 51, 125, 0.12);
}

.words-output {
  background: var(--blush);
}

h3 {
  margin: 20px 0 8px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.example-showcase {
  padding: 80px var(--shell-pad);
  background: var(--surface);
}

.example-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.5fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 18px;
}

.situation-card {
  align-self: start;
  padding: 22px;
  background: var(--paper);
}

.situation-card span,
.output-card span,
.pack-card span {
  color: var(--lilac-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.situation-card p {
  margin: 10px 0 0;
}

.example-value-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
  margin: 0;
}

.example-value-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--lilac-dark);
  background: var(--lavender);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.example-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.76fr);
  grid-template-areas:
    "summary parent-label"
    "story insight";
  gap: 22px;
  align-items: start;
}

.example-value-strip {
  grid-area: summary;
}

.story-output-stack {
  grid-area: story;
  display: grid;
  gap: 18px;
}

.story-paper,
.output-card {
  padding: clamp(22px, 4vw, 36px);
}

.feature-story {
  position: relative;
  box-shadow: 0 28px 78px rgba(73, 51, 125, 0.08);
}

.feature-story::after {
  position: absolute;
  right: 28px;
  bottom: -10px;
  width: 112px;
  height: 20px;
  content: "";
  background: var(--mint);
  border-radius: 999px;
  opacity: 0.22;
  transform: rotate(-2deg);
}

.story-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.story-meta-row span {
  font-size: 0.82rem;
  background: var(--lavender);
}

.story-paper h2 {
  margin: 0 0 20px;
  font-size: clamp(2.35rem, 3.6vw, 3rem);
  line-height: 1.02;
}

.story-paper p {
  max-width: 760px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 1.05rem;
  hyphens: none;
  text-align: left;
}

.full-story {
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
}

.full-story summary {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: white;
  background: var(--lilac);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.full-story summary::-webkit-details-marker {
  display: none;
}

.full-story[open] summary {
  margin-bottom: 20px;
  color: var(--lilac-dark);
  background: var(--lavender);
}

.insight-stack {
  grid-area: insight;
  display: grid;
  gap: 12px;
}

.parent-output-label {
  grid-area: parent-label;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 12px 16px;
  border: 1px solid rgba(73, 51, 125, 0.16);
  border-radius: 8px;
  background: #f5efff;
}

.parent-output-label span {
  color: var(--lilac-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.parent-output-label strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.output-card h3 {
  margin-top: 10px;
}

.output-card p {
  margin-bottom: 0;
}

.parent-card {
  background: var(--lavender);
}

.parent-card p,
.parent-card h3 {
  color: var(--lilac-dark);
}

.real-insight-card {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 3vw, 32px);
}

.real-insight-card h3 {
  margin-bottom: 2px;
}

.insight-field {
  padding: 13px 14px;
  border: 1px solid rgba(73, 51, 125, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.68);
}

.insight-field strong {
  display: block;
  color: var(--lilac-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.insight-field p {
  margin: 8px 0 0;
  font-size: 0.98rem;
}

.insight-phrases {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.insight-phrases span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--lilac-dark);
  background: var(--surface);
  font-size: 0.92rem;
  font-weight: 750;
}

.question-card {
  background: var(--periwinkle);
}

.question-card ol {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 16px 0 0;
  color: #263d69;
  font-weight: 700;
}

.words-card {
  background: var(--blush);
}

.child-tools-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 14px;
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.child-tools-grid .output-card {
  padding: 18px;
  box-shadow: none;
}

.child-tools-grid .output-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.child-tools-grid .question-card ol {
  gap: 8px;
  margin-top: 12px;
  font-size: 0.94rem;
}

.child-tools-grid .phrase-list {
  gap: 7px;
  margin-top: 12px;
}

.child-tools-grid .phrase-list span {
  padding: 8px 10px;
  font-size: 0.88rem;
}

.phrase-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.phrase-list span {
  background: var(--surface);
}

.trust-section {
  padding: 78px var(--shell-pad);
  background: var(--paper);
}

.trust-section .trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid article:nth-child(2) {
  background: var(--sage);
}

.trust-grid article:nth-child(3) {
  background: var(--mint-soft);
}

.trust-grid article:nth-child(4) {
  background: var(--surface);
}

.pricing-section {
  padding: 84px var(--shell-pad);
  background: var(--surface);
}

.pricing-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 28px;
  box-shadow: 0 20px 58px rgba(73, 51, 125, 0.07);
}

.featured-plan {
  border-color: rgba(123, 97, 200, 0.54);
  background: #f5efff;
}

.plan-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.plan-topline h3 {
  margin: 0;
  font-size: 1.45rem;
}

.plan-badge {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--lilac-dark);
  background: var(--lavender);
  font-size: 0.78rem;
  font-weight: 850;
}

.price {
  margin: 26px 0 6px;
  color: var(--ink);
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 750;
}

.price-note {
  min-height: 50px;
  margin: 0 0 22px;
  font-weight: 750;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  margin: 0 0 28px;
  color: var(--muted);
}

.plan-button {
  width: 100%;
  margin-top: auto;
}

.pack-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.pack-section h3 {
  max-width: 380px;
  margin: 0;
  font-size: 2.05rem;
  line-height: 1.05;
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pack-card {
  padding: 24px;
  background: var(--surface);
}

.pack-card strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 1.35rem;
}

.pack-card p {
  margin-bottom: 0;
}

.pricing-disclaimer {
  max-width: 960px;
  margin: 20px 0 0;
  font-size: 0.95rem;
}

.download-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: center;
  padding: 72px var(--shell-pad);
  background: var(--paper);
}

.download-actions {
  align-items: center;
}

.download-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-text-link {
  color: var(--lilac-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.qr-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 20px 58px rgba(73, 51, 125, 0.07);
}

.qr-card img {
  width: min(220px, 100%);
  height: auto;
  border: 12px solid white;
  border-radius: 8px;
  background: white;
}

.qr-card p {
  margin: 0;
  color: var(--lilac-dark);
  font-size: 0.95rem;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-align: center;
}

details:not(.full-story) {
  max-width: 860px;
  padding: 20px 24px;
  margin-bottom: 12px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 38px var(--shell-pad);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-weight: 650;
}

.footer-legal {
  flex-basis: 100%;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: heroCopyIn 520ms ease-out both;
  }

  .hero-character {
    animation: heroFloat 5.2s ease-in-out infinite;
  }

  .flow-card {
    animation: cardDrift 6s ease-in-out infinite;
  }

  .flow-arrow i {
    animation: flowPulse 2.8s ease-in-out infinite;
  }

  .flow-arrow i:nth-child(2) {
    animation-delay: 240ms;
  }

  .flow-arrow i:nth-child(3) {
    animation-delay: 480ms;
  }

  .parent-insight-output {
    animation: parentInsightGlow 4.8s ease-in-out infinite;
  }

  .output-card-mini {
    animation-delay: 380ms;
  }

  .insight-card-mini {
    animation-delay: 720ms;
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes cardDrift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes flowPulse {
  0%,
  100% {
    opacity: 0.68;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.22);
  }
}

@keyframes parentInsightGlow {
  0%,
  100% {
    box-shadow: 0 24px 64px rgba(73, 51, 125, 0.12);
  }

  50% {
    box-shadow: 0 28px 72px rgba(94, 207, 197, 0.18);
  }
}

@media (max-width: 1080px) {
  .hero {
    min-height: 640px;
  }

  .hero h1 {
    font-size: 4.25rem;
  }

  .hero-scene {
    right: -34px;
    min-width: 470px;
  }

  .hero-character {
    width: 390px;
  }

  .input-card {
    left: 90px;
  }

  .plan-grid,
  .example-layout,
  .trust-section .trust-grid {
    grid-template-columns: 1fr;
  }

  .example-layout {
    grid-template-areas:
      "summary"
      "story"
      "parent-label"
      "insight";
  }

  .example-value-strip span {
    white-space: normal;
  }

  .plan-card {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 72px;
  }

  nav,
  .header-cta {
    display: none;
  }

  .example-intro,
  .download-section,
  .pack-section,
  .story-banner {
    grid-template-columns: 1fr;
  }

  .example-intro {
    gap: 18px;
  }

  .story-banner {
    padding-top: 48px;
    padding-bottom: 0;
  }

  .banner-visual {
    min-height: 430px;
  }

  .banner-phone {
    top: 74px;
    right: 50%;
    bottom: auto;
    width: 280px;
    max-width: 68vw;
    height: 609px;
    max-height: none;
    transform: translateX(50%) rotate(3deg);
  }

  .note-one {
    top: 18px;
    right: auto;
    left: 0;
  }

  .note-two {
    top: 104px;
    right: 0;
  }

  .note-three {
    right: auto;
    bottom: 64px;
    left: 8px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding-top: 38px;
    padding-bottom: 32px;
  }

  .hero::before {
    top: auto;
    bottom: 0;
    width: 100%;
    min-width: 0;
    height: 320px;
    -webkit-clip-path: ellipse(92% 78% at 68% 100%);
    clip-path: ellipse(92% 78% at 68% 100%);
  }

  .hero-copy {
    order: 1;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .hero-scene {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    order: 2;
    width: 100%;
    max-width: none;
    min-width: 0;
    height: 300px;
    margin-top: 22px;
  }

  .hero-character {
    right: auto;
    left: 50%;
    bottom: -24px;
    width: 250px;
    margin-left: -125px;
  }

  .input-card {
    top: 26px;
    left: 0;
    width: 184px;
  }

  .output-card-mini {
    top: 54px;
    right: 0;
    width: 196px;
  }

  .insight-card-mini {
    right: 18px;
    bottom: 22px;
    width: 204px;
  }

  .value-flow,
  .value-output-grid,
  .trust-grid,
  .pack-grid {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    min-height: 62px;
  }

  .flow-arrow::before {
    width: 84%;
    height: 2px;
    background: linear-gradient(90deg, var(--mint), var(--lilac));
  }

  .flow-arrow i:nth-child(1) {
    justify-self: start;
    align-self: center;
    margin: 0 0 0 24px;
  }

  .flow-arrow i:nth-child(3) {
    justify-self: end;
    align-self: center;
    margin: 0 24px 0 0;
  }

  .moment-section {
    padding-top: 44px;
  }

  .story-paper p {
    font-size: 1rem;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 22px;
  }

  .brand-wordmark {
    width: 160px;
    max-width: 48vw;
  }

  .hero {
    padding-bottom: 20px;
  }

  .hero h1,
  .section-heading h2,
  .example-intro h2,
  .pricing-heading h2,
  .download-section h2,
  .faq-section h2 {
    font-size: 2.25rem;
  }

  .download-redirect h1,
  .story-paper h2,
  .price {
    font-size: 2.35rem;
  }

  .hero-text {
    font-size: 1.08rem;
  }

  .trust-row {
    margin-top: 20px;
  }

  .flow-card {
    padding: 14px;
  }

  .hero-scene {
    height: 220px;
    margin-top: 14px;
  }

  .hero-character {
    left: 18px;
    width: 190px;
    margin-left: 0;
  }

  .input-card,
  .insight-card-mini {
    display: none;
  }

  .output-card-mini {
    top: 12px;
    right: 0;
    width: 160px;
  }

  .output-card-mini strong {
    font-size: 1rem;
  }

  .download-actions,
  .download-actions a.primary-button,
  .plan-button {
    width: 100%;
  }

  .download-section .qr-card {
    display: none;
  }

  .hero-actions a,
  .banner-actions a {
    flex: 1 1 154px;
    min-height: 48px;
    padding: 0 14px;
  }

  .story-banner h2 {
    font-size: 2.18rem;
  }

  .banner-visual {
    min-height: 370px;
  }

  .banner-phone {
    top: 46px;
    width: 250px;
    max-width: 70vw;
    height: 544px;
  }

  .banner-note {
    min-height: 46px;
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .banner-note span {
    width: 26px;
    height: 26px;
  }

  .note-two {
    top: 82px;
  }

  .note-three {
    bottom: 52px;
  }

  .story-paper,
  .output-card,
  .plan-card,
  .qr-card,
  .pack-section {
    padding: 20px;
  }

  .child-tools-grid {
    grid-template-columns: 1fr;
  }

  .child-tools-grid .output-card {
    padding: 18px;
  }
}

@media (max-width: 360px) {
  .hero {
    padding-top: 30px;
    padding-bottom: 12px;
  }

  .hero h1 {
    font-size: 2.08rem;
  }

  .hero-text {
    margin-top: 18px;
    font-size: 1rem;
  }

  .brand-wordmark {
    width: 148px;
    max-width: 52vw;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-actions a {
    flex-basis: 100%;
  }

  .trust-row span {
    padding: 8px 10px;
    font-size: 0.92rem;
  }

  .hero-scene {
    height: 188px;
    margin-top: 10px;
  }

  .story-banner {
    padding-top: 34px;
  }

  .story-banner h2 {
    font-size: 1.95rem;
  }

  .story-banner p:not(.eyebrow) {
    font-size: 1rem;
  }

  .banner-visual {
    min-height: 260px;
  }

  .banner-phone {
    width: 170px;
    top: 22px;
  }

  .banner-note {
    display: none;
  }

  .hero-character {
    left: 18px;
    bottom: -18px;
    width: 164px;
  }

  .output-card-mini {
    top: 16px;
    right: 0;
    display: grid;
    width: 152px;
  }
}
