/* ---------- 0. Self-hosted fonts (variable, subsetted latin + latin-ext) ---------- */
/* Fraunces — display (variable, opsz/wght). font-display:swap avoids invisible text. */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/fraunces-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/fraunces-latinext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Inter — body (variable, wght 100–900). */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter-latinext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* =========================================================
   BestAICertifications.com — "Paper & Ink" Design System v3
   Light, editorial, framework-free. One file, no build step.
   Sections: 1 Tokens · 2 Base/Reset · 3 A11y · 4 Utilities
   5 Topbar/Header/Nav · 6 Buttons · 7 Masthead · 8 Answer/
   Specs/Stars · 9 Sections/Cards · 10 Article/Prose/TOC ·
   11 Tables · 12 Picks · 13 Pros-Cons/Notes/FAQ · 14 Bands ·
   15 Footer · 16 Picker chat · 17 Floating widget ·
   18 LEGACY COMPATIBILITY · 19 Responsive · 20 Motion/Print
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Surfaces */
  --paper: #FCFCFA;
  --paper-2: #F5F5F1;
  --paper-3: #EEEEE8;
  --card: #FFFFFF;
  --ink-surface: #16181D;

  /* Text */
  --ink: #1A1D21;
  --text: #2A2E33;
  --text-2: #565C66;
  --text-3: #5C626C;

  /* Lines */
  --line: #E4E4DE;
  --line-2: #D3D3CB;

  /* Brand — teal (interactive / trust) */
  --teal: #0F766E;
  --teal-ink: #115E59;
  --teal-soft: #E7F2F0;
  --teal-line: #B9DDD8;

  /* Money — amber (affiliate actions ONLY) */
  --amber: #B45309;
  --amber-btn: #D97706;
  --amber-btn-ink: #451A03;
  --amber-soft: #FEF3E2;
  --amber-line: #F5C97B;

  /* Semantic */
  --green: #116336;
  --green-soft: #EAF5EC;
  --green-line: #C5E3CC;
  --red: #B91C1C;
  --red-soft: #FBEDED;
  --red-line: #F0CCCC;
  --gold-star: #E8A33D;

  /* Elevation */
  --shadow-1: 0 1px 2px rgba(20,22,26,.05);
  --shadow-2: 0 8px 28px rgba(20,22,26,.10);

  /* Shape */
  --r-sm: 6px;
  --r: 10px;
  --r-lg: 14px;

  /* Layout */
  --maxw: 1120px;
  --readw: 720px;

  /* Space (4px base) */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px;

  /* Type */
  --f-display: "Fraunces", Georgia, "Times New Roman", serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --t-xs: .8125rem;
  --t-sm: .875rem;
  --t-base: 1.0625rem;
  --t-md: 1.1875rem;
  --t-lg: clamp(1.35rem, 1.2rem + .8vw, 1.625rem);
  --t-xl: clamp(1.7rem, 1.4rem + 1.4vw, 2.25rem);
  --t-2xl: clamp(2.2rem, 1.8rem + 2.4vw, 3.25rem);
  --t-hero: clamp(2.5rem, 2rem + 3vw, 3.75rem);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.3,1);
  --t-fast: 140ms;
  --t-med: 220ms;
}

/* ---------- 2. Base / Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: var(--t-base);
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--ink);
  overflow-wrap: break-word;
}
h3, h4, h5 {
  font-family: var(--f-body);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--ink);
  overflow-wrap: break-word;
}
h1 { font-size: var(--t-2xl); }
h2 { font-size: var(--t-xl); }
h3 { font-size: var(--t-lg); }
p, ul, ol { margin: 0 0 1.2em; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--teal-ink); }
b, strong { color: var(--ink); }
::selection { background: var(--teal-soft); color: var(--teal-ink); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s-5); }
.num, td, .specs b { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum'; }

/* ---------- 3. Accessibility primitives ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0; text-decoration: none; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; border-radius: 2px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 4. Utilities ---------- */
.mt0 { margin-top: 0; }
.center { text-align: center; }
.small { font-size: var(--t-sm); }
.text-muted { color: var(--text-3); }
/* ---------- 5. Topbar / Header / Nav ---------- */
.topbar { background: var(--paper-2); color: var(--text-2); font-size: var(--t-xs); border-bottom: 1px solid var(--line); }
.topbar .container { padding-top: 8px; padding-bottom: 8px; text-align: center; }
.topbar a { color: var(--teal); font-weight: 600; }

