/* ============================================================================
   tiina.ai/next — alternate homepage + families page (preview, not live nav)
   One stylesheet for both pages. Brand tokens match styles.css; hero copy
   typography (h1.eyebrow, .hv-headline, .subheadline, .friction-text) comes
   from /hero-tilt.css — production-verbatim. Scenario tabs/cards and the
   permission stack are copied from homepage-v2.css/site-bundle.css values.
   Phone sim + lightbox internals: /hero-tilt.css + next/hero-demo.css.
   Footer styling lives ONLY in /footer.css.
   ========================================================================== */
:root {
  --cream: #FDF8F3;
  --white: #FFFFFF;
  --coral: #C67B5C;
  --coral-dark: #A85D40;
  --peach: #E8C4B8;
  --peach-light: rgba(232, 196, 184, 0.25);
  --charcoal: #1A1D1E;
  --gray: #3D4246;
  --font-serif: 'Libre Baskerville', Georgia, serif;
  --font-sans: 'Source Sans 3', -apple-system, sans-serif;
  --content-w: 1080px;
  --column-w: 760px;
  --radius: 16px;
  --radius-panel: 24px;
  --shadow-card: 0 4px 24px rgba(45, 52, 54, 0.07);
  --shadow-panel: 0 12px 48px rgba(45, 52, 54, 0.10);
  --focus-ring: 3px solid var(--charcoal);
  --touch-target: 56px;
}
@media (prefers-contrast: more) {
  :root { --cream: #FFFFFF; --gray: #000000; --coral: #904020; --peach-light: rgba(0,0,0,0.12); }
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; color: var(--charcoal); }
:focus-visible { outline: var(--focus-ring); outline-offset: 4px; border-radius: 4px; }
:target { scroll-margin-top: 96px; }
img { max-width: 100%; height: auto; display: block; }

.skip-to-main { position: absolute; left: -9999px; top: 16px; z-index: 10000; padding: 14px 24px; background: var(--charcoal); color: var(--white); font: 600 18px var(--font-sans); text-decoration: none; border-radius: 8px; }
.skip-to-main:focus { left: 16px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: var(--touch-target); padding: 15px 36px; border-radius: 50px; font: 700 19px/1.2 var(--font-sans); text-decoration: none; cursor: pointer; border: none; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.btn-primary { background: var(--coral); color: var(--white); }
.btn-primary:hover { background: var(--coral-dark); transform: scale(1.04); box-shadow: 0 4px 20px rgba(198,123,92,.4); }
.btn-secondary { background: transparent; color: var(--coral-dark); border: 2px solid var(--coral); }
.btn-secondary:hover { background: rgba(198,123,92,.08); transform: scale(1.04); }

/* ---------- Nav ---------- */
.site-nav { position: sticky; top: 0; z-index: 50; background: rgba(253,248,243,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: box-shadow .2s ease; padding: 0 32px; }
.site-nav.scrolled { box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.nav-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 16px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-lockup { height: 52px; width: auto; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 28px; flex: 1; justify-content: center; white-space: nowrap; min-width: 0; }
.nav-links a { text-decoration: none; color: var(--gray); font-size: 19px; font-weight: 600; flex-shrink: 0; transition: color .15s ease; }
.nav-links a:hover { color: var(--charcoal); }
.nav-cta { background: var(--coral); color: var(--white); padding: 10px 22px; border-radius: 50px; font: 700 19px var(--font-sans); text-decoration: none; white-space: nowrap; flex-shrink: 0; transition: background .2s ease, transform .2s ease; }
.nav-cta:hover { background: var(--coral-dark); transform: scale(1.04); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; min-height: var(--touch-target); min-width: var(--touch-target); align-items: center; justify-content: center; flex-direction: column; gap: 5px; flex-shrink: 0; }
.hamburger-line { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; }
.mobile-menu { padding: 8px 24px 24px; flex-direction: column; gap: 4px; border-top: 1px solid var(--peach-light); display: none; }
.mobile-menu:not([hidden]) { display: flex; }
.mobile-menu a:not(.btn) { text-decoration: none; color: var(--charcoal); font-size: 19px; font-weight: 600; padding: 14px 0; min-height: 48px; display: flex; align-items: center; justify-content: center; }
.mobile-menu .btn { margin-top: 12px; }
/* Breakpoint chosen so desktop links NEVER crowd the lockup: below 1100px the
   full link row can't fit beside an unshrunk logo + CTA, so switch to burger. */
@media (max-width: 1099px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { margin-left: auto; }
}
@media (max-width: 767px) {
  /* Mobile chrome: CTA + burger are fixed-width, the logo flexes into whatever
     space remains — the nav can never overflow the viewport (burger stays on-screen). */
  .site-nav { padding: 0 14px; }
  .nav-inner { height: 64px; gap: 8px; }
  .nav-logo { flex-shrink: 1; min-width: 0; }
  .nav-lockup { height: 34px; max-width: 100%; object-fit: contain; object-position: left center; }
  .nav-cta { padding: 10px 12px; }
  .nav-hamburger { min-width: 44px; min-height: 44px; padding: 6px; }
}
@media (max-width: 349px) {
  .nav-cta { display: none; } /* legacy tiny screens: CTA lives in the burger menu */
}

/* ---------- Sections ---------- */
.section { padding: 104px 24px; display: flex; justify-content: center; }
.section-inner { width: 100%; max-width: var(--content-w); }
.section-narrow { max-width: var(--column-w); }
.bg-white { background: var(--white); }
.bg-tint { background: rgba(232, 196, 184, 0.14); }
.bg-dark { background: var(--charcoal); }
/* Section eyebrow — production .pra-eyebrow values */
.eyebrow { font-family: var(--font-sans); text-transform: uppercase; letter-spacing: .12em; font-size: 13.5px; font-weight: 700; color: var(--coral-dark); margin-bottom: 16px; }
.sec-h2 { font-size: 40px; margin-bottom: 22px; }
.sec-sub { font-size: 21px; line-height: 1.55; color: var(--gray); max-width: 720px; }
.center { text-align: center; }
.center .sec-sub { margin-left: auto; margin-right: auto; }

/* Reveal on scroll */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; } }

/* ---------- Hero copy column ----------
   h1.eyebrow / .hv-headline / .subheadline / .friction-text: /hero-tilt.css.
   .reassure + .trust-strip/.trust-chip: production index.html inline values. */
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.reassure { margin-top: 10px; font: 400 16px/1.5 var(--font-sans); color: var(--gray); }
.trust-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.trust-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid rgba(198,123,92,.35); border-radius: 999px; padding: 8px 16px; font: 600 14px/1.2 var(--font-sans); color: var(--gray); }
.trust-chip svg { width: 15px; height: 15px; color: var(--coral-dark); flex-shrink: 0; }

/* ---------- Evidence tiles (borrowed credibility) ---------- */
.evidence { background: rgba(232, 196, 184, 0.14); padding: 72px 24px; }
.ev-head { font-size: 30px; margin-bottom: 34px; }
.ev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 860px; margin: 0 auto; }
.ev-tile { background: var(--white); border: 1px solid var(--peach-light); border-radius: var(--radius); padding: 28px 30px; text-align: left; box-shadow: var(--shadow-card); }
.ev-stat { font-family: var(--font-serif); font-size: 34px; font-weight: 700; color: var(--charcoal); line-height: 1.1; margin-bottom: 8px; }
.ev-copy { font-size: 18px; line-height: 1.55; color: var(--gray); margin-bottom: 10px; }
.ev-src { font: 400 14px/1.4 var(--font-sans); color: var(--gray); }
.scn-stat { font-size: 15px; line-height: 1.5; color: var(--gray); margin: 0; }
.scn-stat .stat-src { display: block; font-size: 14px; margin-top: 2px; }
.steps-chips { justify-content: center; margin-top: 22px; }
.center .sec-sub + .steps-chips { margin-top: 26px; }

