/* Retire Handbook
   One system: 8px spacing scale, six-step type scale, one radius family,
   one shadow, one line color. Cream paper, deep green, gold accents.
   Large type and high contrast for readers aged 55 to 74. Mobile first.
   Single committed light theme: every color is painted explicitly. */

:root {
  color-scheme: light;

  /* Color */
  --paper: #f6f4f1;
  --paper-2: #ffffff;
  --paper-3: #efece6;
  --ink: #17201e;
  --ink-2: #4a5654;
  --line: #dcdad4;
  --green: #114944;
  --green-2: #266360;
  --green-soft: #e4ecea;
  --gold: #d8a455;       /* on green, on buttons, stars */
  --gold-ink: #94651a;   /* the only gold allowed as text on cream (4.6:1) */
  --gold-soft: #f6e9d0;
  --on-green: #f6f4f1;
  --on-green-2: #c7d5d1;
  --danger: #a33a2a;
  --danger-soft: #f7e6e2;

  /* Space (8px scale) */
  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 32px; --s5: 48px; --s6: 64px; --s7: 96px; --s8: 128px;
  --section: var(--s6);
  --gutter: var(--s3);
  --wrap: 1120px;

  /* Type scale (six steps) */
  --t-eyebrow: 0.85rem;
  --t-body: 1rem;
  --t-h3: 1.25rem;
  --t-h2: 1.75rem;
  --t-h1: 2.4rem;
  --t-stat: 2.4rem;

  /* Shape */
  --radius: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow: 0 1px 2px rgba(17, 73, 68, 0.06), 0 12px 32px rgba(17, 73, 68, 0.10);
  --measure: 62ch;
  --control: 56px;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
}
@media (min-width: 900px) {
  :root { --section: 112px; --gutter: 40px; --t-h2: 2.25rem; --t-h1: 3.4rem; --t-stat: 3.4rem; }
}

/* Base */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 19px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (min-width: 720px) { html { font-size: 20px; } }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-body); font-size: var(--t-body); line-height: 1.55; font-variant-numeric: tabular-nums; }
img { max-width: 100%; height: auto; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; text-wrap: balance; margin: 0; color: var(--green); }
h1 { font-size: var(--t-h1); line-height: 1.06; }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); line-height: 1.25; }
p { margin: 0; max-width: var(--measure); text-wrap: pretty; }
p + p { margin-top: 0.9em; }
ul, ol { margin: 0; padding-left: 1.3em; max-width: var(--measure); }
li + li { margin-top: 0.5em; }
a { color: var(--green-2); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--green); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.eyebrow { font-family: var(--font-body); font-size: var(--t-eyebrow); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-ink); }
.lede { font-size: 1.15rem; color: var(--ink-2); }
.muted { color: var(--ink-2); }
.small { font-size: 0.9rem; }
.center { text-align: center; }
.center p, .center ul { margin-left: auto; margin-right: auto; }
.hidden { display: none !important; }
[hidden] { display: none !important; }
.icon { width: 1.5rem; height: 1.5rem; flex: none; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Layout */
.wrap { width: 100%; max-width: calc(var(--wrap) + 2 * var(--gutter)); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: calc(760px + 2 * var(--gutter)); }
.wrap--mid { max-width: calc(960px + 2 * var(--gutter)); }
.section { padding: var(--section) 0; }
.section--tight { padding: var(--s5) 0; }
.section--paper2 { background: var(--paper-2); }
.section--green { background: var(--green); color: var(--on-green); }
.section--green h1, .section--green h2, .section--green h3 { color: var(--on-green); }
.section--green .eyebrow { color: var(--gold); }
.section--green .muted, .section--green .lede { color: var(--on-green-2); }
.section-head { display: flex; flex-direction: column; gap: var(--s2); margin-bottom: var(--s5); }
.section-head--center { align-items: center; text-align: center; }
.section-head--center p { margin-left: auto; margin-right: auto; }
@media (min-width: 900px) { .section-head { margin-bottom: var(--s6); } }
.stack { display: flex; flex-direction: column; gap: var(--s2); }
.stack--lg { gap: var(--s4); }
.grid { display: grid; gap: var(--s3); }
@media (min-width: 720px) { .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* Photos: one crop, one radius, one tint */
.photo { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--green-soft); box-shadow: var(--shadow); }
.photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.photo::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(216, 164, 85, 0.10) 0%, rgba(17, 73, 68, 0.22) 100%); mix-blend-mode: multiply; }
.photo--flat { box-shadow: none; }