.site-header { position: sticky; top: 0; z-index: 60; background: var(--paper); border-bottom: 1px solid var(--line); }
.site-header.is-scrolled { box-shadow: var(--shadow-2); }
.nav-wrap { display: flex; align-items: center; gap: var(--s-4); height: 68px; }
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-weight: 600; font-size: 1.22rem;
  color: var(--ink); text-decoration: none; letter-spacing: -.01em; white-space: nowrap;
}
.logo span { color: var(--teal); }
.logo-mark {
  width: 30px; height: 30px; border-radius: 8px; background: var(--ink); color: #fff;
  display: grid; place-items: center; font-family: var(--f-display); font-size: 1.05rem; font-weight: 600; flex: none;
}
.logo-light { color: #fff; }
.logo-light span { color: #7FD1C7; }

.main-nav { display: flex; gap: 2px; align-items: center; margin-left: auto; }
.main-nav a, .main-nav .nav-drop > summary, .main-nav .nav-drop-label {
  color: var(--text-2); font-weight: 600; font-size: .95rem; text-decoration: none;
  padding: 9px 13px; border-radius: var(--r-sm); white-space: nowrap; cursor: pointer;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.main-nav a:hover { background: var(--paper-2); color: var(--ink); }
.main-nav a[aria-current="page"] { color: var(--teal-ink); box-shadow: inset 0 -2px 0 var(--teal); border-radius: var(--r-sm) var(--r-sm) 0 0; }

/* By-Role dropdown — pure CSS, keyboard accessible via :focus-within */
.nav-drop { position: relative; }
.nav-drop-label { display: inline-flex; align-items: center; gap: 5px; background: none; border: 0; font-family: inherit; }
.nav-drop-label::after { content: ""; width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.nav-drop-panel {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 230px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-2); padding: var(--s-2);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), visibility var(--t-fast);
}
.nav-drop:hover .nav-drop-panel, .nav-drop:focus-within .nav-drop-panel { opacity: 1; visibility: visible; transform: none; }
.nav-drop-panel a { display: block; padding: 9px 12px; }

.nav-cta-btn { flex: none; margin-left: var(--s-2); }

/* Mobile nav */
.nav-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px; flex: none;
  background: none; border: 1px solid var(--line); border-radius: var(--r-sm); cursor: pointer;
  place-items: center; color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close, .nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.mobile-nav {
  display: none; position: absolute; left: 0; right: 0; top: 100%;
  background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-2);
  padding: var(--s-4) var(--s-5) var(--s-6); max-height: calc(100vh - 68px); overflow-y: auto;
}
.mobile-nav.open, .mobile-nav:target { display: block; }
.mobile-nav .btn { width: 100%; margin-bottom: var(--s-4); }
.mobile-nav h4, .mobile-nav .mnav-label { font-size: var(--t-xs); text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); margin: var(--s-4) 0 var(--s-2); }
.mobile-nav a:not(.btn) { display: block; padding: 11px 4px; color: var(--ink); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--line); }

/* ---------- 6. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f-body); font-weight: 600; font-size: 1rem; line-height: 1;
  min-height: 44px; padding: 12px 22px; border-radius: var(--r-sm);
  cursor: pointer; border: 1px solid transparent; text-decoration: none;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-sm { min-height: 38px; padding: 8px 14px; font-size: .9rem; }
.btn-lg { min-height: 50px; padding: 14px 28px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-ink); color: #fff; }
.btn-aff { background: var(--amber-btn); color: var(--amber-btn-ink); border-color: var(--amber-btn); }
.btn-aff:hover { background: var(--amber); border-color: var(--amber); color: #fff; }
.btn-ghost { background: transparent; color: var(--teal); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--teal-soft); border-color: var(--teal-line); color: var(--teal-ink); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; color: #fff; }
/* legacy alias — old pages use .btn-ghost-light on dark heroes; render as ghost */
.btn-ghost-light { background: transparent; color: var(--teal); border-color: var(--line-2); }
.btn-ghost-light:hover { background: var(--teal-soft); color: var(--teal-ink); }

/* ---------- 7. Masthead (light hero) ---------- */
.hero { background: var(--paper); border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--s-7); align-items: center; padding: var(--s-8) 0; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: var(--t-xs);
  color: var(--teal-ink); background: var(--teal-soft); border: 1px solid var(--teal-line);
  padding: 6px 13px; border-radius: 999px; margin-bottom: var(--s-5);
}
.hero h1 { font-size: var(--t-hero); margin: 0 0 var(--s-4); }
.hero h1 .hl { color: var(--teal); font-style: italic; }
.hero p.sub { font-size: var(--t-md); color: var(--text-2); max-width: 560px; margin: 0 0 var(--s-5); }
.hero-cta { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-bottom: var(--s-5); }
.hero-trust { display: flex; gap: var(--s-5); flex-wrap: wrap; color: var(--text-2); font-size: var(--t-sm); }
.hero-trust div { display: flex; align-items: center; gap: 7px; }
.hero-trust b { color: var(--ink); }
.tick { color: var(--green); font-weight: 700; }