/* ---------- Router band ---------- */
.router { background: var(--charcoal); padding: 20px 24px; display: flex; justify-content: center; }
.router-inner { max-width: var(--content-w); width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; text-align: center; }
.router p { color: rgba(255,255,255,.92); font: 600 18px/1.5 var(--font-sans); }
.router a { color: #F3CDBC; font-weight: 700; text-decoration: none; border-bottom: 2px solid rgba(243,205,188,.5); padding-bottom: 1px; transition: border-color .15s ease; }
.router a:hover { border-color: #F3CDBC; }

/* ---------- Scenario tabs — production .sca-* values, photo column added.
   Panels are STACKED in one grid cell so the card height is constant across
   tabs (hidden panels stay in layout via visibility, not display). ---------- */
.scn-tabs { display: flex; justify-content: center; gap: 6px; margin: 36px auto 40px; padding: 6px; background: var(--peach-light); border-radius: 999px; width: fit-content; max-width: 100%; }
.scn-tab { font-family: var(--font-sans); font-size: 17.5px; font-weight: 600; color: var(--gray); background: transparent; border: 0; border-radius: 999px; padding: 12px 26px; min-height: 48px; cursor: pointer; transition: background .25s ease, color .25s ease, box-shadow .25s ease; white-space: nowrap; }
.scn-tab:hover { color: var(--coral-dark); }
.scn-tab.active { background: var(--white); color: var(--coral-dark); box-shadow: 0 3px 12px rgba(198, 123, 92, 0.22); }
.scn-panels { display: grid; max-width: 1000px; margin: 0 auto; }
.scn-panel { grid-area: 1 / 1; }
.scn-panel[aria-hidden="true"] { visibility: hidden; pointer-events: none; }
.scn-card { display: grid; grid-template-columns: .92fr 1.08fr; gap: 0; background: var(--white); border-radius: 24px; overflow: hidden; box-shadow: 0 2px 8px rgba(26, 29, 30, 0.05), 0 24px 60px rgba(198, 123, 92, 0.16); text-align: left; height: 100%; }
.scn-photo { position: relative; min-height: 320px; }
.scn-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.scn-body { background: linear-gradient(160deg, rgba(232, 196, 184, 0.32), rgba(232, 196, 184, 0.14)); padding: 40px 38px; display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.scn-body h3 { font-family: var(--font-serif); font-size: 27px; color: var(--charcoal); margin: 0; }
.scn-body .scn-story { font-size: 19px; line-height: 1.6; color: var(--gray); margin: 0; }
.scn-body .scn-story strong { color: var(--charcoal); }
.scn-bubble { background: var(--white); border-radius: 18px 18px 18px 6px; padding: 22px 24px; font-size: 18.5px; line-height: 1.6; color: var(--charcoal); box-shadow: 0 8px 24px rgba(198, 123, 92, 0.18); }
.scn-spk { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral-dark); margin-bottom: 10px; }
.scn-spk img { width: 20px; height: 20px; }
.scn-outcome { display: flex; gap: 10px; font-size: 17.5px; line-height: 1.55; color: var(--gray); margin: 0; }
.scn-outcome svg { width: 22px; height: 22px; color: var(--coral-dark); flex-shrink: 0; margin-top: 3px; }
.scn-tryline { text-align: center; margin-top: 32px; font: 400 17px/1.5 var(--font-sans); color: var(--gray); }
.scn-tryline button { background: none; border: none; color: var(--coral-dark); font: 600 17px/1.5 var(--font-sans); text-decoration: underline; cursor: pointer; padding: 0; }

/* ---------- Memory ---------- */
.memory-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; max-width: 1120px; width: 100%; }
.memory-photo img { border-radius: var(--radius-panel); box-shadow: var(--shadow-panel); aspect-ratio: 4 / 3; object-fit: cover; }
.memory-days { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
.day-card { background: var(--white); border: 1px solid var(--peach-light); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow-card); }
.day-tag { font: 700 13.5px/1.3 var(--font-sans); letter-spacing: .12em; text-transform: uppercase; color: var(--coral-dark); margin-bottom: 6px; }
.day-card p { font-size: 19px; line-height: 1.5; }
.day-card .spk { font-weight: 700; }
.memory-control { font-size: 19px; color: var(--gray); margin-bottom: 24px; }
.memory-control strong { color: var(--charcoal); }

/* ---------- Day rhythm ---------- */
.rhythm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.rhythm-card { background: var(--white); border: 1px solid var(--peach-light); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-card); }
.rhythm-time { font: 700 15px/1.3 var(--font-sans); letter-spacing: .1em; color: var(--coral-dark); margin-bottom: 14px; }
.rhythm-card blockquote { font-family: var(--font-serif); font-size: 20px; line-height: 1.5; color: var(--charcoal); margin-bottom: 12px; }
.rhythm-card figcaption { font: 600 15px/1.4 var(--font-sans); color: var(--gray); }
.rhythm-note { text-align: center; font-size: 19px; color: var(--gray); margin-top: 36px; }