/* Top bar */
.topbar { position: sticky; top: 0; z-index: 50; background: var(--green); color: var(--on-green); }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: var(--s3); min-height: 72px; }
.topbar .logo img { height: 34px; }
@media (min-width: 720px) { .topbar .logo img { height: 40px; } }
.topbar nav { display: none; gap: var(--s4); }
.topbar nav a { color: var(--on-green); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.topbar nav a:hover { color: var(--gold); }
.topbar .end { display: flex; align-items: center; gap: var(--s3); }
.topbar .phone { display: none; align-items: center; gap: var(--s1); color: var(--on-green); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.topbar .phone .icon { width: 1.2rem; height: 1.2rem; color: var(--gold); }
@media (min-width: 1040px) { .topbar nav { display: flex; } .topbar .phone[href] { display: inline-flex; } }
.topbar--center .wrap { justify-content: center; }
.logo { display: inline-block; line-height: 0; }
.logo img { width: auto; display: block; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--s1); min-height: var(--control); padding: 0 var(--s4); border: 2px solid var(--green); border-radius: var(--radius-sm); background: var(--green); color: #ffffff; font-family: var(--font-body); font-size: 1.1rem; font-weight: 700; line-height: 1.2; text-decoration: none; cursor: pointer; box-shadow: 0 0 0 rgba(17, 73, 68, 0); transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease; }
.btn:hover { background: var(--green-2); border-color: var(--green-2); color: #ffffff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--green); }
.btn--gold:hover { background: #e0b26a; border-color: #e0b26a; color: var(--green); }
.btn--pill { border-radius: var(--radius-pill); min-height: 48px; padding: 0 var(--s3); font-size: 0.95rem; white-space: nowrap; }
.btn--sm { min-height: 48px; padding: 0 var(--s3); font-size: 0.95rem; border-radius: var(--radius-pill); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: wait; transform: none; box-shadow: none; }
.btn-note { margin-top: var(--s2); font-size: 0.9rem; color: var(--ink-2); }
.link-arrow { display: inline-flex; align-items: center; gap: var(--s1); font-weight: 700; text-decoration: none; }
.link-arrow .icon { width: 1.2rem; height: 1.2rem; transition: transform 160ms ease; }
.link-arrow:hover .icon { transform: translateX(3px); }

/* Check rows (hero trust items, final CTA) */
.trust { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: var(--s2) var(--s4); max-width: none; }
.trust li { display: inline-flex; align-items: center; gap: var(--s1); margin: 0; font-weight: 600; font-size: 0.95rem; color: var(--ink-2); }
.trust .icon { width: 1.3rem; height: 1.3rem; color: var(--green-2); }
.section--green .trust li { color: var(--on-green-2); }
.section--green .trust .icon { color: var(--gold); }

/* Hero */
.hero { padding: var(--s5) 0 var(--s6); overflow: hidden; }
.hero .wrap { display: grid; gap: var(--s5); align-items: center; }
.hero h1 { margin-top: var(--s2); }
.hero h1 em { font-style: normal; color: var(--gold-ink); display: block; }
.hero .lede { margin-top: var(--s3); font-size: 1.2rem; }
.hero .cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s2) var(--s4); margin-top: var(--s4); }
.hero .trust { margin-top: var(--s4); }
.hero-art { aspect-ratio: 4 / 3; }
@media (min-width: 900px) {
  .hero { padding: var(--s7) 0; }
  .hero .wrap { grid-template-columns: 1.1fr 0.9fr; gap: var(--s6); }
  .hero h1 { font-size: 3.15rem; }
  .hero-art { aspect-ratio: 4 / 5; max-height: 640px; }
}

/* Proof strips (press, partners): placeholder content behind a flag */
.strip { padding: var(--s5) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.strip .wrap { display: flex; flex-direction: column; align-items: center; gap: var(--s3); }
.strip .marks { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: var(--s3) var(--s6); }
.strip .mark { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--ink-2); letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: var(--s1); }
.strip--partners .mark { font-family: var(--font-body); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.95rem; }
.chip { display: inline-flex; align-items: center; min-height: 24px; padding: 0 10px; border-radius: var(--radius-pill); background: var(--gold-soft); color: var(--gold-ink); font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

/* Stats band */
.stats { padding: var(--s5) 0; }
.stats ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s4) var(--s3); grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: none; text-align: center; }
@media (min-width: 720px) { .stats ul { grid-template-columns: repeat(4, minmax(0, 1fr)); } .stats { padding: var(--s6) 0; } }
.stats li { margin: 0; }
.stats strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: var(--t-stat); line-height: 1; color: var(--gold); letter-spacing: -0.01em; white-space: nowrap; }
.stats span { display: block; margin-top: var(--s2); color: var(--on-green-2); font-size: 0.95rem; font-weight: 600; }

/* How it works */
.steps3 { position: relative; display: grid; gap: var(--s4); }
.steps3 .step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--s3); }
.steps3 .num { position: relative; z-index: 1; width: 64px; height: 64px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--green); color: var(--on-green); font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; box-shadow: 0 0 0 8px var(--paper-2); }
.steps3 .step-body { width: 100%; flex: 1; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s4); box-shadow: var(--shadow); transition: transform 200ms ease; }
.steps3 .step-body:hover { transform: translateY(-3px); }
.steps3 .glyph { margin: 0 auto var(--s2); }
.steps3 .step-body p { margin-top: var(--s1); color: var(--ink-2); margin-left: auto; margin-right: auto; }
@media (min-width: 900px) {
  .steps3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s4); }
  .steps3::before { content: ""; position: absolute; top: 31px; left: 16.6%; right: 16.6%; border-top: 3px dotted var(--line); }
}
.glyph { width: 56px; height: 56px; border-radius: var(--radius-sm); display: inline-flex; align-items: center; justify-content: center; background: var(--green-soft); color: var(--green); flex: none; }
.glyph .icon { width: 1.6rem; height: 1.6rem; }