.hero-card { background: var(--card); border: 1px solid var(--amber-line); border-radius: var(--r-lg); box-shadow: var(--shadow-1); padding: var(--s-5); position: relative; }
.hero-card .ribbon {
  position: absolute; top: -12px; left: var(--s-5); background: var(--amber-soft); color: var(--amber);
  border: 1px solid var(--amber-line); font-weight: 700; font-size: .72rem;
  letter-spacing: .05em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
}
.hero-card h2, .hero-card h3 { font-size: 1.3rem; margin: var(--s-2) 0 2px; }
.hero-card .prov { color: var(--text-3); font-size: var(--t-sm); margin-bottom: var(--s-3); }
/* ---------- 8. Answer box / Specs / Stars / Verified ---------- */
.answer {
  background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--teal);
  border-radius: var(--r); padding: var(--s-5) var(--s-6); margin: var(--s-5) 0 var(--s-6);
  box-shadow: var(--shadow-1);
}
.answer-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em;
  color: var(--teal-ink); margin: 0 0 var(--s-2);
}
.answer-lead { font-size: var(--t-md); color: var(--ink); margin: 0 0 var(--s-4); }
.answer .btn { margin-right: var(--s-3); margin-bottom: var(--s-2); }

.specs { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-6); margin: 0 0 var(--s-4); padding: 0; list-style: none; }
.specs div, .specs li { display: flex; flex-direction: column; gap: 1px; }
.specs span { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--text-3); }
.specs b { font-size: 1rem; color: var(--ink); font-weight: 600; }

/* Stars — same DOM contract as v2 (.stars > i[style=width:NN%]) so all pages keep working.
   Always pair with a visible numeral and an .sr-only rating sentence in new markup. */
.rating { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); }
.rating b { font-size: 1.15rem; }
.stars { position: relative; display: inline-block; font-size: .95rem; line-height: 1; letter-spacing: 2px; color: var(--line-2); }
.stars::before { content: "★★★★★"; }
.stars i {
  position: absolute; inset: 0 auto 0 0; overflow: hidden; font-style: normal; color: var(--gold-star); white-space: nowrap;
}
.stars i::before { content: "★★★★★"; letter-spacing: 2px; }

.verified {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal-soft); color: var(--teal-ink); border: 1px solid var(--teal-line);
  font-size: var(--t-xs); font-weight: 600; padding: 4px 11px; border-radius: 999px;
}
.verified::before { content: "✓"; font-weight: 700; }

/* ---------- 9. Sections / Cards / Method ---------- */
.section { padding: var(--s-9) 0; }
.section-sm { padding: var(--s-7) 0; }
.section-soft { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-tint { background: var(--teal-soft); border-top: 1px solid var(--teal-line); border-bottom: 1px solid var(--teal-line); }
/* legacy dark band renders as soft light band now */
.section-ink { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--text); }
.section-ink h2, .section-ink h3 { color: var(--ink); }
.sec-head { max-width: 680px; margin: 0 auto var(--s-7); text-align: center; }
.sec-head p { color: var(--text-2); }
.sec-eyebrow {
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--teal); margin: 0 0 var(--s-3);
}

.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: var(--s-5); box-shadow: var(--shadow-1); display: flex; flex-direction: column;
  transition: border-color var(--t-fast) var(--ease);
}
.card:hover { border-color: var(--teal-line); }
.card h2, .card h3 { font-size: 1.15rem; margin: var(--s-3) 0 var(--s-2); }
.card p { color: var(--text-2); font-size: var(--t-sm); flex: 1; margin-bottom: var(--s-3); }
.card-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--teal-soft);
  border: 1px solid var(--teal-line); color: var(--teal-ink);
  display: grid; place-items: center; font-size: 1.15rem; margin-bottom: var(--s-2);
}
.card-icon svg { width: 20px; height: 20px; }
.tag {
  align-self: flex-start; font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--text-3); background: var(--paper-2);
  border: 1px solid var(--line); padding: 3px 9px; border-radius: 999px;
}
.more { font-weight: 600; font-size: var(--t-sm); text-decoration: none; }
.more:hover { text-decoration: underline; }

.method { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.method .m { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: var(--s-5); }
.method .n { font-family: var(--f-display); font-size: 1.6rem; font-weight: 600; color: var(--teal); margin-bottom: var(--s-2); }
.method h4, .method h3 { margin: 0 0 var(--s-2); font-size: 1.02rem; }
.method p { color: var(--text-2); font-size: var(--t-sm); margin: 0; }

.receipt { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-4); justify-content: center; color: var(--text-2); font-size: var(--t-sm); padding: 0; list-style: none; }
.receipt li { display: inline-flex; align-items: center; gap: 6px; }
.receipt li::before { content: "·"; color: var(--line-2); font-weight: 700; }
.receipt li:first-child::before { content: ""; }

