/* Obooga public homepage — marketing-only styles (the Story Studio owns style.css).
   Ported from the approved obooga-homepage-v2 mockup; sections 4+ extend the same system. */
:root {
  --night: #171429;
  --night-2: #211b3c;
  --night-3: #302652;
  --cream: #fff8ea;
  --paper: #f6ead3;
  --ink: #241d35;
  --ink-soft: #61586e;
  --coral: #ff7542;
  --coral-dark: #cd4e25;
  --teal: #36b7a6;
  --teal-dark: #188477;
  --gold: #ffd36e;
  --line: rgba(255, 255, 255, .16);
  --display: "Fredoka", "Trebuchet MS", sans-serif;
  --body: "Nunito Sans", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--body); font-size: 17px; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  color: #fff;
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.brand { font-family: var(--display); font-size: 28px; font-weight: 700; letter-spacing: -.04em; text-decoration: none; }
.brand span { color: var(--coral); }
nav { display: flex; align-items: center; gap: 31px; font-size: 14px; font-weight: 800; }
nav a { text-decoration: none; }
nav a:not(.nav-cta) { color: rgba(255,255,255,.8); transition: color .2s ease; }
nav a:not(.nav-cta):hover { color: #fff; }
.nav-cta { padding: 10px 18px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; background: rgba(255,255,255,.1); backdrop-filter: blur(12px); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 900px;
  padding: 136px 0 88px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 20%, rgba(82, 65, 139, .52), transparent 33%),
    radial-gradient(circle at 15% 88%, rgba(26, 143, 128, .2), transparent 34%),
    linear-gradient(145deg, #151225 0%, #201a39 57%, #141120 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -5%; right: -5%; bottom: -108px;   /* sunk lower so the arch never clips the trust row */
  height: 150px;
  z-index: 0;
  border-radius: 50% 50% 0 0;
  background: var(--cream);
}

.hero-stars i { position: absolute; z-index: 0; width: 5px; height: 5px; border-radius: 50%; background: #fff7cb; box-shadow: 0 0 10px 2px rgba(255,230,140,.65); animation: twinkle 2.4s ease-in-out infinite alternate; }
.hero-stars i:nth-child(1) { top: 18%; left: 7%; }
.hero-stars i:nth-child(2) { top: 28%; left: 43%; animation-delay: .7s; }
.hero-stars i:nth-child(3) { top: 12%; right: 10%; animation-delay: 1.2s; }
.hero-stars i:nth-child(4) { bottom: 20%; left: 5%; animation-delay: 1.7s; }
.hero-stars i:nth-child(5) { bottom: 26%; right: 4%; animation-delay: .25s; }
.hero-stars i:nth-child(6) { top: 58%; left: 48%; animation-delay: 1s; }

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(540px, 1.14fr);
  grid-template-areas:
    "eyebrow stage"
    "title stage"
    "summary stage"
    "actions stage"
    "trust stage";
  column-gap: clamp(42px, 5vw, 80px);
  align-items: start;
}

.hero-eyebrow { grid-area: eyebrow; display: flex; align-items: center; gap: 10px; margin: 28px 0 17px; color: #c9bee3; font-size: 13px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.hero-eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 5px rgba(54,183,166,.14); }
h1, h2, h3 { margin: 0; font-family: var(--display); line-height: 1.03; letter-spacing: -.035em; }
h1 { grid-area: title; max-width: 640px; font-size: clamp(52px, 5vw, 77px); font-weight: 600; }
.accent-line { position: relative; display: inline-block; z-index: 0; color: var(--cream); }
.accent-line::after { content: ""; position: absolute; left: 0; right: -5px; bottom: 1px; height: 10px; z-index: -1; border-radius: 999px; background: linear-gradient(90deg, var(--coral), #ffae65); transform: rotate(-1deg); opacity: .9; }
.hero-summary { grid-area: summary; max-width: 610px; margin: 26px 0 0; color: #d8d1e7; font-size: 18px; line-height: 1.65; }
.hero-actions { grid-area: actions; display: flex; align-items: center; gap: 23px; margin-top: 30px; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 54px; padding: 14px 23px; border-radius: 15px; font-family: var(--display); font-weight: 600; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: #fff; background: linear-gradient(180deg, #ff8655, var(--coral)); box-shadow: 0 6px 0 var(--coral-dark), 0 13px 28px rgba(0,0,0,.24); }
.button-primary:hover { box-shadow: 0 9px 0 var(--coral-dark), 0 18px 34px rgba(0,0,0,.28); }
.button-link { color: #8ce5d9; font-size: 15px; font-weight: 800; text-underline-offset: 5px; }

.hero-trust { grid-area: trust; position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 38px 0 0; padding: 21px 0 0; border-top: 1px solid var(--line); list-style: none; }
.hero-trust li { display: grid; gap: 2px; }
.hero-trust strong { color: #fff; font-size: 14px; }
.hero-trust span { color: #9e95b5; font-size: 12px; line-height: 1.35; }

.hero-stage {
  grid-area: stage;
  position: relative;
  height: 635px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 34px;
  background: #403457;
  box-shadow: 0 35px 80px rgba(3, 2, 11, .46), inset 0 0 0 7px rgba(255,255,255,.05);
  transform: rotate(.7deg);
}
.hero-stage::before { content: ""; position: absolute; inset: 13px; z-index: 6; pointer-events: none; border: 1px solid rgba(255,255,255,.25); border-radius: 23px; }
.hero-world { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% center; transform: scale(1.02); animation: slow-push 15s ease-out forwards; }
.hero-vignette { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(16,11,34,.07) 30%, rgba(16,11,34,.72) 100%), linear-gradient(90deg, rgba(16,11,34,.25), transparent 45%); }
.story-label { position: absolute; top: 31px; left: 31px; z-index: 8; display: grid; gap: 3px; max-width: 230px; padding: 11px 15px; border: 1px solid rgba(255,255,255,.25); border-radius: 12px; color: #fff; background: rgba(24,18,43,.72); backdrop-filter: blur(12px); transform: rotate(-1.5deg); }
.story-label span { color: #bcb2d3; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.story-label strong { font-family: var(--display); font-size: 16px; line-height: 1.1; }
.obooga-line { position: absolute; top: 113px; right: 25px; z-index: 9; width: 265px; padding: 13px 16px; border-radius: 16px 16px 5px 16px; color: var(--ink); background: rgba(255,248,234,.95); box-shadow: 0 9px 25px rgba(22,13,32,.22); font-family: var(--display); font-size: 15px; font-weight: 600; line-height: 1.25; transform: rotate(1deg); }
.obooga-line::after { content: ""; position: absolute; right: 20px; bottom: -14px; border-width: 14px 0 0 18px; border-style: solid; border-color: transparent transparent transparent rgba(255,248,234,.95); }
.hero-kid { position: absolute; z-index: 4; bottom: 20px; left: 5%; height: 42%; filter: drop-shadow(0 13px 15px rgba(10,6,21,.5)); transform-origin: bottom center; animation: kid-ready 4s ease-in-out infinite alternate; }
.hero-obooga { position: absolute; z-index: 5; right: -4%; bottom: 3px; width: 57%; }
.hero-obooga img { width: 100%; filter: drop-shadow(0 15px 15px rgba(10,6,21,.5)); transform-origin: bottom center; animation: obooga-breathe 3s ease-in-out infinite alternate; }
.hardcover-outcome { position: absolute; z-index: 7; left: 31%; bottom: 24px; width: 230px; height: 176px; pointer-events: none; }
.hardcover-book { position: absolute; left: 0; bottom: 0; width: 112px; aspect-ratio: .773; transform: perspective(700px) rotateY(-12deg) rotateZ(-6deg); transform-origin: bottom center; filter: drop-shadow(0 16px 13px rgba(10,6,21,.5)); }
.hardcover-cover-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 1px solid rgba(255,255,255,.5); border-radius: 4px 7px 7px 4px; box-shadow: inset 5px 0 8px rgba(7,40,38,.35); }
.hardcover-book::before { content: ""; position: absolute; top: 4px; bottom: 4px; left: -8px; width: 10px; z-index: -1; border-radius: 5px 0 0 5px; background: linear-gradient(90deg, #0b5f5c, #2aa294); box-shadow: inset 2px 0 rgba(255,255,255,.25); }
.hardcover-book::after { content: ""; position: absolute; right: -6px; bottom: -5px; left: 7px; height: 8px; z-index: -2; border-radius: 0 0 4px 4px; background: repeating-linear-gradient(0deg, #efe1c2 0 1px, #fff7e8 1px 2px); transform: skewX(-24deg); }
.hardcover-cover { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 13px 10px 10px; border: 1px solid rgba(255,255,255,.5); border-radius: 4px 7px 7px 4px; color: #fff; background: linear-gradient(180deg, rgba(17,12,35,.1), rgba(17,12,35,.83)), url("/home/backyard_three_ships_spread.webp") center / cover; box-shadow: inset 5px 0 8px rgba(7,40,38,.35); text-shadow: 0 1px 5px rgba(0,0,0,.65); }
.hardcover-cover small { font-size: 5px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.hardcover-cover strong { font-family: var(--display); font-size: 13px; line-height: 1.02; letter-spacing: -.02em; }
.hardcover-cover span { font-size: 6px; font-weight: 800; line-height: 1.25; }
.hardcover-tag { position: absolute; left: 86px; bottom: 4px; display: grid; width: 137px; padding: 10px 11px; border: 1px solid rgba(255,255,255,.45); border-radius: 12px; color: var(--ink); background: rgba(255,248,234,.96); box-shadow: 0 10px 24px rgba(10,6,21,.34); transform: rotate(2deg); }
.hardcover-tag span { color: var(--coral-dark); font-size: 7px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.hardcover-tag strong { font-family: var(--display); font-size: 12px; line-height: 1.1; }
.idea-spark { position: absolute; z-index: 7; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; color: var(--gold); background: rgba(31,24,53,.72); box-shadow: 0 0 18px rgba(255,211,110,.28); font-family: var(--display); font-weight: 700; }
.idea-spark.one { right: 44%; bottom: 25%; width: 42px; height: 42px; animation: float-one 3s ease-in-out infinite alternate; }
.idea-spark.two { right: 7%; bottom: 45%; width: 30px; height: 30px; animation: float-two 2.7s ease-in-out infinite alternate; }

.how { position: relative; padding: 56px 0 135px; background: var(--cream); }
.how-shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section-intro { max-width: 720px; margin: 0 auto 86px; text-align: center; }
.section-kicker, .beat-kicker { margin: 0 0 11px; color: var(--teal-dark); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.section-intro h2 { font-size: clamp(42px, 5vw, 65px); font-weight: 600; }
.section-intro > p:last-child { max-width: 610px; margin: 22px auto 0; color: var(--ink-soft); font-size: 18px; }
.story-road { position: relative; display: grid; gap: 130px; }
.story-road::before { content: ""; position: absolute; top: 4%; bottom: 4%; left: 50%; width: 1px; z-index: 0; background: linear-gradient(transparent, #d9c9ad 8%, #d9c9ad 92%, transparent); }
.story-beat { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(55px, 7vw, 96px); align-items: center; }
.story-beat.reverse { grid-template-columns: .85fr 1.15fr; }
.story-beat.reverse .beat-visual { order: 2; }
.beat-copy { max-width: 430px; }
.story-beat.reverse .beat-copy { justify-self: end; }
.beat-number { display: inline-grid; place-items: center; width: 48px; height: 48px; margin-bottom: 22px; border: 1px solid #cdbd9f; border-radius: 50%; color: var(--coral-dark); background: var(--cream); box-shadow: 0 0 0 8px var(--cream); font-family: var(--display); font-size: 15px; font-weight: 600; }
.beat-copy h3 { max-width: 460px; margin-bottom: 18px; font-size: clamp(34px, 4vw, 49px); font-weight: 600; }
.beat-copy > p:not(.beat-kicker):not(.kid-prompt) { margin: 0; color: var(--ink-soft); font-size: 17px; }
.kid-prompt { display: inline-block; margin: 24px 0 0; padding: 11px 15px; border-radius: 10px; color: #fff; background: var(--night-3); font-family: var(--display); font-size: 15px; font-weight: 500; transform: rotate(-1deg); }
.beat-visual { position: relative; overflow: hidden; min-height: 480px; border-radius: 28px; background: var(--night); box-shadow: 0 26px 60px rgba(49,37,61,.2); }
.scene-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.scene-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 30%, rgba(20,15,37,.64)); }
.scene-obooga { position: absolute; z-index: 2; right: -3%; bottom: -2%; height: 71%; filter: drop-shadow(0 13px 14px rgba(15,9,27,.48)); }
.scene-caption { position: absolute; z-index: 3; left: 24px; bottom: 24px; max-width: 265px; padding: 12px 16px; border-radius: 14px; color: var(--ink); background: rgba(255,248,234,.95); font-family: var(--display); font-size: 18px; font-weight: 600; transform: rotate(-1.5deg); }
.browser-visual { min-height: 440px; padding: 48px 20px 20px; background: #211b34; }
.browser-top { position: absolute; inset: 0 0 auto; height: 45px; display: flex; align-items: center; gap: 7px; padding: 0 17px; color: #9188a5; background: #171324; font-size: 10px; }
.browser-top i { width: 8px; height: 8px; border-radius: 50%; background: #615970; }
.browser-top span { margin-left: 8px; }
.browser-visual > img { width: 100%; height: 100%; min-height: 370px; border-radius: 8px; object-fit: cover; object-position: center; }
.choice-tags { position: absolute; left: 28px; right: 28px; bottom: 24px; display: flex; justify-content: center; gap: 7px; }
.choice-tags span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; color: #fff; background: rgba(28,21,45,.75); backdrop-filter: blur(7px); font-size: 10px; font-weight: 800; }
.mini-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.mini-list li { padding: 7px 11px; border-radius: 999px; color: var(--teal-dark); background: #dff4ed; font-size: 11px; font-weight: 800; }
.book-visual { min-height: 430px; display: grid; place-items: center; padding: 38px; overflow: visible; background: linear-gradient(145deg, #211b3a, #171326); }
.book-glow { position: absolute; inset: 10% 13%; border-radius: 50%; background: rgba(255,198,99,.25); filter: blur(35px); }
.book-visual > img { position: relative; z-index: 1; width: 100%; border-radius: 10px; box-shadow: 0 22px 45px rgba(0,0,0,.45); transform: rotate(-1.2deg); }
.book-badge { position: absolute; z-index: 3; right: 18px; bottom: 17px; display: grid; padding: 11px 15px; border: 1px solid #e6d5b4; border-radius: 10px; color: var(--ink); background: var(--cream); box-shadow: 0 8px 20px rgba(0,0,0,.2); transform: rotate(2deg); }
.book-badge span { color: #887859; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.book-badge strong { font-family: var(--display); font-size: 14px; }
.text-link { display: inline-block; margin-top: 22px; color: var(--teal-dark); font-weight: 900; text-underline-offset: 4px; }

/* ---- The difference (authored, not personalized) ---- */
.authored { padding: 40px 0 120px; background: var(--cream); }
.authored-shell { width: min(1020px, calc(100% - 40px)); margin: 0 auto; }
.authored .section-intro { margin-bottom: 56px; }
.authored-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.authored-card { padding: 34px 36px 38px; border-radius: 24px; }
.authored-card.them { color: var(--ink); background: var(--paper); box-shadow: inset 0 0 0 1px #e4d4b4; }
.authored-card.us { color: #fff; background: linear-gradient(160deg, #1f9384, var(--teal-dark)); box-shadow: 0 22px 45px rgba(24,132,119,.28); }
.authored-card h3 { margin-bottom: 18px; font-size: 24px; font-weight: 600; }
.authored-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.authored-card li { position: relative; padding-left: 28px; font-size: 16.5px; line-height: 1.45; }
.authored-card.them li { color: var(--ink-soft); }
.authored-card.them li::before { content: "·"; position: absolute; left: 8px; top: -2px; font-size: 26px; color: #b7a683; }
.authored-card.us li::before { content: "✦"; position: absolute; left: 2px; color: var(--gold); font-size: 14px; top: 3px; }
.authored-note { max-width: 620px; margin: 34px auto 0; text-align: center; color: var(--ink-soft); font-family: var(--display); font-size: 19px; font-weight: 500; }

/* ---- For grown-ups ---- */
.grownups { padding: 105px 0; background: var(--paper); }
.grownups-shell { width: min(1020px, calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(40px, 6vw, 80px); align-items: end; }
.grownups-copy h2 { margin-bottom: 22px; font-size: clamp(38px, 4.5vw, 56px); font-weight: 600; }
.grownups-copy > p { margin: 0 0 18px; color: var(--ink-soft); font-size: 17.5px; max-width: 560px; }
.grownups-quote { display: inline-block; margin-top: 12px; padding: 18px 22px; border-left: 4px solid var(--coral); border-radius: 0 16px 16px 0; background: var(--cream); }
.grownups-quote p { margin: 0; font-family: var(--display); font-size: 19px; font-weight: 500; color: var(--ink); }
.grownups-art img { max-height: 330px; margin: 0 auto; filter: drop-shadow(0 14px 16px rgba(49,37,61,.28)); }

/* ---- Keepsake / pricing ---- */
.keepsake { padding: 115px 0 125px; color: #fff; background: linear-gradient(160deg, var(--night-2), var(--night) 70%); }
.keepsake-shell { width: min(1020px, calc(100% - 40px)); margin: 0 auto; }
.keepsake .section-intro { margin-bottom: 60px; }
.keepsake .section-intro h2 { color: #fff; }
.keepsake-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.keepsake-card { padding: 34px 36px 38px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.045); }
.keepsake-card.featured { border-color: rgba(255,211,110,.5); background: rgba(255,211,110,.07); box-shadow: 0 0 45px rgba(255,211,110,.12); }
.keepsake-kicker { margin: 0 0 10px; color: #b9aed6; font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.keepsake-card.featured .keepsake-kicker { color: var(--gold); }
.keepsake-card h3 { margin-bottom: 14px; font-size: 26px; font-weight: 600; }
.keepsake-card p { margin: 0; color: #cfc7e2; font-size: 16.5px; }
.keepsake-price { margin-top: 18px !important; display: inline-block; padding: 8px 14px; border: 1px solid rgba(255,211,110,.55); border-radius: 999px; color: var(--gold) !important; font-family: var(--display); font-size: 14px !important; font-weight: 600; }
.keepsake-photo { position: relative; margin-top: 26px; overflow: hidden; border-radius: 24px; border: 1px solid var(--line); }
.keepsake-photo img { width: 100%; }
.keepsake-photo-note { position: absolute; left: 18px; bottom: 14px; padding: 7px 13px; border-radius: 999px; color: #fff; background: rgba(20,15,37,.72); backdrop-filter: blur(8px); font-size: 12px; font-weight: 800; }

/* ---- The grown-up promise ---- */
.promise { padding: 115px 0; background: var(--cream); }
.promise-shell { width: min(1020px, calc(100% - 40px)); margin: 0 auto; }
.promise .section-intro { margin-bottom: 54px; }
.promise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 0; padding: 0; list-style: none; }
.promise-grid li { position: relative; padding: 26px 28px 28px 62px; border-radius: 20px; background: #fff; box-shadow: 0 10px 28px rgba(49,37,61,.09); color: var(--ink-soft); font-size: 16px; line-height: 1.55; }
.promise-grid li::before { content: "✓"; position: absolute; left: 24px; top: 26px; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 8px; color: #fff; background: var(--teal); font-size: 13px; font-weight: 900; }
.promise-grid strong { display: block; margin-bottom: 4px; color: var(--ink); font-family: var(--display); font-size: 18px; font-weight: 600; }

/* ---- FAQ ---- */
.faq { padding: 20px 0 120px; background: var(--cream); }
.faq-shell { width: min(760px, calc(100% - 40px)); margin: 0 auto; }
.faq .section-intro { margin-bottom: 44px; }
.faq details { border-bottom: 1px solid #e2d3b3; }
.faq summary { padding: 20px 34px 20px 4px; cursor: pointer; list-style: none; position: relative; font-family: var(--display); font-size: 19px; font-weight: 500; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); color: var(--coral-dark); font-size: 24px; font-weight: 600; transition: transform .2s ease; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { margin: 0; padding: 0 4px 24px; color: var(--ink-soft); font-size: 16px; max-width: 640px; }

/* ---- Final CTA ---- */
.rescue { padding: 100px 0; color: #fff; background: linear-gradient(145deg, var(--night), #292047); }
.rescue-shell { width: min(1050px, calc(100% - 40px)); min-height: 365px; margin: 0 auto; display: grid; grid-template-columns: 360px 1fr; align-items: center; gap: 65px; padding: 45px 70px 0 35px; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 32px; background: radial-gradient(circle at 15% 40%, rgba(54,183,166,.19), transparent 34%), rgba(255,255,255,.035); }
.rescue-shell img { align-self: end; max-height: 340px; filter: drop-shadow(0 13px 15px rgba(0,0,0,.4)); }
.rescue h2 { margin-bottom: 14px; font-size: clamp(40px, 5vw, 61px); font-weight: 600; }
.rescue p:not(.section-kicker) { margin: 0 0 25px; color: #c9c1d8; }

/* ---- Footer ---- */
.site-footer { padding: 30px 0; color: #9e95b5; background: #12101f; font-size: 14px; }
.footer-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.site-footer nav { display: flex; gap: 24px; font-size: 13px; font-weight: 700; }
.site-footer a { color: #9e95b5; text-decoration: none; }
.site-footer a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes twinkle { to { opacity: .24; transform: scale(.55); } }
@keyframes slow-push { to { transform: scale(1.09) translateX(-1.5%); } }
@keyframes obooga-breathe { to { transform: translateY(-5px) scale(1.015) rotate(-.5deg); } }
@keyframes kid-ready { to { transform: translateY(-4px) rotate(1deg); } }
@keyframes float-one { to { transform: translate(6px,-10px) rotate(8deg); } }
@keyframes float-two { to { transform: translate(-5px,-8px) rotate(-10deg); } }

@media (max-width: 1000px) {
  .hero { min-height: 0; padding-bottom: 120px; }
  .hero-shell { grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr); column-gap: 38px; }
  .hero-stage { height: 575px; }
  h1 { font-size: clamp(47px, 5.5vw, 65px); }
  .hero-trust { grid-template-columns: 1fr; }
  .hero-trust li { grid-template-columns: 145px 1fr; }
}

@media (max-width: 760px) {
  .nav-shell { width: min(100% - 28px, 680px); height: 70px; }
  .brand { font-size: 23px; }
  nav a:not(.nav-cta) { display: none; }
  .nav-cta { display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px; font-size: 12px; }
  .hero { padding: 102px 0 92px; }
  .hero::after { bottom: -105px; }
  .hero-shell {
    width: min(100% - 28px, 680px);
    grid-template-columns: 1fr;
    grid-template-areas: "eyebrow" "title" "stage" "summary" "actions" "trust";
  }
  .hero-eyebrow { margin: 5px 0 13px; font-size: 10px; }
  h1 { font-size: clamp(40px, 11.5vw, 60px); line-height: 1.02; }
  .accent-line::after { bottom: 0; height: 7px; }
  .hero-stage { height: 360px; margin-top: 25px; border-radius: 24px; transform: none; }
  .hero-stage::before { inset: 8px; border-radius: 17px; }
  .story-label { top: 17px; left: 17px; max-width: 155px; padding: 8px 10px; }
  .story-label span { font-size: 7px; }
  .story-label strong { font-size: 11px; }
  .obooga-line { top: 17px; right: 13px; width: 160px; padding: 9px 11px; font-size: 10px; }
  .hero-kid { left: 3%; bottom: 10px; height: 40%; }
  .hero-obooga { right: -5%; bottom: 0; width: 59%; }
  .hardcover-outcome { left: 35%; bottom: 11px; width: 150px; height: 115px; }
  .hardcover-book { width: 70px; }
  .hardcover-cover { padding: 8px 6px 6px; }
  .hardcover-cover small { font-size: 3px; }
  .hardcover-cover strong { font-size: 8px; }
  .hardcover-cover span { font-size: 4px; }
  .hardcover-tag { left: 52px; bottom: 3px; width: 92px; padding: 7px 8px; }
  .hardcover-tag span { font-size: 5px; }
  .hardcover-tag strong { font-size: 8px; }
  .idea-spark.one { right: 44%; width: 31px; height: 31px; }
  .idea-spark.two { display: none; }
  .hero-summary { margin-top: 24px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 15px; margin-top: 24px; }
  .button { width: 100%; }
  .button-link { align-self: center; }
  .hero-trust { grid-template-columns: 1fr; gap: 12px; margin-top: 30px; padding-top: 18px; }
  .hero-trust li { grid-template-columns: 140px 1fr; }
  .how { padding: 48px 0 105px; }
  .how-shell { width: min(100% - 28px, 680px); }
  .section-intro { margin-bottom: 60px; text-align: left; }
  .section-intro h2 { font-size: clamp(38px, 10vw, 54px); }
  .section-intro > p:last-child { margin-left: 0; font-size: 16px; }
  .story-road { gap: 82px; }
  .story-road::before { display: none; }
  .story-beat, .story-beat.reverse { grid-template-columns: 1fr; gap: 35px; }
  .story-beat.reverse .beat-visual { order: 0; }
  .story-beat.reverse .beat-copy { justify-self: auto; }
  .beat-visual { min-height: 385px; border-radius: 22px; }
  .browser-visual { min-height: 340px; }
  .browser-visual > img { min-height: 275px; }
  .book-visual { min-height: 320px; padding: 25px 18px; }
  .beat-number { margin-bottom: 18px; }
  .beat-copy h3 { font-size: clamp(34px, 9vw, 45px); }
  .authored { padding: 10px 0 90px; }
  .authored-shell { width: min(100% - 28px, 680px); }
  .authored-grid { grid-template-columns: 1fr; }
  .authored-note { text-align: left; margin-top: 26px; }
  .grownups { padding: 80px 0; }
  .grownups-shell { width: min(100% - 28px, 680px); grid-template-columns: 1fr; }
  .grownups-art { display: none; }
  .keepsake { padding: 90px 0 95px; }
  .keepsake-shell { width: min(100% - 28px, 680px); }
  .keepsake-grid { grid-template-columns: 1fr; }
  .promise { padding: 90px 0; }
  .promise-shell { width: min(100% - 28px, 680px); }
  .promise-grid { grid-template-columns: 1fr; }
  .faq { padding: 0 0 90px; }
  .rescue { padding: 75px 0; }
  .rescue-shell { width: min(100% - 28px, 680px); grid-template-columns: 130px 1fr; gap: 15px; min-height: 320px; padding: 35px 25px 0 5px; }
  .rescue-shell img { max-height: 260px; }
  .rescue .button { width: auto; }
}

@media (max-width: 430px) {
  .hero-stage { height: 305px; }
  .hero-world { object-position: 62% center; }
  .hero-obooga { width: 64%; right: -9%; }
  .hardcover-outcome { left: 34%; }
  .hero-kid { height: 37%; left: -1%; }
  .story-label { max-width: 126px; }
  .obooga-line { top: 16px; right: 9px; width: 148px; }
  .hero-summary { line-height: 1.55; }
  .hero-trust li { grid-template-columns: 125px 1fr; }
  .scene-obooga { height: 62%; right: -10%; }
  .scene-caption { left: 16px; bottom: 16px; max-width: 220px; font-size: 15px; }
  .choice-tags { display: none; }
  .book-badge { right: 10px; bottom: 10px; }
  .rescue-shell { grid-template-columns: 1fr; padding: 35px 24px 0; text-align: center; }
  .rescue-shell > div { order: 1; }
  .rescue-shell img { order: 2; margin: 0 auto; max-height: 225px; }
  .rescue .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
