:root {
  --navy: #123a63;
  --navy-deep: #0a2947;
  --gold: #e8b04a;
  --gold-dark: #b97913;
  --cream: #fff7e8;
  --cream-deep: #f5ead4;
  --turquoise: #58b7ae;
  --ink: #17324d;
  --muted: #607083;
  --white: #fff;
  --shadow: 0 24px 70px rgba(18, 58, 99, 0.15);
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --container: 75rem;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-rounded, "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; top: -5rem; left: 1rem; z-index: 1000; padding: .75rem 1rem; background: var(--navy); color: white; border-radius: .5rem; }
.skip-link:focus { top: 1rem; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 247, 232, .92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(18,58,99,.08); }
.header-inner { min-height: 6.75rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; text-decoration: none; min-width: 6rem; }
.brand img { width: 6rem; height: 6rem; object-fit: contain; }
.brand-fallback { display: none; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; font-weight: 700; color: var(--navy); }
.brand-fallback span { color: var(--gold-dark); }
.brand img:not([src]), .brand img[src=""] { display: none; }
.brand img:not([src]) + .brand-fallback, .brand img[src=""] + .brand-fallback { display: inline-flex; gap: .45rem; }
.main-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.main-nav > a:not(.button) { font-size: .94rem; font-weight: 700; text-decoration: none; color: var(--navy); }
.main-nav > a:not(.button):hover { color: var(--gold-dark); }
.menu-toggle { display: none; width: 2.75rem; height: 2.75rem; border: 0; background: transparent; border-radius: 50%; }
.menu-toggle span { display: block; width: 1.35rem; height: 2px; margin: .28rem auto; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
.button { display: inline-flex; min-height: 3.45rem; align-items: center; justify-content: center; gap: .65rem; padding: .85rem 1.45rem; border: 2px solid var(--gold); border-radius: 999px; background: var(--gold); color: var(--navy-deep); font-weight: 800; line-height: 1.1; text-decoration: none; box-shadow: 0 10px 25px rgba(232,176,74,.25); cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); background: #f0bd5d; box-shadow: 0 14px 30px rgba(232,176,74,.34); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid rgba(88,183,174,.7); outline-offset: 3px; }
.button-small { min-height: 2.85rem; padding: .7rem 1.15rem; font-size: .9rem; }
.hero { position: relative; overflow: hidden; padding: clamp(3.5rem, 8vw, 7.5rem) 0 clamp(4rem, 8vw, 7rem); background: radial-gradient(circle at 85% 10%, rgba(88,183,174,.22), transparent 28rem), linear-gradient(135deg, #fffaf0 0%, var(--cream) 62%, #f3ead8 100%); }
.hero::before { content: ""; position: absolute; top: -10rem; left: -8rem; width: 30rem; height: 30rem; border-radius: 50%; background: rgba(232,176,74,.16); filter: blur(18px); animation: heroGlow 9s ease-in-out infinite; }
.hero::after { content: ""; position: absolute; inset: auto -10% -10rem; height: 14rem; background: var(--white); border-radius: 50% 50% 0 0; }
.hero-stars { position: absolute; z-index: 1; inset: 0; overflow: hidden; pointer-events: none; }
.hero-particles { display: block; width: 100%; height: 100%; opacity: 1; filter: saturate(1.18); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(20rem, .95fr); align-items: center; gap: clamp(2.5rem, 7vw, 6rem); }
.hero-copy > * { opacity: 0; animation: heroRise .72s cubic-bezier(.2,.75,.25,1) forwards; }
.hero-copy > :nth-child(1) { animation-delay: .08s; }.hero-copy > :nth-child(2) { animation-delay: .18s; }.hero-copy > :nth-child(3) { animation-delay: .3s; }.hero-copy > :nth-child(4) { animation-delay: .42s; }.hero-copy > :nth-child(5) { animation-delay: .54s; }
.eyebrow { margin: 0 0 1rem; color: var(--gold-dark); font-size: .82rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { display: inline-block; margin-right: .35rem; }
h1, h2 { margin: 0; color: var(--navy); font-family: Georgia, "Times New Roman", serif; line-height: 1.06; letter-spacing: -.035em; text-wrap: balance; }
h1 { max-width: 12ch; font-size: clamp(2.75rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2.15rem, 4vw, 3.65rem); }
.hero-lead { max-width: 38rem; margin: 1.5rem 0 0; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.28rem); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.25rem; margin-top: 2rem; }
.hero-actions .button span, .hero-actions .text-link span { display: inline-block; transition: transform .2s ease; }.hero-actions .button:hover span { transform: translateX(.3rem); }.hero-actions .text-link:hover span { transform: translateY(.2rem); }
.text-link { font-weight: 800; color: var(--navy); text-underline-offset: .25rem; }
.trust-list { display: flex; flex-wrap: wrap; gap: .75rem 1.2rem; margin: 1.8rem 0 0; padding: 0; list-style: none; color: var(--navy); font-size: .86rem; font-weight: 700; }
.trust-list span { color: #2b8b72; }
.hero-visual { --hero-x: 0px; --hero-y: 0px; position: relative; width: min(100%, 35rem); justify-self: center; transform: translate3d(var(--hero-x), var(--hero-y), 0); transition: transform .3s ease-out; animation: heroReveal .9s .18s cubic-bezier(.2,.75,.25,1) backwards; will-change: transform; }
.image-frame { position: relative; overflow: hidden; background: linear-gradient(145deg, #dfeee9, #f5dfac); box-shadow: var(--shadow); }
.image-frame-hero { aspect-ratio: 4 / 4.35; border: .65rem solid rgba(255,255,255,.78); border-radius: 48% 48% 2rem 2rem; transform: rotate(1.5deg); animation: heroFloat 6.5s ease-in-out infinite; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 2; }
.image-frame-hero .hero-slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.015); animation: heroCrossfade 14s ease-in-out infinite; will-change: opacity, transform; }
.image-frame-hero .hero-slide:nth-of-type(2) { animation-delay: -7s; }
.image-placeholder { position: absolute; inset: 0; display: grid; place-content: center; gap: 1rem; text-align: center; color: var(--navy); font-family: Georgia, serif; font-size: 1.5rem; background: radial-gradient(circle at 50% 70%, rgba(232,176,74,.7), transparent 25%), linear-gradient(145deg, #cbe7df, #f8e6bd); }
.placeholder-sparkle { color: var(--gold-dark); font-size: 3rem; }
.floating-note { position: absolute; z-index: 4; left: -2rem; bottom: 2.2rem; padding: .85rem 1.1rem; border: 1px solid rgba(18,58,99,.1); border-radius: 999px; background: rgba(255,255,255,.94); box-shadow: 0 15px 35px rgba(18,58,99,.16); color: var(--navy); font-size: .9rem; font-weight: 800; transform: rotate(-3deg); animation: heroNoteFloat 4.8s ease-in-out infinite; }
.floating-note span { display: inline-block; color: var(--gold-dark); animation: heroTwinkle 2.4s ease-in-out infinite; }
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; background: white; }
.section-heading { max-width: 46rem; text-align: center; }
.section-heading > p:last-child { margin: 1.25rem auto 0; color: var(--muted); font-size: 1.08rem; }
.section-heading { margin-inline: auto; }
h3 { margin: 0; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; line-height: 1.25; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 3.5rem 0 0; padding: 0; list-style: none; }
.step-card { position: relative; min-height: 18rem; padding: 1.75rem; overflow: hidden; border: 1px solid rgba(18,58,99,.09); border-radius: var(--radius-md); background: #fffdf9; }
.step-card:nth-child(even) { transform: translateY(1.75rem); }
.step-number { position: absolute; top: 1.1rem; right: 1.25rem; color: rgba(18,58,99,.18); font-family: Georgia, serif; font-size: 2.1rem; font-weight: 700; }
.step-icon { display: grid; width: 3.5rem; height: 3.5rem; margin: 2.1rem 0 1.5rem; place-content: center; border-radius: 50%; background: var(--cream); color: var(--gold-dark); font-size: 1.5rem; }
.step-card p { margin: .8rem 0 0; color: var(--muted); font-size: .96rem; }

.example-section { background: var(--navy); color: rgba(255,255,255,.78); }
.example-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(3rem, 8vw, 7rem); }
.example-section h2 { color: white; }.example-section h2 em { color: var(--gold); font-weight: inherit; }
.child-profile { max-width: 34rem; margin-top: 2rem; padding: 1.25rem; border: 1px solid rgba(255,255,255,.14); border-radius: 1.1rem; background: rgba(255,255,255,.07); }
.profile-header { display: flex; align-items: center; gap: .9rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.avatar { display: grid; width: 2.8rem; height: 2.8rem; place-content: center; border-radius: 50%; background: var(--gold); color: var(--navy); font-weight: 900; }
.profile-header strong, .profile-header small { display: block; }.profile-header strong { color: white; }.profile-header small { color: rgba(255,255,255,.65); }
.profile-row { display: grid; grid-template-columns: 6rem 1fr; gap: 1rem; align-items: start; margin-top: 1rem; }
.profile-row > span { color: rgba(255,255,255,.65); font-size: .85rem; }.profile-row div { display: flex; flex-wrap: wrap; gap: .5rem; }
.profile-row b { padding: .3rem .65rem; border-radius: 999px; background: rgba(88,183,174,.18); color: #b9efe9; font-size: .8rem; }
.story-excerpt { position: relative; max-width: 34rem; margin: 1.5rem 0; padding-left: 2rem; color: white; font-family: Georgia, serif; font-size: 1.12rem; font-style: italic; }
.story-excerpt p { margin: 0; }.quote-mark { position: absolute; left: 0; top: -.65rem; color: var(--gold); font-size: 3rem; line-height: 1; }
.book-showcase { position: relative; justify-self: center; width: min(100%, 25rem); padding: 2rem; perspective: 1200px; }
.book-cover { position: relative; z-index: 2; aspect-ratio: 4/5; overflow: hidden; border: .65rem solid #f8ecd2; border-radius: .55rem 1.15rem 1.15rem .55rem; background: #142c50; box-shadow: -20px 25px 45px rgba(0,0,0,.35), inset 4px 0 0 rgba(18,58,99,.16); transform: rotateY(-8deg) rotateZ(2deg); }
.book-cover::after { content: ""; position: absolute; inset: 0 auto 0 .7rem; width: 2px; background: rgba(255,255,255,.25); box-shadow: 3px 0 8px rgba(0,0,0,.2); }
.book-cover img { width: 100%; height: 100%; object-fit: cover; }.book-title-overlay { position: absolute; z-index: 3; top: 2rem; left: 2rem; right: 2rem; padding: 1rem; text-align: center; text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.book-title-overlay small, .book-title-overlay strong { display: block; color: white; font-family: Georgia, serif; }.book-title-overlay small { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; }.book-title-overlay strong { margin-top: .25rem; color: #ffe5a7; font-size: 2.5rem; }
.book-shadow { position: absolute; right: 2.5rem; bottom: 1rem; width: 78%; height: 2rem; border-radius: 50%; background: rgba(0,0,0,.35); filter: blur(12px); }
.orbit { position: absolute; z-index: 4; color: var(--gold); font-size: 2rem; animation: float 4s ease-in-out infinite; }.orbit-one { top: 7%; right: -2%; }.orbit-two { left: 0; bottom: 12%; animation-delay: -2s; }

.benefits-section { background: #fffbf4; }.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3.25rem; }
.benefit-card { padding: 2rem; border: 1px solid rgba(18,58,99,.09); border-radius: var(--radius-md); background: white; transition: transform .2s ease, box-shadow .2s ease; }
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(18,58,99,.1); }.benefit-card > span { display: grid; width: 3rem; height: 3rem; margin-bottom: 1.4rem; place-content: center; border-radius: 50%; background: var(--cream); color: var(--gold-dark); font-size: 1.3rem; }.benefit-card p { margin: .75rem 0 0; color: var(--muted); font-size: .95rem; }

.products-section { background: white; }.products-wrap { max-width: 64rem; }.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); align-items: stretch; gap: 1.5rem; margin-top: 3.5rem; }
.product-card { position: relative; display: flex; flex-direction: column; padding: clamp(2rem, 4vw, 3rem); border: 1px solid rgba(18,58,99,.12); border-radius: var(--radius-lg); background: #fffcf6; }
.featured-product { border: 2px solid var(--gold); background: var(--navy); color: rgba(255,255,255,.76); box-shadow: var(--shadow); transform: translateY(-.75rem); }.product-kicker { margin: 0 0 .5rem; color: var(--gold-dark); font-size: .78rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }.featured-product .product-kicker { color: var(--gold); }
.product-card h3 { font-size: 2rem; }.featured-product h3 { color: white; }.price { margin: 1.25rem 0; color: var(--navy); font-family: Georgia, serif; font-size: 2rem; font-weight: 700; }.price small { display: block; color: var(--muted); font-family: Inter, sans-serif; font-size: .78rem; font-weight: 700; text-transform: uppercase; }.price span { font-family: Inter, sans-serif; font-size: .75rem; }.featured-product .price { color: white; }.featured-product .price small { color: var(--gold); }.price.upcoming { font-size: 1.45rem; }
.product-card ul { display: grid; gap: .7rem; margin: 0 0 2rem; padding: 0; list-style: none; }.product-card li::before { content: "✓"; margin-right: .65rem; color: #2b8b72; font-weight: 900; }.featured-product li::before { color: var(--gold); }.product-card .button { margin-top: auto; }.button-outline { border-color: var(--navy); background: transparent; color: var(--navy); box-shadow: none; }.button-outline:hover { background: var(--navy); color: white; }.button:disabled { cursor: not-allowed; opacity: .72; transform: none; box-shadow: none; }.popular-label { position: absolute; top: 0; right: 2rem; padding: .45rem 1rem; border-radius: 0 0 .8rem .8rem; background: var(--gold); color: var(--navy); font-size: .75rem; font-weight: 900; text-transform: uppercase; }

.builder-section { position: relative; overflow: hidden; background: linear-gradient(145deg, #f8edda, #fffaf1); }.builder-section::before { content: "✦"; position: absolute; top: 4rem; left: 4%; color: rgba(232,176,74,.35); font-size: 4rem; }.builder-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: clamp(2rem, 6vw, 5rem); }.builder-intro { position: sticky; top: 8rem; }.builder-intro > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.privacy-note { display: flex; gap: .8rem; align-items: flex-start; margin-top: 2rem; padding: 1rem; border-radius: 1rem; background: rgba(88,183,174,.12); color: var(--navy); }.privacy-note > span { color: #2b8b72; font-size: 1.4rem; }.privacy-note p { margin: 0; font-size: .9rem; }
.builder-card { min-height: 41rem; padding: clamp(1.25rem, 4vw, 3rem); border: 1px solid rgba(18,58,99,.1); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow); }
.form-progress { margin-bottom: 2.25rem; }.progress-copy { display: flex; justify-content: space-between; gap: 1rem; color: var(--muted); font-size: .83rem; }.progress-copy strong { color: var(--navy); }.progress-track { height: .45rem; margin-top: .85rem; overflow: hidden; border-radius: 999px; background: #e9edf0; }.progress-track span { display: block; width: 16.666%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--turquoise), var(--gold)); transition: width .35s ease; }.progress-dots { display: flex; justify-content: space-between; margin-top: -.68rem; }.progress-dots i { width: .9rem; height: .9rem; border: 3px solid #e9edf0; border-radius: 50%; background: white; }.progress-dots i.active { border-color: var(--gold); background: var(--gold); }
.form-step { min-width: 0; margin: 0; padding: 0; border: 0; animation: fadeSlide .32s ease both; }.form-step legend { width: 100%; padding: 0; color: var(--navy); font-family: Georgia, serif; font-size: clamp(1.75rem, 4vw, 2.35rem); font-weight: 700; line-height: 1.15; }.step-intro { margin: .7rem 0 1.75rem; color: var(--muted); }.step-intro strong { float: right; color: var(--navy); font-size: .82rem; }.step-intro span { font-size: .88rem; }
.field-grid.two-columns { display: grid; grid-template-columns: 1.5fr .7fr; gap: 1rem; }.field-group { margin-bottom: 1.5rem; }.field-group label, .field-label { display: block; margin-bottom: .55rem; color: var(--navy); font-size: .9rem; font-weight: 800; }.field-label small { font-weight: 500; color: var(--muted); }
input[type="text"], input[type="number"], textarea { width: 100%; border: 1.5px solid #cbd4db; border-radius: .85rem; background: white; color: var(--ink); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }.field-group input { min-height: 3.35rem; padding: .8rem 1rem; } textarea { min-height: 10rem; padding: 1rem; resize: vertical; }.field-group input:focus, textarea:focus { border-color: var(--turquoise); box-shadow: 0 0 0 4px rgba(88,183,174,.13); }.field-group input::placeholder, textarea::placeholder { color: #8d9aa7; }
.radio-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; }.radio-cards label { margin: 0; cursor: pointer; }.radio-cards input { position: absolute; opacity: 0; }.radio-cards span { display: grid; min-height: 3.25rem; place-content: center; padding: .5rem; border: 1.5px solid #d5dde3; border-radius: .85rem; text-align: center; font-size: .83rem; transition: all .2s ease; }.radio-cards input:checked + span { border-color: var(--navy); background: var(--navy); color: white; }.radio-cards input:focus-visible + span { outline: 3px solid rgba(88,183,174,.6); outline-offset: 2px; }
.representation-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin-bottom: 1.75rem; }
.representation-options label { cursor: pointer; }
.representation-options input { position: absolute; opacity: 0; }
.representation-options label > span { display: grid; min-height: 7.25rem; grid-template-columns: 2.4rem 1fr; grid-template-rows: auto auto; align-content: center; column-gap: .7rem; padding: 1rem; border: 1.5px solid #d5dde3; border-radius: 1rem; background: white; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.representation-options b { grid-row: 1 / 3; align-self: center; display: grid; width: 2.4rem; height: 2.4rem; place-content: center; border-radius: 50%; background: var(--cream); color: var(--gold-dark); font-size: 1.25rem; }
.representation-options strong { align-self: end; color: var(--navy); font-size: .92rem; }
.representation-options small { color: var(--muted); font-size: .76rem; }
.representation-options input:checked + span { border-color: var(--navy); background: #f4f8f8; box-shadow: inset 0 0 0 1px var(--navy); }
.representation-options input:focus-visible + span { outline: 3px solid rgba(88,183,174,.6); outline-offset: 2px; }
.photo-fields { animation: fadeSlide .25s ease both; }
.photo-dropzone { display: grid !important; min-height: 12rem; place-content: center; padding: 1.5rem; border: 2px dashed #aebdc7; border-radius: 1rem; background: #fbfdfc; color: var(--navy); text-align: center; cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.photo-dropzone:hover { border-color: var(--turquoise); background: #f1faf8; }
.photo-dropzone > span { margin-bottom: .45rem; color: var(--gold-dark); font-size: 2rem; }
.photo-dropzone strong, .photo-dropzone small { display: block; }
.photo-dropzone small { margin-top: .25rem; color: var(--muted); font-size: .78rem; font-weight: 500; }
.photo-preview { display: grid; grid-template-columns: 5.5rem 1fr; gap: 1rem; align-items: center; margin-top: 1rem; padding: .85rem; border: 1px solid rgba(18,58,99,.12); border-radius: 1rem; background: var(--cream); text-align: left; }
.photo-preview img { width: 5.5rem; height: 5.5rem; border-radius: .75rem; object-fit: cover; }
.photo-preview strong, .photo-preview small { display: block; overflow-wrap: anywhere; }
.photo-preview strong { color: var(--navy); font-size: .88rem; }.photo-preview small { color: var(--muted); font-size: .76rem; }
.photo-preview .text-button { padding: .35rem 0 0; font-size: .8rem; }
.photo-privacy { display: flex; gap: .5rem; margin: 1rem 0 0; color: var(--muted); font-size: .78rem; }.photo-privacy span { color: #2b8b72; }
.chip-grid { display: flex; flex-wrap: wrap; gap: .65rem; }.choice-chip, .visual-choice { min-height: 2.8rem; padding: .55rem .95rem; border: 1.5px solid #d5dde3; border-radius: 999px; background: white; color: var(--navy); cursor: pointer; font-weight: 700; transition: all .18s ease; }.choice-chip:hover, .visual-choice:hover { border-color: var(--turquoise); transform: translateY(-1px); }.choice-chip.selected, .choice-chip[aria-pressed="true"] { border-color: var(--navy); background: var(--navy); color: white; box-shadow: 0 6px 16px rgba(18,58,99,.16); }.other-field { margin-top: 1.5rem; max-width: 26rem; }.over-limit { color: #a63431 !important; }
.character-count { margin-top: .4rem; text-align: right; color: var(--muted); font-size: .8rem; }.example-prompts { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }.example-prompts > span { width: 100%; color: var(--muted); font-size: .8rem; font-weight: 700; }.example-prompts button { padding: .45rem .7rem; border: 0; border-radius: .5rem; background: var(--cream); color: var(--navy); cursor: pointer; font-size: .78rem; }
.appearance-group { margin-bottom: 1.5rem; }.visual-options { display: flex; flex-wrap: wrap; gap: .6rem; }.visual-choice { display: inline-flex; align-items: center; border-radius: .75rem; }.visual-choice.selected { border-color: var(--navy); background: #eff5f7; box-shadow: inset 0 0 0 1px var(--navy); }.visual-choice i { width: 1.15rem; height: 1.15rem; margin-right: .45rem; border: 2px solid white; border-radius: 50%; background: var(--swatch); box-shadow: 0 0 0 1px #bbb; }.skin-options { display: flex; gap: .8rem; }.skin-choice { width: 3rem; height: 3rem; border: 3px solid white; border-radius: 50%; background: var(--skin); box-shadow: 0 0 0 1px #bcc6cd; cursor: pointer; }.skin-choice.selected { box-shadow: 0 0 0 3px var(--navy); }.toggle-options { display: flex; flex-wrap: wrap; gap: .75rem; }.toggle-options label { padding: .7rem 1rem; border: 1px solid #d5dde3; border-radius: .8rem; color: var(--navy); cursor: pointer; font-weight: 700; }.toggle-options input { margin-right: .45rem; accent-color: var(--navy); }
.form-errors { margin-bottom: 1.25rem; padding: .8rem 1rem; border-left: 4px solid #b5403d; border-radius: .5rem; background: #fff1ef; color: #812d2a; font-size: .9rem; }.form-navigation { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #edf0f2; }.next-button, .submit-button { margin-left: auto; }.back-button, .text-button { border: 0; background: transparent; color: var(--navy); cursor: pointer; font-weight: 800; text-decoration: underline; text-underline-offset: .25rem; }
.summary-card { display: grid; gap: .8rem; padding: 1.25rem; border-radius: 1rem; background: var(--cream); }.summary-row { display: grid; grid-template-columns: 8rem 1fr; gap: 1rem; padding-bottom: .65rem; border-bottom: 1px solid rgba(18,58,99,.09); }.summary-row:last-child { padding-bottom: 0; border: 0; }.summary-row span { color: var(--muted); font-size: .83rem; }.summary-row strong { color: var(--navy); font-size: .92rem; }.consent-note { display: flex; gap: .5rem; align-items: center; color: var(--muted); font-size: .8rem; }.consent-note span { color: #2b8b72; }
.loading-state, .result-state { min-height: 32rem; text-align: center; }.loading-state:not([hidden]) { display: grid; place-content: center; }.magic-loader { position: relative; width: 8rem; height: 8rem; margin: 0 auto 1.5rem; }.magic-loader > span { display: grid; width: 100%; height: 100%; place-content: center; border-radius: 50%; background: var(--cream); color: var(--gold-dark); font-size: 2.7rem; animation: pulse 1.5s ease-in-out infinite; }.magic-loader i { position: absolute; width: .55rem; height: .55rem; border-radius: 50%; background: var(--turquoise); animation: orbit 2s linear infinite; }.magic-loader i:nth-child(2) { left: 50%; top: -.2rem; }.magic-loader i:nth-child(3) { right: -.2rem; top: 55%; animation-delay: -.65s; }.magic-loader i:nth-child(4) { left: 0; bottom: .5rem; animation-delay: -1.3s; }.loading-state h3, .result-state h3 { font-size: clamp(1.7rem, 4vw, 2.25rem); }.loading-state p, .result-state > p:not(.eyebrow) { color: var(--muted); }
.result-image { width: min(100%, 20rem); aspect-ratio: 2/3; margin: 0 auto 1.5rem; overflow: hidden; border-radius: 1.25rem; background: linear-gradient(145deg, #dfeee9, #f5dfac); box-shadow: 0 15px 35px rgba(18,58,99,.16); }.result-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .3s ease; }.result-image img.is-ready { opacity: 1; }.result-state .button { margin-top: 1rem; }.result-state .text-button { display: block; margin: 1rem auto 0; }

.testimonials-section { background: var(--navy-deep); color: white; }.light-heading h2 { color: white; }.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }.testimonials-grid blockquote { margin: 0; padding: 1.75rem; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); background: rgba(255,255,255,.06); }.testimonials-grid blockquote > p { margin: 0; color: rgba(255,255,255,.82); font-family: Georgia, serif; font-size: 1.05rem; }.testimonials-grid footer { display: flex; align-items: center; gap: .8rem; margin-top: 1.5rem; }.testimonials-grid footer > span { display: grid; width: 2.5rem; height: 2.5rem; place-content: center; border-radius: 50%; background: var(--gold); color: var(--navy); font-size: .75rem; font-weight: 900; }.testimonials-grid strong, .testimonials-grid small { display: block; }.testimonials-grid strong { color: white; font-size: .82rem; }.testimonials-grid small { color: rgba(255,255,255,.5); font-size: .72rem; }
.faq-section { background: white; }.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(2.5rem, 7vw, 6rem); }.faq-intro { position: sticky; top: 8rem; align-self: start; }.faq-intro p:last-child { color: var(--muted); }.faq-item { border-bottom: 1px solid #dfe5e9; }.faq-item h3 { margin: 0; font-family: Inter, sans-serif; }.faq-item button { display: flex; width: 100%; justify-content: space-between; gap: 1.5rem; align-items: center; padding: 1.35rem 0; border: 0; background: transparent; color: var(--navy); text-align: left; cursor: pointer; font-weight: 800; }.faq-item button span { flex: 0 0 auto; display: grid; width: 2rem; height: 2rem; place-content: center; border-radius: 50%; background: var(--cream); color: var(--gold-dark); font-size: 1.2rem; }.faq-answer p { margin: -.35rem 0 1.35rem; padding-right: 3rem; color: var(--muted); }
.final-cta { position: relative; overflow: hidden; padding: clamp(5rem, 10vw, 8rem) 0; background: var(--navy); color: white; text-align: center; }.final-cta::before, .final-cta::after { content: ""; position: absolute; width: 22rem; height: 22rem; border: 1px solid rgba(232,176,74,.18); border-radius: 50%; }.final-cta::before { left: -10rem; bottom: -12rem; }.final-cta::after { right: -8rem; top: -12rem; }.final-cta-stars { position: absolute; inset: 1.5rem 0 auto; color: rgba(232,176,74,.45); letter-spacing: 1rem; }.final-cta-inner { position: relative; z-index: 2; max-width: 48rem; }.final-cta h2 { color: white; }.final-cta-inner > p:first-of-type { color: var(--gold); font-size: .8rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }.final-cta-inner > p:last-of-type { margin-bottom: 1.75rem; color: rgba(255,255,255,.75); font-size: 1.12rem; }
.site-footer { padding: 3.5rem 0 1.25rem; background: #081f36; color: rgba(255,255,255,.65); }.site-footer .brand-fallback { color: white; }.site-footer .brand img { width: 8rem; height: 8rem; }.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr .6fr; gap: 2rem; }.footer-brand p { max-width: 24rem; margin-top: 1rem; }.footer-grid nav, .social-links { display: grid; align-content: start; gap: .7rem; }.footer-grid a { text-decoration: none; }.footer-grid nav a:hover, .social-links a:hover { color: var(--gold); }.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem; }.footer-bottom span span { color: var(--gold); }.mobile-sticky-cta { display: none; }

@keyframes fadeSlide { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(8deg); } }
@keyframes pulse { 0%,100% { transform: scale(.95); box-shadow: 0 0 0 0 rgba(232,176,74,.3); } 50% { transform: scale(1); box-shadow: 0 0 0 18px rgba(232,176,74,0); } }
@keyframes orbit { from { transform: rotate(0deg) translateX(4rem) rotate(0deg); } to { transform: rotate(360deg) translateX(4rem) rotate(-360deg); } }
@keyframes heroRise { from { opacity: 0; transform: translateY(1.25rem); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroReveal { from { opacity: 0; transform: translate3d(1.5rem, 1rem, 0) scale(.97); } to { opacity: 1; transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(1); } }
@keyframes heroFloat { 0%,100% { transform: translateY(0) rotate(1.5deg); } 50% { transform: translateY(-.75rem) rotate(.45deg); } }
@keyframes heroCrossfade { 0%, 42% { opacity: 1; transform: scale(1.015); } 50%, 92% { opacity: 0; transform: scale(1.055); } 100% { opacity: 1; transform: scale(1.015); } }
@keyframes heroNoteFloat { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-.55rem) rotate(-1deg); } }
@keyframes heroTwinkle { 0%,100% { opacity: .42; transform: scale(.8) rotate(0); } 50% { opacity: 1; transform: scale(1.18) rotate(15deg); } }
@keyframes heroDrift { 0%,100% { opacity: .45; transform: translate3d(0,0,0) rotate(0); } 50% { opacity: .9; transform: translate3d(.8rem,-1rem,0) rotate(18deg); } }
@keyframes heroGlow { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(3rem,1.5rem,0) scale(1.12); } }

@media (max-width: 820px) {
  .header-inner { min-height: 5.75rem; }
  .brand img { width: 5.15rem; height: 5.15rem; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: calc(100% + .5rem); left: 1rem; right: 1rem; display: none; align-items: stretch; padding: 1rem; border: 1px solid rgba(18,58,99,.1); border-radius: 1rem; background: white; box-shadow: var(--shadow); }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: .65rem .4rem; }
  .main-nav .button { margin-top: .25rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  h1, .hero-lead { margin-inline: auto; }
  .hero-actions, .trust-list { justify-content: center; }
  .hero-visual { max-width: 30rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card:nth-child(even) { transform: none; }
  .example-grid, .builder-layout, .faq-layout { grid-template-columns: 1fr; }
  .example-copy { text-align: center; }
  .child-profile, .story-excerpt { margin-inline: auto; }
  .example-copy .button { width: fit-content; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .builder-intro, .faq-intro { position: static; text-align: center; }
  .privacy-note { max-width: 27rem; margin-inline: auto; text-align: left; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 480px) {
  .container { width: min(calc(100% - 1.25rem), var(--container)); }
  .hero { padding-top: 2.75rem; }
  h1 { font-size: clamp(2.45rem, 12vw, 3.35rem); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .trust-list { display: grid; text-align: left; justify-content: center; }
  .floating-note { left: .5rem; bottom: 1rem; }
  .steps-grid, .benefits-grid, .product-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 0; }
  .featured-product { transform: none; }
  .book-showcase { padding: 1.2rem; }
  .book-title-overlay strong { font-size: 2rem; }
  .field-grid.two-columns, .radio-cards { grid-template-columns: 1fr; }
  .representation-options { grid-template-columns: 1fr; }
  .representation-options label > span { min-height: 5.5rem; }
  .photo-preview { grid-template-columns: 4.5rem 1fr; }
  .photo-preview img { width: 4.5rem; height: 4.5rem; }
  .builder-card { padding: 1.1rem; border-radius: 1.25rem; }
  .progress-copy { display: grid; gap: .15rem; }
  .progress-dots { display: none; }
  .form-navigation { align-items: center; }
  .next-button, .submit-button { width: auto; flex: 1; }
  .summary-row { grid-template-columns: 1fr; gap: .15rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: grid; }
  .mobile-sticky-cta { position: fixed; z-index: 90; left: .75rem; right: .75rem; bottom: .75rem; display: flex; min-height: 3.25rem; align-items: center; justify-content: center; border-radius: 999px; background: var(--gold); color: var(--navy); font-weight: 900; text-decoration: none; box-shadow: 0 10px 30px rgba(10,41,71,.3); }
  body { padding-bottom: 4.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-copy > * { opacity: 1; }
  .hero-visual { transform: none !important; }
  .hero-particles { opacity: .76; }
  .image-frame-hero .hero-slide { opacity: 0; transform: scale(1.015); animation: none !important; }
  .image-frame-hero .hero-slide:first-of-type { opacity: 1; }
}