/* legacy stat band → light receipts row */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: var(--s-4) var(--s-5); text-align: center; }
.stat b { display: block; font-family: var(--f-display); font-size: 1.7rem; color: var(--ink); }
.stat span { color: var(--text-2); font-size: var(--t-sm); }

.trust-band { border-top: 1px solid var(--line); background: var(--paper-2); padding: var(--s-5) 0; }
.logos-label { text-align: center; color: var(--text-3); font-size: var(--t-xs); margin: 0 0 var(--s-3); }
.logos { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-6); justify-content: center; }
.logos span { color: var(--text-2); font-weight: 600; font-size: .95rem; letter-spacing: .02em; }

/* ---------- 10. Article / Prose / TOC ---------- */
.crumbs { font-size: var(--t-xs); color: var(--text-3); margin: var(--s-4) 0 0; }
.crumbs a { color: var(--text-2); text-decoration: underline; text-underline-offset: 2px; }
.crumbs a:hover { color: var(--teal); text-decoration: underline; }

.article-head { max-width: var(--readw); margin: 0 auto; padding: var(--s-6) 0 var(--s-4); }
.article-head h1 { margin: var(--s-3) 0 var(--s-3); }
.article-meta { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-4); align-items: center; color: var(--text-3); font-size: var(--t-sm); }
.article-meta .by { font-weight: 600; color: var(--text-2); }
.changelog { font-size: var(--t-xs); color: var(--text-3); border-left: 2px solid var(--line-2); padding-left: var(--s-3); margin: var(--s-3) 0 0; }
.verified-note { font-size: var(--t-xs); color: var(--teal-ink); }
.pill-new { background: var(--amber-soft); color: var(--amber); border: 1px solid var(--amber-line); font-size: .7rem; font-weight: 700; padding: 2px 8px; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; }

.prose { max-width: var(--readw); margin: 0 auto; }
.prose h2 { margin: var(--s-7) 0 var(--s-4); scroll-margin-top: 96px; }
.prose h3 { margin: var(--s-6) 0 var(--s-3); scroll-margin-top: 96px; }
.prose .lead { font-size: var(--t-md); color: var(--text-2); }
.prose ul li, .prose ol li { margin-bottom: .45em; }

/* Inline TOC (default, and <1080px fallback) */
.toc { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r); padding: var(--s-4) var(--s-5); margin: var(--s-5) 0; font-size: var(--t-sm); }
.toc b { display: block; margin-bottom: var(--s-2); color: var(--ink); }
.toc a { display: inline-block; margin: 2px 14px 2px 0; text-decoration: none; color: var(--text-2); font-weight: 500; }
.toc a:hover { color: var(--teal); text-decoration: underline; }

/* Sticky sidebar TOC on wide screens — markup: <div class="article-grid"><article>…</article><nav class="toc-side">…</nav></div> */
.article-grid { display: block; }
@media (min-width: 1080px) {
  .article-grid { display: grid; grid-template-columns: minmax(0, 1fr) 240px; gap: var(--s-8); align-items: start; }
  .article-grid > article { min-width: 0; }
  .toc-side { position: sticky; top: 96px; font-size: var(--t-sm); border-left: 1px solid var(--line); padding-left: var(--s-4); }
  .toc-side b { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; color: var(--text-3); margin-bottom: var(--s-3); }
  .toc-side a { display: block; padding: 5px 0; color: var(--text-2); text-decoration: none; font-weight: 500; }
  .toc-side a:hover { color: var(--teal); }
  .toc-side a.is-current { color: var(--teal-ink); font-weight: 600; }
  .article-grid .toc { display: none; }
}
@media (max-width: 1079.98px) { .toc-side { display: none; } }
/* ---------- 11. Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: var(--card); margin: var(--s-5) 0; -webkit-overflow-scrolling: touch; }
table.cmp { width: 100%; border-collapse: collapse; font-size: var(--t-sm); min-width: 560px; }
.cmp th {
  background: var(--paper-2); color: var(--ink); text-align: left; font-weight: 700;
  font-size: .78rem; text-transform: uppercase; letter-spacing: .06em;
  padding: 12px 16px; border-bottom: 1px solid var(--line-2); white-space: nowrap;
}
.cmp td { padding: 13px 16px; border-bottom: 1px solid var(--line); color: var(--text); vertical-align: top; }
.cmp tbody tr:last-child td { border-bottom: 0; }
.cmp tbody tr:nth-child(even) { background: var(--paper); }
.cmp tbody tr:hover { background: var(--teal-soft); }
.cmp td a { font-weight: 600; }
@media (max-width: 640px) {
  .cmp th:first-child, .cmp td:first-child {
    position: sticky; left: 0; background: var(--card); z-index: 1;
    box-shadow: 1px 0 0 var(--line);
  }
  .cmp th:first-child { background: var(--paper-2); }
}

/* ---------- 12. Pick (rank) cards ---------- */
.pick { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: var(--s-6); margin: var(--s-6) 0; box-shadow: var(--shadow-1); scroll-margin-top: 96px; }
.pick.is-top { border-color: var(--amber-line); }
.pick-top { display: flex; align-items: flex-start; gap: var(--s-4); flex-wrap: wrap; margin-bottom: var(--s-4); }
.pick-rank { font-family: var(--f-display); font-size: 1.9rem; font-weight: 600; color: var(--teal); line-height: 1; flex: none; min-width: 44px; }
.pick-top h3 { font-family: var(--f-display); font-weight: 600; font-size: 1.45rem; margin: 0; flex: 1 1 260px; }
.pick-badge, .badge-best, .badge-value, .badge-free, .badge-pop {
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: 4px 11px; border-radius: 999px; white-space: nowrap; align-self: center;
}
.badge-best { background: var(--amber-soft); color: var(--amber); border: 1px solid var(--amber-line); }
.badge-value { background: var(--teal-soft); color: var(--teal-ink); border: 1px solid var(--teal-line); }
.badge-free { background: var(--green-soft); color: var(--green); border: 1px solid var(--green-line); }
.badge-pop { background: var(--paper-2); color: var(--text-2); border: 1px solid var(--line-2); }
.pick-body > p { color: var(--text); }
.pick-stats { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-6); margin: var(--s-4) 0; padding: var(--s-3) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pick-stats div { display: flex; flex-direction: column; }
.pick-stats span { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--text-3); }
.pick-stats b { color: var(--ink); font-weight: 600; }
.pick .btn { margin: var(--s-2) var(--s-3) 0 0; }