/* ---------- Built wrong ---------- */
.built-copy { font-size: 21px; line-height: 1.6; color: var(--charcoal); opacity: .85; max-width: 680px; margin: 0 auto 36px; text-align: center; }
.built-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.built-chips .trust-chip { font-size: 16px; padding: 12px 22px; margin-top: 0; }

/* ---------- Steps ---------- */
.steps { display: flex; flex-direction: column; gap: 12px; margin-top: 44px; }
.step-row { display: grid; grid-template-columns: 96px 1fr auto; gap: 28px; align-items: center; background: var(--white); border: 1px solid var(--peach-light); border-radius: var(--radius); padding: 32px 36px; box-shadow: var(--shadow-card); }
.bg-white .step-row { background: var(--cream); }
.step-num { font-family: var(--font-serif); font-size: 64px; font-weight: 700; color: var(--peach); line-height: 1; text-align: center; }
.step-body h3 { font-family: var(--font-sans); font-size: 22px; margin-bottom: 8px; }
.step-body p { font-size: 18px; color: var(--gray); line-height: 1.55; }
.step-body .step-alt { font-size: 16px; color: var(--gray); margin-top: 10px; }
.step-body .step-alt a { color: var(--coral-dark); font-weight: 600; }
.hs-allow-note { font-size: 16px; font-weight: 600; color: var(--coral-dark); margin-top: 10px; }
.step-aside { display: flex; align-items: center; justify-content: center; }