/* Cards */
.card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s4); box-shadow: var(--shadow); transition: transform 200ms ease; }
.card:hover { transform: translateY(-3px); }
.card p { color: var(--ink-2); }
.card--photo { padding: 0; display: flex; flex-direction: column; overflow: hidden; }
.card--photo .photo { border-radius: 0; box-shadow: none; aspect-ratio: 3 / 2; }
.card--photo .card-body { padding: var(--s4); display: flex; flex-direction: column; gap: var(--s2); flex: 1; }
.card--photo .card-body .link-arrow { margin-top: auto; padding-top: var(--s1); }

/* Split sections (photo + rows) */
.split { display: grid; gap: var(--s5); align-items: center; }
.split-art { aspect-ratio: 4 / 3; }
@media (min-width: 900px) {
  .split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s7); }
  .split--flip .split-art { order: 2; }
}
.split .section-head { margin-bottom: var(--s4); }
.features { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s3); max-width: none; }
.features li { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: var(--s3); align-items: start; margin: 0; }
.features h3 { font-size: var(--t-h3); }
.features p { margin-top: var(--s1); color: var(--ink-2); }
.features .glyph { width: 56px; height: 56px; }
.features--check .glyph { background: var(--gold-soft); color: var(--gold-ink); }

/* CTA band */
.cta-band { padding: var(--s6) 0; }
.cta-band .wrap { display: grid; gap: var(--s3); align-items: center; }
@media (min-width: 900px) { .cta-band .wrap { grid-template-columns: minmax(0, 1fr) auto; gap: var(--s6); } }
.cta-band h2 { font-size: var(--t-h2); }
.cta-band p { color: var(--on-green-2); margin-top: var(--s1); }