/* Mini rating bar used in table cells */
.ratebar { display: inline-block; width: 56px; height: 4px; border-radius: 2px; background: var(--paper-3); vertical-align: middle; margin-left: 8px; position: relative; overflow: hidden; }
.ratebar i { position: absolute; inset: 0 auto 0 0; background: var(--gold-star); border-radius: 2px; }

/* ---------- 13. Pros/Cons, Notes, Disclosure, FAQ ---------- */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); margin: var(--s-5) 0; }
.pc { border-radius: var(--r); padding: var(--s-4) var(--s-5); border: 1px solid; }
.pc.pros { background: var(--green-soft); border-color: var(--green-line); }
.pc.cons { background: var(--red-soft); border-color: var(--red-line); }
.pc h4, .pc h3 { margin: 0 0 var(--s-3); font-size: .95rem; }
.pc.pros h4, .pc.pros h3 { color: var(--green); }
.pc.cons h4, .pc.cons h3 { color: var(--red); }
.pc ul { margin: 0; padding: 0; list-style: none; }
.pc li { padding-left: 22px; position: relative; margin-bottom: 8px; font-size: var(--t-sm); color: var(--text); }
.pc.pros li::before { content: "+"; position: absolute; left: 0; font-weight: 700; color: var(--green); }
.pc.cons li::before { content: "−"; position: absolute; left: 0; font-weight: 700; color: var(--red); }

.note { background: var(--teal-soft); border: 1px solid var(--teal-line); border-left: 3px solid var(--teal); border-radius: var(--r-sm); padding: var(--s-4) var(--s-5); margin: var(--s-5) 0; font-size: var(--t-sm); }
.note.warn { background: var(--amber-soft); border-color: var(--amber-line); border-left-color: var(--amber-btn); }
/* legacy verdict note renders as answer-box styling */
.note.verdict { background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--teal); box-shadow: var(--shadow-1); font-size: var(--t-base); }

.disclosure-inline { font-size: var(--t-xs); color: var(--text-3); background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 9px 14px; margin: var(--s-4) 0; }

.faq { max-width: var(--readw); margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--s-4);
  font-weight: 600; color: var(--ink); padding: var(--s-4) 4px; transition: color var(--t-fast) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.3rem; font-weight: 400; color: var(--text-3); flex: none; transition: transform var(--t-med) var(--ease); }
.faq details[open] summary { color: var(--teal-ink); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 4px var(--s-4); color: var(--text); font-size: var(--t-sm); }

/* ---------- 14. CTA band / Newsletter / Author / Related ---------- */
.cta-band {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--s-6) var(--s-7); text-align: center;
}
.cta-band h3 { font-family: var(--f-display); font-weight: 600; font-size: var(--t-xl); margin: 0 0 var(--s-3); }
.cta-band p { color: var(--text-2); max-width: 560px; margin: 0 auto var(--s-5); }