/* Permission dialogs — production site-bundle values */
.permission-mock { background: var(--white); border-radius: 14px; overflow: hidden; border: 1px solid rgba(0,0,0,.06); text-align: center; max-width: 220px; box-shadow: 0 4px 16px rgba(0,0,0,.12), 0 1px 3px rgba(0,0,0,.06); }
.permission-mock-title { padding: 16px 16px 12px; font-size: 13px; font-weight: 600; color: var(--charcoal); margin-bottom: 0; line-height: 1.4; font-family: var(--font-sans); }
.permission-mock-buttons { display: flex; border-top: 1px solid rgba(0,0,0,.08); }
.permission-mock-btn { flex: 1; padding: 10px 8px; font-size: 14px; color: #007AFF; font-family: var(--font-sans); }
.permission-mock-btn + .permission-mock-btn { border-left: 1px solid rgba(0,0,0,.08); }
.permission-mock-allow { font-weight: 700; }
/* Production permission stack (homepage-v2.css + index.html inline) */
.permission-stack { position: relative; display: inline-block; margin-top: 18px; }
.permission-stack .permission-mock { margin: 0; }
.permission-stack .permission-mock-back { position: absolute; top: -12px; left: 14px; right: -14px; transform: scale(0.96); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06); }
.permission-stack .permission-mock-backmost { position: absolute; top: -24px; left: 28px; right: -28px; opacity: .32; transform: scale(0.92); filter: saturate(.8); }
/* depth via muted-but-readable text, not opacity (WCAG contrast) */
.permission-stack .permission-mock-back .permission-mock-title,
.permission-stack .permission-mock-back .permission-mock-btn,
.permission-stack .permission-mock-backmost .permission-mock-title,
.permission-stack .permission-mock-backmost .permission-mock-btn { color: #6B6E6F !important; }
.permission-stack .permission-mock-front { position: relative; }

/* Production "Tap to Call Tiina" mock (homepage-v2.css .hsa-*) */
.lx-orb { display: inline-block; position: relative; width: 72px; height: 72px; }
.lx-orb canvas { display: block; width: 100%; height: 100%; }
.hsa-callmock { display: flex; flex-direction: column; align-items: center; gap: 10px; background: var(--white); border-radius: 16px; padding: 18px; box-shadow: inset 0 0 0 1px rgba(198, 123, 92, 0.18); }
.hsa-orb { width: 64px; height: 64px; }
.hsa-callmock-label { font-size: 16px; font-weight: 700; color: var(--coral-dark); }

/* ---------- Dark privacy ---------- */
.bg-dark .eyebrow { color: #F3CDBC; }
.bg-dark .sec-h2 { color: var(--cream); }
.bg-dark .sec-sub { color: rgba(253,248,243,.78); }
.dark-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.dark-row { background: rgba(253,248,243,.05); border: 1px solid rgba(253,248,243,.14); border-radius: var(--radius); padding: 28px 30px; }
.dark-row h3 { font-family: var(--font-sans); font-size: 21px; color: var(--cream); margin-bottom: 10px; display: flex; align-items: flex-start; gap: 12px; }
.dark-row h3 svg { width: 22px; height: 22px; color: #F3CDBC; flex-shrink: 0; margin-top: 3px; }
.dark-row p { font-size: 18px; line-height: 1.55; color: rgba(253,248,243,.82); }
.dark-links { margin-top: 36px; text-align: center; font: 600 17px/1.5 var(--font-sans); color: rgba(253,248,243,.85); }
.dark-links a { color: #F3CDBC; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Quotes ---------- */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.quote-card { background: var(--white); border: 1px solid var(--peach-light); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; text-align: left; }
.bg-white .quote-card { background: var(--cream); }
.quote-tag { align-self: flex-start; font: 700 13.5px/1.2 var(--font-sans); letter-spacing: .08em; text-transform: uppercase; color: var(--coral-dark); background: rgba(198,123,92,.1); padding: 5px 13px; border-radius: 50px; margin-bottom: 16px; }
.quote-card p { font-family: var(--font-serif); font-size: 20px; line-height: 1.55; margin-bottom: 18px; }
.quote-card cite { font: 600 16px/1.4 var(--font-sans); font-style: normal; color: var(--gray); margin-top: auto; }
.quotes-note { text-align: center; font: 400 16px/1.5 var(--font-sans); color: var(--gray); margin-top: 28px; }

/* ---------- Founder ---------- */
.founder-grid { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: center; max-width: 860px; margin: 0 auto; background: var(--white); border: 1px solid var(--peach-light); border-radius: var(--radius-panel); padding: 44px 48px; box-shadow: var(--shadow-card); }
.founder-seal { position: relative; display: block; width: 180px; height: 180px; margin: 0 auto; overflow: hidden; border: 8px solid var(--white); border-radius: 50%; background: var(--peach); box-shadow: 0 0 0 7px var(--coral), var(--shadow-card); }
.founder-seal img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.founder-duotone { opacity: 1; transition: opacity .45s ease; }
.founder-seal:hover .founder-duotone { opacity: 0; }
.founder-body h2 { font-size: 30px; margin-bottom: 14px; }
.founder-body p:not(.eyebrow) { font-size: 19px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.founder-sig { font: 600 17px/1.5 var(--font-sans); color: var(--charcoal); }
.founder-sig a { color: var(--coral-dark); }

/* ---------- Pricing ---------- */
.price-card { display: grid; grid-template-columns: 1.5fr 1fr; background: var(--white); border: 1px solid var(--peach-light); border-radius: var(--radius-panel); box-shadow: var(--shadow-panel); overflow: hidden; }
.price-main { padding: 52px 52px 48px; }
.price-main .eyebrow { margin-bottom: 12px; }
.price-main h2 { font-size: 36px; margin-bottom: 16px; }
.price-sub { font-size: 20px; color: var(--gray); margin-bottom: 26px; }
.price-checks { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.price-checks li { position: relative; padding-left: 32px; font-size: 19px; color: var(--charcoal); }
.price-checks li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--coral-dark); font-weight: 700; font-size: 19px; }
.price-action { font-size: 18px; color: var(--gray); margin-bottom: 22px; }
.price-anchor { font-size: 17px; line-height: 1.6; color: var(--gray); border-left: 3px solid var(--peach); padding-left: 16px; }
.price-anchor strong { color: var(--charcoal); }
.price-panel { background: #FAF5F0; padding: 52px 44px; display: flex; flex-direction: column; justify-content: center; }
.price-trial { font: 700 24px/1.2 var(--font-sans); color: var(--charcoal); margin-bottom: 4px; }
.price-amount { font: 600 19px/1.4 var(--font-sans); color: var(--charcoal); }
.price-day { font: 600 17px/1.4 var(--font-sans); color: var(--coral-dark); margin: 4px 0 2px; }
.price-annual { font: 400 16px/1.5 var(--font-sans); color: var(--gray); margin-bottom: 18px; }
.price-mechanics { font: 400 16px/1.55 var(--font-sans); color: var(--gray); background: var(--white); border: 1px solid var(--peach-light); border-radius: 12px; padding: 14px 16px; margin-bottom: 22px; }
.price-mechanics strong { color: var(--charcoal); }
.price-btns { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.price-btns .btn { width: 100%; }
.price-note { font: 400 15px/1.55 var(--font-sans); color: var(--gray); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--peach-light); }
.faq-item:first-child { border-top: 1px solid var(--peach-light); }
.faq-q { width: 100%; text-align: left; padding: 24px 8px; background: none; border: none; font: 700 20px/1.4 var(--font-sans); color: var(--charcoal); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: var(--touch-target); }
.faq-ic { font-size: 26px; color: var(--coral-dark); font-weight: 400; flex-shrink: 0; }
.faq-a { display: none; padding: 0 8px 26px; }
.faq-q[aria-expanded="true"] + .faq-a { display: block; }
.faq-a p { font-size: 19px; line-height: 1.6; color: var(--gray); }
.faq-a a { color: var(--coral-dark); font-weight: 600; }

/* ---------- Wedge (families) ---------- */
.wedge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; text-align: left; }
.wedge-col { border-radius: var(--radius-panel); padding: 38px 36px; }
.wedge-them { background: #EFECE8; border: 1px solid rgba(26,29,30,.08); }
.wedge-us { background: var(--cream); border: 1px solid var(--peach); box-shadow: var(--shadow-card); }
.wedge-col h3 { font-family: var(--font-sans); font-size: 16px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 22px; }
.wedge-them h3 { color: var(--gray); }
.wedge-us h3 { color: var(--coral-dark); }
.wedge-col ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.wedge-col li { position: relative; padding-left: 32px; font-size: 19px; line-height: 1.5; }
.wedge-them li { color: var(--gray); }
.wedge-them li::before { content: "\2013"; position: absolute; left: 4px; font-weight: 700; }
.wedge-us li { color: var(--charcoal); }
.wedge-us li::before { content: "\2713"; position: absolute; left: 0; color: var(--coral-dark); font-weight: 700; }
.wedge-promise { margin-top: 28px; background: var(--charcoal); border-radius: var(--radius); padding: 26px 32px; text-align: center; }
.wedge-promise p { font-size: 20px; line-height: 1.55; color: rgba(253,248,243,.92); }
.wedge-promise strong { color: var(--cream); font-family: var(--font-serif); font-size: 22px; }

/* ---------- Relief (families before/after) ---------- */
.relief-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items: center; max-width: 1120px; width: 100%; }
.relief-photo img { border-radius: var(--radius-panel); box-shadow: var(--shadow-panel); aspect-ratio: 4 / 3; object-fit: cover; }
.relief-beats { display: flex; flex-direction: column; gap: 22px; margin-top: 26px; }
.relief-beat h3 { font-family: var(--font-sans); font-size: 21px; margin-bottom: 6px; }
.relief-beat p { font-size: 18px; line-height: 1.55; color: var(--gray); }
.relief-beat .stat-src { font-size: 14px; color: var(--gray); }

/* ---------- Closer ---------- */
.closer { background: rgba(232,196,184,.2); }
.closer-grid { display: grid; grid-template-columns: auto 1fr auto; gap: 48px; align-items: center; max-width: 960px; margin: 0 auto; }
.closer-orb { width: 110px; height: 110px; border-radius: 50%; }
.closer-orb canvas { width: 100%; height: 100%; display: block; }
.closer-body h2 { font-size: 38px; margin-bottom: 10px; }
.closer-body p { font-size: 20px; color: var(--gray); margin-bottom: 24px; }
.closer-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.closer-qr { background: var(--white); border-radius: var(--radius); padding: 22px; text-align: center; box-shadow: var(--shadow-card); }
.closer-qr img { width: 148px; height: 148px; margin: 0 auto; }
.closer-qr p { font: 400 15px/1.4 var(--font-sans); color: var(--gray); margin-top: 10px; }
.appbadge { display: inline-block; line-height: 0; }
.appbadge svg { height: 48px; width: auto; }

/* ---------- Sticky mobile CTA ---------- */

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .memory-grid, .relief-grid { grid-template-columns: 1fr; gap: 44px; }
  .price-card { grid-template-columns: 1fr; }
  .dark-rows { grid-template-columns: 1fr; }
  .quotes-grid, .rhythm-grid { grid-template-columns: 1fr; }
  .ev-grid { grid-template-columns: 1fr; }
  .wedge-grid { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; text-align: center; padding: 36px 28px; }
  .founder-photo { display: flex; justify-content: center; }
  .closer-grid { grid-template-columns: 1fr; text-align: center; }
  .closer-orb { margin: 0 auto; }
  .closer-ctas { justify-content: center; }
  .closer-qr { max-width: 260px; margin: 0 auto; }
  /* Stacked card: the photo is a normal in-flow image (same pattern as
     .memory-photo/.relief-photo), NOT the desktop absolute fill. An absolute
     img inside an aspect-ratio box is a promoted layer that iOS pinch-zoom
     can re-rasterize out of sync with the text below it (7/16 incident);
     in-flow content cannot detach from its flow neighbors. The panels stack
     in one grid cell, so every card stretches to the tallest panel; rows
     auto/1fr sends that slack into the body row, never the photo row. */
  .scn-card { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .scn-photo { min-height: 0; }
  .scn-photo img { position: static; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
}
@media (max-width: 767px) {
  body { font-size: 18px; }
  .section { padding: 64px 20px; }
  .sec-h2 { font-size: 29px; }
  .price-main h2 { font-size: 28px; }
  .closer-body h2 { font-size: 30px; }
  .sec-sub { font-size: 19px; }
  .hero-ctas .btn { width: 100%; }
  .scn-tabs { width: 100%; justify-content: stretch; }
  .scn-tab { flex: 1; padding: 12px 8px; font-size: 15.5px; }
  .scn-body { padding: 28px 24px; }
  .scn-body h3 { font-size: 23px; }
  .step-row { grid-template-columns: 1fr; gap: 18px; padding: 26px 24px; }
  .step-num { text-align: left; font-size: 44px; }
  .step-aside { justify-content: flex-start; }
  .permission-stack { margin-top: 32px; margin-left: -6px; }
  .price-main { padding: 34px 26px; }
  .price-panel { padding: 34px 26px; }
  .founder-grid { gap: 24px; }
  .trust-strip { gap: 8px; }
  .trust-chip { font-size: 14px; padding: 8px 14px; }
  .wedge-col { padding: 28px 24px; }
  .closer-qr { display: none; }
}