/* Testimonials */
.quotes { display: grid; gap: var(--s3); }
@media (min-width: 900px) { .quotes { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.quote { position: relative; display: flex; flex-direction: column; gap: var(--s3); }
.quote .qmark { color: var(--gold); width: 2rem; height: 2rem; }
.quote blockquote { margin: 0; font-size: 1.05rem; color: var(--ink); }
.quote .stars { display: flex; gap: 2px; color: var(--gold); }
.quote .stars .icon { width: 1.2rem; height: 1.2rem; }
.quote .who { display: flex; align-items: center; gap: var(--s2); margin-top: auto; }
.quote .avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; }
.quote .who strong { display: block; }
.quote .who span { color: var(--ink-2); font-size: 0.95rem; }
.quote .chip { position: absolute; top: var(--s3); right: var(--s3); }

/* FAQ */
.faq { display: grid; gap: var(--s2); }
.faq details { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 var(--s3); transition: box-shadow 160ms ease; }
.faq details[open] { box-shadow: var(--shadow); }
.faq summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: var(--s2); min-height: var(--control); padding: var(--s2) 0; font-weight: 700; font-size: 1.08rem; color: var(--green); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { color: var(--gold-ink); transition: transform 200ms ease; }
.faq details[open] summary .icon { transform: rotate(180deg); }
.faq .answer { padding: 0 0 var(--s3); color: var(--ink-2); }

/* Final CTA */
.final-cta { text-align: center; }
.final-cta h2 { font-size: var(--t-h2); }
@media (min-width: 900px) { .final-cta h2 { font-size: var(--t-h1); } }
.final-cta h2 em { font-style: normal; color: var(--gold); display: block; }
.final-cta .lede { margin: var(--s3) auto 0; }
.final-cta .btn { margin-top: var(--s4); }
.final-cta .trust { justify-content: center; margin-top: var(--s4); }

/* Footer */
.site-footer { background: var(--green); color: var(--on-green-2); padding: var(--s6) 0 var(--s4); font-size: 0.92rem; }
.site-footer .cols { display: grid; gap: var(--s4); }
@media (min-width: 720px) { .site-footer .cols { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--s5); } }
.site-footer h3 { color: var(--on-green); font-family: var(--font-body); font-size: var(--t-eyebrow); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: var(--s2); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 0 0 var(--s1); }
.site-footer a { color: var(--on-green); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer p { max-width: none; }
.site-footer .logo img { height: 40px; }
.site-footer .blurb { margin-top: var(--s2); max-width: 40ch; }
.site-footer .legal { margin-top: var(--s5); padding-top: var(--s3); border-top: 1px solid rgba(246, 244, 241, 0.18); font-size: 0.85rem; }
.site-footer .legal p + p { margin-top: var(--s2); }
.site-footer .phone[hidden] { display: none; }

/* Final page (results, guide) */
.final-head { text-align: center; padding: var(--s6) 0 var(--s4); }
.final-head h1 { margin-top: var(--s2); }
.final-head .lede { margin: var(--s3) auto 0; }
.next-step { padding: 0 0 var(--s6); }
.next-step .wrap { display: flex; flex-direction: column; align-items: center; gap: var(--s3); }
.next-step h2 { font-size: var(--t-h2); text-align: center; }
.panel { width: 100%; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.panel--embed iframe { display: block; width: 100%; height: 1040px; border: 0; }
@media (min-width: 900px) { .panel--embed iframe { height: 760px; } }
.panel--next { padding: var(--s4); display: grid; gap: var(--s4); }
@media (min-width: 900px) { .panel--next { padding: var(--s5); grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s5); } }
.panel--next .step { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: var(--s2); align-items: start; }
@media (min-width: 900px) { .panel--next .step { grid-template-columns: 64px minmax(0, 1fr); gap: var(--s3); } }
.panel--next .num { width: 48px; height: 48px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--green); color: var(--on-green); font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; }
.panel--next h3 { font-size: var(--t-h3); }
@media (min-width: 900px) { .panel--next .num { width: 64px; height: 64px; } }
.panel--next p { margin-top: var(--s1); color: var(--ink-2); }
.panel--next .note { grid-column: 1 / -1; display: flex; gap: var(--s2); align-items: flex-start; padding: var(--s3); background: var(--paper); border-radius: var(--radius-sm); color: var(--ink-2); font-size: 0.95rem; }
.panel--next .note .icon { color: var(--green-2); margin-top: 2px; }
.panel--next .note p { margin: 0; color: var(--ink-2); }
.summary-grid { display: grid; gap: var(--s3); }
@media (min-width: 900px) { .summary-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.summary-item { display: flex; flex-direction: column; gap: var(--s2); }
.summary-item .eyebrow { margin-bottom: -4px; }
.summary-item--match { grid-column: 1 / -1; }
.summary-item--match h3 { margin: 0; }
select.input { cursor: pointer; appearance: auto; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.video { position: relative; width: 100%; aspect-ratio: 16 / 9; background: var(--green); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.reads { display: grid; gap: var(--s4); }
.reads .read { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: var(--s3); align-items: start; }
.reads .read p { margin-top: var(--s1); color: var(--ink-2); }
.disclaimer { font-size: 0.9rem; color: var(--ink-2); max-width: var(--measure); }

/* Quiz */
.quiz-page { background: var(--paper); min-height: 100vh; display: flex; flex-direction: column; }
.quiz-main { flex: 1; padding: var(--s4) 0 var(--s6); }
.quiz-main .wrap { max-width: calc(720px + 2 * var(--gutter)); }
.quiz-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: var(--s4) var(--s3); }
@media (min-width: 720px) { .quiz-card { padding: var(--s5); } }
.progress { display: flex; gap: 6px; justify-content: center; margin: 0 auto var(--s4); max-width: 380px; }
.progress span { flex: 1; height: 6px; border-radius: var(--radius-pill); background: var(--line); }
.progress span.done { background: var(--gold); }
.progress span.now { background: var(--green-2); }
.q-title { font-size: var(--t-h2); text-align: center; }
.q-help { text-align: center; color: var(--ink-2); margin: var(--s2) auto 0; }
.q-body { margin-top: var(--s4); }
.tiles { display: grid; gap: var(--s2); grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tile { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--s2); min-height: 136px; padding: var(--s2); text-align: center; background: var(--paper-2); border: 2px solid var(--line); border-radius: var(--radius); color: var(--ink); font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; line-height: 1.25; cursor: pointer; transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease; }
.tile .icon { width: 2.4rem; height: 2.4rem; color: var(--gold-ink); }
.tile:hover { border-color: var(--green-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.tile[aria-pressed="true"] { border-color: var(--green); background: var(--green-soft); }
.tile--wide { grid-column: 1 / -1; min-height: 88px; flex-direction: row; justify-content: flex-start; padding-left: var(--s3); text-align: left; }
.tile--wide .icon { width: 1.9rem; height: 1.9rem; }
.options { display: grid; gap: var(--s2); }
.option { display: flex; align-items: center; gap: var(--s2); width: 100%; min-height: var(--control); padding: var(--s2) var(--s3); text-align: left; background: var(--paper-2); border: 2px solid var(--line); border-radius: var(--radius-sm); color: var(--ink); font-family: var(--font-body); font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease; }
.option::before { content: ""; flex: none; width: 1.3rem; height: 1.3rem; border: 2px solid var(--line); border-radius: 50%; background: #fff; }
.option:hover { border-color: var(--green-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.option[aria-pressed="true"] { border-color: var(--green); background: var(--green-soft); }
.option[aria-pressed="true"]::before { border-color: var(--green); background: radial-gradient(circle, var(--green) 45%, #fff 50%); }
.helper { display: flex; align-items: center; gap: var(--s2); margin: var(--s4) auto 0; max-width: 560px; color: var(--ink-2); font-size: 0.95rem; }
.helper .badge { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.helper .badge img { width: 32px; }
.quiz-nav { display: flex; justify-content: center; margin-top: var(--s3); }
.link-btn { background: none; border: 0; min-height: 48px; padding: 0 var(--s2); color: var(--green-2); font-family: var(--font-body); font-size: 1rem; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.quiz-trust { margin-top: var(--s4); text-align: center; }
.quiz-trust .trust { justify-content: center; margin-top: var(--s2); }
.quiz-footer { background: var(--green); color: var(--on-green-2); text-align: center; padding: var(--s3); font-size: 0.9rem; }
.quiz-footer a { color: var(--on-green); text-decoration: none; margin: 0 var(--s2); }
.loading { text-align: center; padding: var(--s2) 0 var(--s3); }
.loading ul { list-style: none; padding: 0; margin: var(--s4) auto 0; max-width: 360px; display: grid; gap: var(--s2); text-align: left; }
.loading li { display: flex; align-items: center; gap: var(--s2); color: var(--line); font-weight: 600; margin: 0; transition: color 200ms ease; }
.loading li .icon { width: 1.4rem; height: 1.4rem; }
.loading li.on { color: var(--green); }
.loading li.on .icon { color: var(--green-2); }
.ready { text-align: center; }
.ready .bullets { list-style: none; padding: 0; margin: var(--s3) auto 0; max-width: 460px; display: grid; gap: var(--s2); text-align: left; }
.ready .bullets li { display: flex; gap: var(--s1); align-items: flex-start; margin: 0; }
.ready .bullets .icon { width: 1.4rem; height: 1.4rem; color: var(--green-2); margin-top: 3px; flex: none; }
.form { display: grid; gap: var(--s2); margin: var(--s4) auto 0; max-width: 520px; }
.field { display: flex; flex-direction: column; gap: var(--s1); text-align: left; }
.field label { font-weight: 700; }
.field .hint { font-size: 0.9rem; color: var(--ink-2); }
.input { width: 100%; min-height: var(--control); padding: var(--s2) var(--s2); border: 2px solid var(--line); border-radius: var(--radius-sm); background: #fff; color: var(--ink); font-family: var(--font-body); font-size: 1.1rem; }
.input:focus { border-color: var(--green-2); outline: none; box-shadow: 0 0 0 4px var(--green-soft); }
.input[aria-invalid="true"] { border-color: var(--danger); }
.error { color: var(--danger); font-weight: 600; font-size: 0.95rem; }
.form-error { background: var(--danger-soft); border: 1px solid var(--danger); border-radius: var(--radius-sm); padding: var(--s2) var(--s3); text-align: left; }
.consent { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: var(--s2); align-items: start; padding: var(--s2) var(--s3); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 0.92rem; line-height: 1.5; text-align: left; cursor: pointer; }
.consent input { width: 24px; height: 24px; margin: 3px 0 0; accent-color: var(--green); cursor: pointer; }
.consent p { max-width: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Legal pages */
.legal h2 { font-size: 1.4rem; margin-top: var(--s4); }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal ul { margin-top: var(--s2); }

/* Motion: fade-up on scroll, visible at rest */
[data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity 600ms ease, transform 600ms ease; }
.js [data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .btn:hover, .card:hover, .tile:hover, .option:hover, .steps3 .step-body:hover { transform: none; }
}

/* Confirmation page (results): banner, numbered steps, evidence cards */
.confirm-banner { background: var(--green); color: var(--on-green); text-align: center; padding: var(--s4) 0; }
.confirm-banner h1 { color: var(--on-green); font-size: var(--t-h2); }
.confirm-banner p { margin: var(--s1) auto 0; color: var(--on-green-2); font-size: 1.05rem; }
@media (min-width: 900px) { .confirm-banner { padding: var(--s5) 0; } .confirm-banner h1 { font-size: 2.6rem; } }
.step-section { padding: var(--s5) 0; }
.step-section--tall { padding: var(--s6) 0; }
.step-section + .step-section { padding-top: 0; }
.step-section--tall + .step-section--tall { padding-top: var(--s2); }
.stephead { text-align: center; margin-bottom: var(--s3); }
.stephead h2 { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--s2); font-size: var(--t-h2); }
.stephead--big h2 { font-size: var(--t-h2); }
@media (min-width: 900px) { .stephead--big h2 { font-size: 2.6rem; } }
.stephead .lede { margin: var(--s2) auto 0; }
.stephead--big { margin-bottom: var(--s5); }
.num-badge { flex: none; width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--green); color: var(--on-green); font-family: var(--font-body); font-weight: 700; font-size: 1.15rem; line-height: 1; }
.h2 { font-size: var(--t-h2); }
.panel--pad { padding: var(--s4); box-shadow: 0 1px 2px rgba(17, 73, 68, 0.06); }
.panel--pad h3 + p, .panel--pad .glyph + h3 { margin-top: var(--s2); }
.panel--pad .glyph { margin-bottom: var(--s2); }
.panel.center p { margin-left: auto; margin-right: auto; }
.icon--lg { width: 2.2rem; height: 2.2rem; color: var(--green); margin: 0 auto var(--s2); display: block; }
.row-icon { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: var(--s3); align-items: start; }
.row-icon p { margin-top: var(--s1); color: var(--ink-2); max-width: none; }
.callout { display: flex; gap: var(--s2); align-items: flex-start; margin-top: var(--s3); padding: var(--s3); border-radius: var(--radius); }
.callout p { color: var(--ink-2); }
.callout h3 + p { margin-top: 6px; }
.callout--gold { background: var(--gold-soft); border: 1px solid var(--gold); }
.callout--gold h3 { font-size: var(--t-h3); }
.callout-dot { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--green); display: inline-flex; align-items: center; justify-content: center; }
.callout-dot .icon { width: 1.3rem; height: 1.3rem; }
.callout--soft { background: var(--green-soft); border: 1px solid rgba(17, 73, 68, 0.18); align-items: center; }
.callout--soft .icon { color: var(--green); }
.callout--soft p { color: var(--ink); max-width: none; }
.callout--block { display: block; margin-top: var(--s4); padding: var(--s4); }
.ready-list { list-style: none; padding: 0; margin: var(--s2) 0 0; max-width: none; display: grid; gap: var(--s2); counter-reset: ready; }
.ready-list li { margin: 0; display: grid; grid-template-columns: 2rem minmax(0, 1fr); gap: var(--s1); align-items: baseline; color: var(--ink); counter-increment: ready; }
.ready-list li::before { content: counter(ready) "."; color: var(--green); font-weight: 700; font-size: 1.15rem; }
.expect { display: grid; gap: var(--s3); }
@media (min-width: 720px) { .expect { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.expect .panel { overflow: visible; }
.expect p { color: var(--ink-2); }
.stack--sm { gap: var(--s1); }

/* Evidence cards */
.evidence-head { margin-top: var(--s6); }
.evidence-list { display: grid; gap: var(--s4); }
.evidence { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s3); box-shadow: 0 1px 2px rgba(17, 73, 68, 0.06); display: flex; flex-direction: column; gap: var(--s3); }
@media (min-width: 720px) { .evidence { padding: var(--s4); } }
.evidence h3 { color: var(--ink); font-size: 1.45rem; line-height: 1.2; }
.evidence > p { color: var(--ink-2); max-width: none; }
.evidence .source, .fig-foot { font-size: 0.78rem; color: #6b7573; max-width: none; }
.evidence .source { margin-top: calc(-1 * var(--s2)); }
.figure { background: var(--paper); border-radius: var(--radius-sm); padding: var(--s3) var(--s2); }
@media (min-width: 720px) { .figure { padding: var(--s3); } }
.fig-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); text-align: center; max-width: none; }
.fig-note { font-size: 0.82rem; color: #6b7573; text-align: center; margin: 4px auto 0; }
.fig-caption { text-align: center; font-size: 0.92rem; font-weight: 600; color: var(--ink-2); margin: var(--s2) auto 0; }
.fig-foot { text-align: center; margin: var(--s2) auto 0; }
.here { display: flex; align-items: center; justify-content: center; gap: var(--s2); margin: var(--s2) 0 var(--s1); }
.pill-danger { display: inline-flex; align-items: center; min-height: 36px; padding: 0 var(--s2); border-radius: var(--radius-pill); background: #7a2418; color: #fff; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.here-val { font-family: var(--font-display); font-weight: 600; font-size: 2rem; color: var(--danger); line-height: 1; }
.chart { display: block; width: 100%; height: auto; }
.chart .grid line { stroke: var(--line); stroke-width: 1; stroke-dasharray: 3 4; }
.chart .grid .grid-mark { stroke: rgba(163, 58, 42, 0.45); }
.chart .ax text { font-family: var(--font-body); font-size: 13px; fill: #6b7573; text-anchor: end; }
.chart .ax text.mid { text-anchor: middle; }
.chart .line { fill: none; stroke-width: 3; stroke-linejoin: round; stroke-linecap: round; }
.chart .line--danger { stroke: var(--danger); }
.chart .line--green { stroke: var(--green); }
.chart .dots--danger circle { fill: var(--danger); }
.chart .dots--danger .halo { fill: rgba(163, 58, 42, 0.18); }
.chart .dots--green circle { fill: var(--green); }
.stat-tiles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s1); margin-top: var(--s2); }
.stat-tile { background: var(--danger-soft); border-radius: var(--radius-sm); padding: var(--s2); text-align: center; display: flex; flex-direction: column; gap: 2px; }
.stat-tile span { font-size: 0.8rem; font-weight: 600; color: var(--ink-2); }
.stat-tile strong { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--danger); line-height: 1.1; }
.stat-tile em { font-style: normal; font-weight: 700; font-size: 0.92rem; color: var(--danger); }
.stat-tile small { font-size: 0.78rem; color: #6b7573; }
.stat-tiles--compare { gap: var(--s2); margin-top: var(--s3); }
.stat-tile--danger { border: 1px solid rgba(163, 58, 42, 0.25); }
.stat-tile--green { background: var(--green-soft); border: 1px solid rgba(17, 73, 68, 0.2); }
.stat-tile--green strong, .stat-tile--green em { color: var(--green); }
.legend { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s2) var(--s3); margin-top: var(--s2); font-size: 0.92rem; font-weight: 700; }
.legend span { display: inline-flex; align-items: center; gap: var(--s1); }
.legend span:first-child { color: var(--danger); }
.legend span:last-child { color: var(--green); }
.swatch { display: inline-block; width: 20px; height: 4px; border-radius: 2px; background: var(--ink-2); }
.swatch--danger { background: var(--danger); }
.swatch--green { background: var(--green); }
.people { display: grid; gap: var(--s2); }
.person { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: var(--s2); align-items: start; padding: var(--s2); background: var(--danger-soft); border-radius: var(--radius-sm); }
.person .avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--paper-2); border: 2px solid #fff; box-shadow: 0 1px 4px rgba(17, 32, 30, 0.15); color: var(--green); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.person strong { display: block; font-size: 0.95rem; }
.person .role { display: block; font-size: 0.8rem; color: var(--ink-2); }
.person p { margin-top: 4px; font-size: 0.95rem; font-weight: 600; color: var(--danger); line-height: 1.4; max-width: none; }
.statement { border: 2px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: var(--paper-2); }
.statement-head { display: flex; justify-content: space-between; gap: var(--s2); padding: var(--s2) var(--s3); background: var(--ink); color: #fff; }
.statement-head .fig-label { text-align: left; color: #b9c2bf; font-size: 0.7rem; display: block; }
.statement-head .right .fig-label { text-align: right; }
.statement-head strong { display: block; font-size: 0.95rem; }
.statement-body { padding: var(--s2) var(--s3) var(--s3); }
.statement table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.statement th { text-align: left; padding: 6px 0; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); border-bottom: 2px solid var(--line); }
.statement td { padding: 10px 0; border-bottom: 1px solid var(--paper-3); font-weight: 600; color: var(--ink-2); }
.statement tr:last-child td { border-bottom: 0; }
.statement .right { text-align: right; }
.statement .ok { color: var(--green); font-weight: 700; }
.statement .warn { color: var(--gold-ink); font-weight: 700; }
.statement .bad { color: var(--danger); font-weight: 700; }
.statement .big { font-size: 1.05rem; }
.statement-total { display: flex; justify-content: space-between; align-items: center; margin-top: var(--s1); padding-top: var(--s2); border-top: 2px solid rgba(163, 58, 42, 0.3); }
.statement-total .fig-label { text-align: left; }
.statement-total strong { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: var(--danger); }
.statement-flag { margin: var(--s1) 0 0; padding: 6px; border-radius: 6px; background: var(--danger-soft); color: var(--danger); text-align: center; font-weight: 700; font-size: 0.85rem; max-width: none; }
.recovery + .recovery { margin-top: var(--s3); }
.recovery-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: var(--s2); }
.recovery-row strong { font-size: 0.95rem; }
.recovery .years { color: var(--danger); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; }
.cal-row { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s1); }
.cal { position: relative; width: 44px; height: 48px; padding-top: 12px; border: 2px solid #d98577; border-radius: 8px; background: var(--paper-2) radial-gradient(circle, #e8a99f 1.6px, transparent 1.8px) 6px 4px / 10px 8px repeat; background-clip: padding-box; box-shadow: 0 1px 2px rgba(17, 32, 30, 0.08); overflow: visible; }
.cal::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 10px; background: var(--danger); border-radius: 5px 5px 0 0; }
.cal span { position: absolute; left: 50%; top: 100%; transform: translateX(-50%); margin-top: 4px; font-size: 0.78rem; font-weight: 700; color: var(--danger); white-space: nowrap; }
.cal .icon { position: absolute; left: 50%; top: 55%; transform: translate(-50%, -50%); width: 1.2rem; height: 1.2rem; color: var(--green); }
.cal--ok { border-color: var(--green-2); background-image: none; }
.cal--ok::before { background: var(--green); }
.cal--ok span { color: var(--green); }
.cal-row + .fig-note { margin-top: calc(var(--s2) + 12px); }
.flag-danger { padding: var(--s2) var(--s3); border: 1px solid rgba(163, 58, 42, 0.3); border-radius: var(--radius-sm); background: var(--danger-soft); color: var(--danger); text-align: center; font-weight: 700; font-size: 1.05rem; }

/* Sources and contact line */
.sources { background: var(--paper-3); border-top: 1px solid var(--line); padding: var(--s5) 0; }
.sources h3 { font-family: var(--font-body); font-size: var(--t-eyebrow); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); margin-bottom: var(--s2); }
.sources-list p, .sources-legal p { font-size: 0.82rem; line-height: 1.55; color: var(--ink-2); max-width: none; }
.sources-list p + p { margin-top: 6px; }
.sources hr { border: 0; border-top: 1px solid var(--line); margin: var(--s3) 0; }
.sources-legal p { color: #6b7573; }
.contact-line { padding: var(--s4) 0; }
.contact-line p { max-width: none; }
.contact-line a { font-weight: 700; text-decoration: none; }
.contact-line .phone[hidden] { display: none; }

/* Report page (post-quiz): situation table, approach card, numbers, booking */
.topbar--report .wrap { justify-content: space-between; }
.topbar--report .phone[href] { display: inline-flex; }
.report-hero { padding: var(--s5) 0 var(--s3); }
.report-hero h1 { margin-top: var(--s2); font-size: var(--t-h2); }
@media (min-width: 900px) { .report-hero h1 { font-size: 2.6rem; } }
.report-hero .lede { margin-top: var(--s2); }
.report-cta { text-align: center; margin-top: var(--s4); }
.report-cta .btn-note { margin-top: var(--s2); }
.rsec { padding: var(--s4) 0; }
.rsec .eyebrow { margin-bottom: var(--s1); }
.rsec h2 { font-size: var(--t-h2); }
.rsec h2 + .lede { margin-top: var(--s2); }
.kv { margin-top: var(--s3); background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 1px 2px rgba(17, 73, 68, 0.06); }
.kv div { display: flex; justify-content: space-between; gap: var(--s2); padding: var(--s2) var(--s3); border-top: 1px solid var(--line); }
.kv div:first-child { border-top: 0; }
.kv span { color: var(--ink-2); }
.kv strong { color: var(--green); text-align: right; }
.card-green { margin-top: var(--s3); background: linear-gradient(135deg, #0e3a36, var(--green)); color: var(--on-green); border-radius: var(--radius); padding: var(--s4); }
.card-green h3 { color: var(--gold); font-size: 1.45rem; }
.card-green .tag { color: var(--on-green-2); margin-top: var(--s1); font-size: 1.05rem; }
.card-green ul { list-style: none; padding: 0; margin: var(--s3) 0 0; max-width: none; display: grid; gap: var(--s2); }
.card-green li { display: flex; gap: var(--s1); align-items: flex-start; margin: 0; }
.card-green li .icon { color: var(--gold); flex: none; margin-top: 3px; width: 1.3rem; height: 1.3rem; }
.card-green p { color: var(--on-green-2); max-width: none; }
.card-green .fine { font-size: 0.8rem; line-height: 1.5; color: rgba(246, 244, 241, 0.62); margin-top: var(--s3); }
.howto { margin-top: var(--s3); }
.howto h3 { font-family: var(--font-body); font-size: 1.05rem; color: var(--green); }
.howto ol { list-style: none; padding: 0; margin: var(--s2) 0 0; display: grid; gap: var(--s2); max-width: none; }
.howto li { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: var(--s2); align-items: start; margin: 0; }
.howto .num-badge { width: 40px; height: 40px; font-size: 1rem; }
.income-big { display: flex; align-items: center; gap: var(--s2); margin-top: var(--s3); }
.income-big .glyph { background: rgba(216, 164, 85, 0.18); color: var(--gold); width: 44px; height: 44px; }
.income-big strong { font-family: var(--font-display); font-weight: 600; font-size: 1.8rem; color: var(--gold); line-height: 1.1; display: block; }
.income-big span { display: block; color: var(--on-green-2); font-size: 0.95rem; margin-top: 4px; }
.income-rows { display: grid; gap: var(--s2); margin-top: var(--s3); }
.income-rows > div { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: var(--s2); align-items: start; }
.income-rows strong { color: var(--on-green); display: block; }
.income-rows p { margin-top: 2px; font-size: 0.95rem; }
.compare { margin-top: var(--s3); display: grid; gap: var(--s1); }
.compare > div { display: flex; justify-content: space-between; align-items: center; gap: var(--s2); padding: var(--s2) var(--s3); border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper-2); }
.compare > div.hi { background: var(--green-soft); border-color: rgba(17, 73, 68, 0.3); }
.compare span { color: var(--ink-2); }
.compare strong { text-align: right; }
.compare .hi strong { color: var(--green); }
.rates { margin-top: var(--s3); display: grid; gap: var(--s1); }
.rates > div { display: flex; justify-content: space-between; padding: var(--s2) var(--s3); border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.1); color: var(--on-green); font-weight: 600; }
.rates strong { color: var(--gold); }
.cta-band-soft { margin-top: var(--s4); background: var(--gold-soft); border: 1px solid var(--gold); border-radius: var(--radius); padding: var(--s4); text-align: center; }
.cta-band-soft h2 { font-size: var(--t-h2); }
.cta-band-soft p { margin: var(--s2) auto 0; }
.cta-band-soft .btn { margin-top: var(--s3); }
.cta-band-soft .btn-note { margin-top: var(--s2); }
.badges { display: grid; gap: var(--s2); margin-top: var(--s4); }
@media (min-width: 720px) { .badges { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.badges > div { display: flex; gap: var(--s1); align-items: center; padding: var(--s2) var(--s3); background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem; }
.badges .icon { color: var(--green-2); flex: none; }
.call-steps { margin-top: var(--s3); }
.call-steps ol { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s3); max-width: none; }
.call-steps li { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: var(--s2); margin: 0; }
.call-steps h3 { font-family: var(--font-body); font-size: 1.1rem; color: var(--ink); }
.call-steps p { color: var(--ink-2); margin-top: 4px; }
.call-steps .fine { margin-top: var(--s3); padding-top: var(--s3); border-top: 1px solid var(--line); font-size: 0.92rem; color: var(--ink-2); font-style: italic; max-width: none; }
.book { margin-top: var(--s3); background: var(--gold-soft); border: 1px solid var(--gold); border-radius: var(--radius); padding: var(--s3); }
@media (min-width: 720px) { .book { padding: var(--s4); } }
.book .trust { justify-content: center; margin-top: var(--s3); }
.book .or { text-align: center; margin-top: var(--s2); color: var(--ink-2); font-size: 0.95rem; max-width: none; }
.book .or a { font-weight: 700; text-decoration: none; }
.stickybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: var(--paper-2); border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgba(17, 32, 30, 0.08); transform: translateY(110%); transition: transform 240ms ease; }
.stickybar.on { transform: none; }
.stickybar .wrap { display: flex; align-items: center; justify-content: space-between; gap: var(--s2); min-height: 72px; }
.stickybar strong { display: block; font-size: 0.95rem; }
.stickybar span { display: block; font-size: 0.85rem; color: var(--ink-2); }
.stickybar .btn { min-height: 48px; padding: 0 var(--s3); font-size: 1rem; white-space: nowrap; }
.stickybar[hidden] { display: none; }
body.has-stickybar { padding-bottom: 80px; }
@media (min-width: 900px) { .stickybar { display: none; } body.has-stickybar { padding-bottom: 0; } }
.rsec .lede { margin-top: var(--s2); }
@media (max-width: 719px) { .income-big strong { font-size: 1.45rem; } .income-big { align-items: flex-start; } }