.newsletter { background: var(--teal-soft); border: 1px solid var(--teal-line); border-radius: var(--r-lg); padding: var(--s-6) var(--s-7); text-align: center; }
.newsletter h3 { font-family: var(--f-display); font-weight: 600; font-size: var(--t-lg); margin: 0 0 var(--s-2); }
.newsletter p { color: var(--text-2); max-width: 520px; margin: 0 auto var(--s-4); }
.nl-form { display: flex; gap: var(--s-2); max-width: 440px; margin: 0 auto var(--s-3); }
.nl-form input[type="email"] {
  flex: 1; min-width: 0; border: 1px solid var(--line-2); border-radius: var(--r-sm);
  padding: 12px 14px; font: inherit; background: var(--card); color: var(--ink);
}
.nl-form input[type="email"]:focus-visible { outline: 2px solid var(--teal); outline-offset: 1px; }
.newsletter small { color: var(--text-3); font-size: var(--t-xs); }
.newsletter small a { color: var(--teal-ink); }

.author-box { display: flex; gap: var(--s-4); align-items: flex-start; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r); padding: var(--s-5); max-width: var(--readw); margin: var(--s-6) auto; font-size: var(--t-sm); }
.author-box .avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; font-weight: 700; flex: none; }
.author-box h3, .author-box h4 { font-size: 1.02rem; margin: 0 0 3px; }
.author-box p { margin: 0; color: var(--text-2); }
.author-box b { display: block; color: var(--ink); }

.related { max-width: var(--readw); margin: var(--s-6) auto; }
.related h3 { font-size: 1.05rem; margin-bottom: var(--s-3); }
.related ul { margin: 0; padding-left: 1.2em; }
.related li { margin-bottom: 8px; }

/* ---------- 15. Footer ---------- */
.site-footer { background: var(--ink-surface); color: #A3A9B3; margin-top: var(--s-9); font-size: var(--t-sm); }
.site-footer .container { padding-top: var(--s-8); padding-bottom: var(--s-6); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s-6); margin-bottom: var(--s-6); }
.footer-brand p { color: #A3A9B3; font-size: var(--t-sm); margin-top: var(--s-3); }
.site-footer h4, .site-footer h3, .site-footer h2 { color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; margin: 0 0 var(--s-3); }
.site-footer a:not(.logo) { display: block; color: #C9CED6; text-decoration: none; padding: 4px 0; }
.site-footer a:not(.logo):hover { color: #fff; text-decoration: underline; }
.footer-bottom { border-top: 1px solid #2A2E36; padding-top: var(--s-5); }
.footer-bottom p { margin: 0 0 var(--s-2); }
.fdisc { color: #7D838E; font-size: var(--t-xs); line-height: 1.6; }
/* ---------- 16. Picker chat ---------- */
.picker-hero { padding: var(--s-7) 0 var(--s-5); text-align: center; }
.picker-hero h1 { margin: var(--s-3) 0; }
.picker-hero p { color: var(--text-2); max-width: 560px; margin: 0 auto; }

.chat { max-width: 760px; margin: var(--s-5) auto var(--s-7); background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-1); overflow: hidden; }
.chat-head { display: flex; align-items: center; gap: var(--s-3); background: var(--paper-2); border-bottom: 1px solid var(--line); padding: var(--s-3) var(--s-5); }
.chat-ava { width: 36px; height: 36px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; font-weight: 700; flex: none; }
.chat-head b { color: var(--ink); }
.chat-status { font-size: var(--t-xs); color: var(--teal-ink); }
.chat-status::before { content: "●"; color: var(--green); margin-right: 5px; font-size: .6rem; vertical-align: 1px; }
.chat-log { padding: var(--s-5); min-height: 320px; max-height: 60vh; overflow-y: auto; display: flex; flex-direction: column; gap: var(--s-4); }
.msg { display: flex; gap: var(--s-3); max-width: 88%; }
.msg-ava { width: 28px; height: 28px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; font-size: .7rem; font-weight: 700; flex: none; }
.msg-body { background: var(--paper-2); border: 1px solid var(--line); border-radius: 4px var(--r) var(--r) var(--r); padding: 10px 14px; font-size: var(--t-sm); color: var(--text); }
.msg-bot { align-self: flex-start; }
.msg-user { align-self: flex-end; flex-direction: row-reverse; }
.msg-user .msg-body { background: var(--teal-soft); border-color: var(--teal-line); color: var(--teal-ink); border-radius: var(--r) 4px var(--r) var(--r); }
.msg-user .msg-ava { background: var(--ink); }
.typing span { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--text-3); margin-right: 3px; animation: blink 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%, 80%, 100% { opacity: .25; } 40% { opacity: 1; } }

.recs { display: flex; flex-direction: column; gap: var(--s-3); margin-top: var(--s-3); }
.rec { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: var(--s-4); }
.rec-info b { color: var(--ink); }
.rec-info .prov { color: var(--text-3); font-size: var(--t-xs); }
.rec-note { color: var(--text-2); font-size: var(--t-xs); margin: 6px 0 0; }
.rec-actions { display: flex; gap: var(--s-2); flex-wrap: wrap; margin-top: var(--s-3); }
.rec-review { font-size: var(--t-sm); font-weight: 600; align-self: center; }
.rec-resource { font-size: var(--t-xs); color: var(--text-3); }

.chat-suggest, .chat-suggest-inline { display: flex; flex-wrap: wrap; gap: var(--s-2); padding: 0 var(--s-5) var(--s-3); }
.chat-suggest-inline { padding: var(--s-2) 0 0; }
.chip {
  font-size: var(--t-xs); font-weight: 600; color: var(--teal-ink); background: var(--card);
  border: 1px solid var(--teal-line); border-radius: 999px; padding: 7px 14px; cursor: pointer;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.chip:hover { background: var(--teal-soft); border-color: var(--teal); }
.chat-input { display: flex; gap: var(--s-2); border-top: 1px solid var(--line); padding: var(--s-3) var(--s-4); background: var(--paper); }
.chat-input input {
  flex: 1; min-width: 0; border: 1px solid var(--line-2); border-radius: var(--r-sm);
  padding: 11px 14px; font: inherit; background: var(--card); color: var(--ink);
}
.chat-input input:focus-visible { outline: 2px solid var(--teal); outline-offset: 1px; }
.chat-disc { text-align: center; font-size: var(--t-xs); color: var(--text-3); padding: 0 var(--s-5) var(--s-4); margin: 0; }

/* ---------- 17. Floating widget ---------- */
.fab-wrap {
  position: fixed; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 90; display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}

/* Launcher — one cohesive brand pill (icon + label) */
.fab-launch {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px 11px 13px; border: 0; cursor: pointer;
  background: linear-gradient(180deg, var(--teal), var(--teal-ink));
  color: #fff; font-family: var(--f-body); font-size: var(--t-sm); font-weight: 600;
  border-radius: 999px; box-shadow: var(--shadow-2);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), opacity var(--t-med) var(--ease);
  animation: fabIn .5s var(--ease) both;
}
.fab-launch:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(15, 118, 110, .30); }
.fab-launch:focus-visible { outline: 3px solid var(--teal-soft); outline-offset: 2px; }
.fab-launch-ico { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(255, 255, 255, .16); flex: none; }
.fab-launch-ico svg { width: 16px; height: 16px; fill: #fff; }
.fab-launch-txt { white-space: nowrap; }
/* !important so the open-state beats the retained entrance-animation values */
.fab-launch.is-open { opacity: 0 !important; transform: scale(.7) !important; pointer-events: none; }

/* Nudge — a connected speech card sitting above the launcher */
.fab-nudge {
  position: relative; max-width: min(272px, calc(100vw - 36px));
  background: var(--card); color: var(--text);
  border: 1px solid var(--line-2); border-radius: var(--r-lg);
  box-shadow: var(--shadow-2); padding: 13px 36px 14px 15px;
  opacity: 0; transform: translateY(8px) scale(.96); pointer-events: none;
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.fab-nudge.show { opacity: 1; transform: none; pointer-events: auto; }
.fab-nudge::after {            /* tail pointing down toward the launcher */
  content: ""; position: absolute; right: 24px; bottom: -6px; width: 12px; height: 12px;
  background: var(--card); border-right: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
  transform: rotate(45deg);
}
.fab-nudge-t { margin: 0; font-weight: 700; font-size: var(--t-sm); color: var(--ink); }
.fab-nudge-d { margin: 3px 0 0; font-size: var(--t-xs); line-height: 1.45; color: var(--text-2); }
.fab-nudge-x {
  position: absolute; top: 7px; right: 7px; width: 26px; height: 26px;
  display: grid; place-items: center; border: 0; border-radius: 50%;
  background: transparent; color: var(--text-3); cursor: pointer;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.fab-nudge-x:hover { background: var(--paper-3); color: var(--ink); }
.fab-nudge-x:focus-visible { outline: 2px solid var(--teal); outline-offset: 1px; }
.fab-nudge-x svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2.4; fill: none; }

/* Panel */
.fab-panel {
  position: fixed; right: 18px; bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  width: min(376px, calc(100vw - 32px)); max-height: min(564px, calc(100vh - 120px));
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-2); overflow: hidden; display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(14px) scale(.98); transform-origin: bottom right;
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease), visibility var(--t-med) var(--ease);
}
.fab-panel.open { opacity: 1; visibility: visible; transform: none; }
.fab-head { display: flex; align-items: center; gap: 11px; background: var(--paper-2); border-bottom: 1px solid var(--line); padding: 12px 14px; }
.fab-ava { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(180deg, var(--teal), var(--teal-ink)); display: grid; place-items: center; flex: none; }
.fab-ava svg { width: 18px; height: 18px; fill: #fff; }
.fab-head-t { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.fab-head-t strong { font-size: .92rem; color: var(--ink); }
.fab-head-t span { font-size: var(--t-xs); color: var(--text-3); }
.fab-close {
  margin-left: auto; flex: none; width: 36px; height: 36px; display: grid; place-items: center;
  background: transparent; border: 0; border-radius: var(--r-sm); color: var(--text-3); cursor: pointer;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.fab-close:hover { background: var(--paper-3); color: var(--ink); }
.fab-close:focus-visible { outline: 2px solid var(--teal); outline-offset: 1px; }
.fab-close svg { width: 17px; height: 17px; stroke: currentColor; stroke-width: 2.2; fill: none; }
.fab-log { flex: 1; overflow-y: auto; padding: var(--s-4); display: flex; flex-direction: column; gap: var(--s-3); }
.fab-suggest { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 var(--s-4) var(--s-2); }
.fab-form { display: flex; gap: var(--s-2); border-top: 1px solid var(--line); padding: var(--s-3); }
.fab-form input { flex: 1; min-width: 0; border: 1px solid var(--line-2); border-radius: var(--r-sm); padding: 10px 12px; font: inherit; }
.fab-form input:focus-visible { outline: 2px solid var(--teal); outline-offset: 0; border-color: var(--teal); }
.fab-foot { text-align: center; font-size: .68rem; color: var(--text-3); padding: 0 var(--s-3) var(--s-2); margin: 0; }

@keyframes fabIn { from { opacity: 0; transform: translateY(10px) scale(.9); } to { opacity: 1; transform: none; } }

@media (max-width: 640px) {
  body[data-fab="quiet"] .fab-wrap { display: none; }
  .fab-launch { padding: 11px 16px 11px 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .fab-launch, .fab-nudge, .fab-panel { animation: none !important; transition: opacity .15s linear !important; transform: none !important; }
}
/* ---------- 18. LEGACY COMPATIBILITY ----------
   Everything below keeps the ~26 not-yet-migrated pages rendering correctly
   on the new theme with their existing markup. Remove rules here as pages
   are cloned onto the new templates. */

/* Old dark hero markup (h1 + .sub on gradient) now renders on paper — ensure inner text colors inherit */
.hero .hero-pill b { color: var(--teal-ink); }
.hero-card .mini-stats { display: flex; gap: var(--s-4); margin: var(--s-3) 0; padding: var(--s-3) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero-card .mini-stats div { flex: 1; display: flex; flex-direction: column; }
.hero-card .mini-stats span { font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-3); font-weight: 600; }
.hero-card .mini-stats b { color: var(--ink); font-size: .95rem; }

/* Old roadmap flow (gradient stages) → light cards with teal arrows */
.roadmap-flow { display: flex; align-items: stretch; gap: var(--s-2); flex-wrap: wrap; margin: var(--s-5) 0; }
.rm-stage { flex: 1 1 150px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: var(--s-4); }
.rm-n { font-family: var(--f-display); color: var(--teal); font-size: 1.2rem; font-weight: 600; }
.rm-t { font-weight: 700; color: var(--ink); margin: 4px 0; font-size: var(--t-sm); }
.rm-c { color: var(--text-2); font-size: var(--t-xs); }
.rm-arrow { align-self: center; color: var(--text-3); font-weight: 700; }

/* Old inline-styled promo band on index (grid via style attribute) — neutralize on mobile */
@media (max-width: 760px) {
  .cta-band[style*="grid"] { display: block !important; text-align: center !important; }
  .cta-band[style*="grid"] [aria-hidden="true"] { display: none; }
}

/* Emoji card icons on legacy pages: keep sized consistently */
.card-icon { font-size: 1.15rem; line-height: 1; }

/* ---------- 19. Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-6); padding: var(--s-7) 0; }
  .hero-card { max-width: 480px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .method { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .section { padding: var(--s-8) 0; }
  .section-sm { padding: var(--s-6) 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .proscons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: var(--s-6) var(--s-5); }
  .nl-form { flex-direction: column; }
  .pick { padding: var(--s-5); }
}
@media (max-width: 719.98px) {
  .main-nav, .site-header .nav-cta-btn { display: none; }
  .nav-toggle { display: grid; }
}
@media (min-width: 720px) {
  .mobile-nav { display: none !important; }
}
@media (max-width: 480px) {
  .method, .stats, .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .answer { padding: var(--s-4) var(--s-4); }
}

/* ---------- 20. Motion & Print ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
@media print {
  .topbar, .site-header, .fab-wrap, .cta-band, .newsletter, .site-footer { display: none; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}
