/* ==========================================================================
   The Supplement Examiner - examiner.css
   Editorial "Verdict Press" theme. Flat ex- namespaced components,
   is-/has- state classes, u- utilities, :root tokens. No nesting.
   Order: reset > tokens > base/type > layout > masthead > article blocks
          > stats > form > faq > footer > utilities > responsive
   ========================================================================== */

/* ---- reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, li, figure, blockquote, dl, dd { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img { max-width: 100%; display: block; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

/* ---- metrics-matched fallback fonts (kill font-swap CLS) ----------------- */
/* size-adjust calibrated so fallback width == web-font width (measured) */
@font-face { font-family: "Frank Ruhl fallback"; src: local("Georgia"); size-adjust: 87.5%; ascent-override: 90%; descent-override: 22%; line-gap-override: 0%; }
@font-face { font-family: "Mulish fallback"; src: local("Arial"); size-adjust: 104.9%; ascent-override: 94%; descent-override: 24%; line-gap-override: 0%; }

/* ---- tokens -------------------------------------------------------------- */
:root {
  --paper: #f7f4ee;
  --surface: #ffffff;
  --surface-2: #fffdf7;
  --ink: #1c1a17;
  --ink-2: #423c34;
  --muted: #5d564c;
  --line: #e4ded1;
  --line-soft: #efe9dd;
  --accent: #b23121;
  --accent-dark: #8c2515;
  --accent-tint: #f8e8e3;
  --good: #2f7d52;
  --good-tint: #e7f1ea;
  --warn: #b07d18;
  --warn-tint: #f6ecd6;
  --star: #e0a526;
  --shadow-sm: 0 1px 2px rgba(28,26,23,.06);
  --shadow: 0 10px 30px rgba(28,26,23,.08);
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 20px;
  --maxw: 1120px;
  --prose: 760px;
  --font-head: "Frank Ruhl Libre", "Frank Ruhl fallback", Georgia, "Times New Roman", serif;
  --font-body: "Mulish", "Mulish fallback", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* ---- base / type --------------------------------------------------------- */
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.66;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.16; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.05rem, 5.4vw, 3.15rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.05rem); }
h3 { font-size: clamp(1.18rem, 2.2vw, 1.4rem); }
p { margin-bottom: 1rem; }
a { text-decoration-color: rgba(178,49,33,.35); text-underline-offset: 3px; }
a:hover { color: var(--accent-dark); }
strong { font-weight: 800; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.ex-wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(16px, 4vw, 34px); }
.ex-prose { max-width: var(--prose); }
.ex-eyebrow {
  font-family: var(--font-body); font-weight: 800; font-size: .76rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
  margin-bottom: .55rem; display: block;
}
.ex-section { padding-block: clamp(34px, 6vw, 58px); border-top: 1px solid var(--line); }
.ex-section:first-of-type { border-top: 0; }
.ex-lede { font-size: 1.14rem; color: var(--ink-2); }

/* ---- skip link ----------------------------------------------------------- */
.ex-skip {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 var(--r-sm) 0;
}
.ex-skip:focus { left: 0; }

/* ---- masthead ------------------------------------------------------------ */
.ex-topbar { background: var(--ink); color: #f3efe6; font-size: .82rem; }
.ex-topbar-inner { display: flex; gap: 1rem; justify-content: center; align-items: center; padding: .4rem 0; text-align: center; }
.ex-masthead { background: var(--surface); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
.ex-mast-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .85rem; }
.ex-logo { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); }
.ex-logo-mark { width: 38px; height: 38px; flex: 0 0 auto; }
.ex-logo-text { display: flex; flex-direction: column; line-height: 1.04; }
.ex-logo-name { font-family: var(--font-head); font-weight: 800; font-size: 1.16rem; letter-spacing: -.01em; }
.ex-logo-tag { font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.ex-nav { display: flex; align-items: center; gap: .35rem; }
.ex-nav-link {
  text-decoration: none; color: var(--ink-2); font-weight: 700; font-size: .92rem;
  padding: .5rem .7rem; border-radius: var(--r-sm);
}
.ex-nav-link:hover { background: var(--paper); color: var(--ink); }
.ex-nav-link[aria-current="page"] { color: var(--accent); }
.ex-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  font-family: var(--font-body); font-weight: 800; font-size: .9rem; letter-spacing: .02em;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  padding: .7rem 1.15rem; border-radius: 999px; min-height: 44px; transition: transform .08s ease, background .15s ease;
}
.ex-btn:active { transform: translateY(1px); }
.ex-btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.ex-btn-primary:hover { background: var(--accent-dark); color: #fff; }
.ex-btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.ex-btn-ghost:hover { background: var(--paper); }
.ex-btn-lg { font-size: 1rem; padding: .95rem 1.7rem; }
.ex-btn-block { display: flex; width: 100%; }
.ex-nav-cta { margin-left: .3rem; }

.ex-burger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: var(--r-sm); background: var(--surface); cursor: pointer; align-items: center; justify-content: center;
}
.ex-burger span, .ex-burger span::before, .ex-burger span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); position: relative;
}
.ex-burger span::before { position: absolute; top: -6px; }
.ex-burger span::after { position: absolute; top: 6px; }

/* ---- disclosure bar ------------------------------------------------------ */
.ex-disclosure-bar { background: var(--accent-tint); border-bottom: 1px solid var(--line); }
.ex-disclosure-bar p { margin: 0; padding: .6rem 0; font-size: .85rem; color: #6a2417; text-align: center; }
.ex-disclosure-bar a { color: var(--accent-dark); font-weight: 800; }

/* ---- breadcrumb ---------------------------------------------------------- */
.ex-breadcrumb { font-size: .82rem; color: var(--muted); padding-block: .8rem; border-bottom: 1px solid var(--line-soft); }
.ex-breadcrumb ol { display: flex; flex-wrap: wrap; gap: .35rem; align-items: center; }
.ex-breadcrumb a { text-decoration: none; color: var(--accent); font-weight: 700; }
.ex-breadcrumb li + li::before { content: "›"; margin-right: .35rem; color: var(--muted); }

/* ---- hero / byline ------------------------------------------------------- */
.ex-hero { padding-top: clamp(26px, 4vw, 44px); }
.ex-hero h1 { margin-bottom: .7rem; }
.ex-hero-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.6rem; align-items: center; }
.ex-hero-img { max-width: 290px; margin-inline: auto; filter: drop-shadow(0 16px 28px rgba(28,26,23,.16)); }
.ex-subclaim { font-size: 1.2rem; color: var(--ink-2); max-width: 42ch; }
.ex-byline {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .9rem;
  margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line-soft);
  font-size: .86rem; color: var(--muted);
}
.ex-byline strong { color: var(--ink); }
.ex-byline a { color: var(--accent); font-weight: 700; }
.ex-dot { color: var(--line); }

/* ---- verdict box --------------------------------------------------------- */
.ex-verdict {
  display: grid; grid-template-columns: 230px 1fr; gap: 0;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow); margin-top: 1.5rem;
}
.ex-verdict-score {
  background: var(--ink); color: #fff; padding: 1.6rem 1.3rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .35rem;
}
.ex-verdict-num { font-family: var(--font-head); font-weight: 800; font-size: 3.6rem; line-height: 1; }
.ex-verdict-num span { font-size: 1.3rem; color: #c9c2b6; }
.ex-verdict-label { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: #bdb6a9; font-weight: 800; }
.ex-verdict-body { padding: clamp(1.1rem, 2.4vw, 1.7rem); }
.ex-verdict-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; margin-bottom: .6rem; }
.ex-verdict-tag {
  font-family: var(--font-body); font-weight: 800; font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
}
.ex-bottomline { font-size: 1.08rem; color: var(--ink); margin-bottom: 1.1rem; }
.ex-bottomline strong { font-weight: 800; }

/* stars */
.ex-stars { display: inline-flex; gap: 2px; --pct: 100%; line-height: 1; }
.ex-stars svg { width: 18px; height: 18px; }
.ex-stars.is-light .ex-star-bg { fill: #4a463f; }
.ex-star-bg { fill: #e7e1d4; }
.ex-star-on { fill: var(--star); }

/* facts grid */
.ex-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.ex-fact { background: var(--surface-2); padding: .7rem .8rem; }
.ex-fact dt { font-size: .68rem; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); font-weight: 800; margin-bottom: .15rem; }
.ex-fact dd { font-weight: 700; font-size: .95rem; color: var(--ink); }
.ex-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem 1rem; margin-top: 1.2rem; }
.ex-cta-note { font-size: .78rem; color: var(--muted); max-width: 30ch; }

/* ---- quick take / callouts ----------------------------------------------- */
.ex-callout {
  background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--accent);
  border-radius: var(--r); padding: 1.1rem 1.25rem; margin-top: 1.3rem;
}
.ex-callout h2, .ex-callout h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.ex-callout p:last-child { margin-bottom: 0; }

/* ---- pros / cons --------------------------------------------------------- */
.ex-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: 1.4rem; }
.ex-pc-card { border: 1px solid var(--line); border-radius: var(--r); padding: 1.2rem 1.3rem; background: var(--surface); }
.ex-pc-card.is-good { border-top: 4px solid var(--good); }
.ex-pc-card.is-bad { border-top: 4px solid var(--warn); }
.ex-pc-card h3 { font-size: 1.1rem; margin-bottom: .7rem; }
.ex-pc-list li { position: relative; padding-left: 1.7rem; margin-bottom: .55rem; font-size: .96rem; }
.ex-pc-list li::before { position: absolute; left: 0; top: 0; font-weight: 800; }
.is-good .ex-pc-list li::before { content: "✓"; color: var(--good); }
.is-bad .ex-pc-list li::before { content: "–"; color: var(--warn); font-size: 1.2rem; line-height: 1; }

/* ---- criteria bars ------------------------------------------------------- */
.ex-criteria { margin-top: 1.3rem; display: grid; gap: .85rem; }
.ex-crit-row { display: grid; grid-template-columns: 200px 1fr 42px; align-items: center; gap: .8rem; }
.ex-crit-name { font-weight: 700; font-size: .92rem; }
.ex-crit-track { height: 11px; background: var(--line-soft); border-radius: 999px; overflow: hidden; }
.ex-crit-fill { height: 100%; background: linear-gradient(90deg, var(--accent), #cf5a47); border-radius: 999px; }
.ex-crit-val { font-weight: 800; font-size: .9rem; text-align: right; font-variant-numeric: tabular-nums; }

/* ---- generic tables ------------------------------------------------------ */
.ex-table-wrap { margin-top: 1.2rem; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); }
.ex-table { width: 100%; border-collapse: collapse; font-size: .94rem; min-width: 460px; }
.ex-table caption { text-align: left; padding: .8rem 1rem; font-weight: 800; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.ex-table th, .ex-table td { padding: .7rem .9rem; text-align: left; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.ex-table thead th { background: var(--ink); color: #fff; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
.ex-table tbody tr:last-child td { border-bottom: 0; }
.ex-table tbody tr:nth-child(even) { background: var(--surface-2); }

/* ---- testing timeline ---------------------------------------------------- */
.ex-timeline { margin-top: 1.4rem; display: grid; gap: 1rem; }
.ex-tl-step { display: grid; grid-template-columns: 120px 1fr; gap: 1rem; border: 1px solid var(--line); border-radius: var(--r); padding: 1rem 1.2rem; background: var(--surface); }
.ex-tl-when { font-family: var(--font-head); font-weight: 800; color: var(--accent); font-size: 1.02rem; }
.ex-tl-step h3 { font-size: 1.02rem; margin-bottom: .25rem; }
.ex-tl-step p { margin: 0; font-size: .95rem; }

/* ---- pricing ------------------------------------------------------------- */
.ex-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 1.4rem; }
.ex-price-card { position: relative; border: 1px solid var(--line); border-radius: var(--r); padding: 1.4rem 1.2rem; background: var(--surface); text-align: center; display: flex; flex-direction: column; }
.ex-price-card.is-best { border-color: var(--accent); box-shadow: var(--shadow); }
.ex-price-flag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: .25rem .7rem; border-radius: 999px; white-space: nowrap; }
.ex-price-name { font-weight: 800; font-size: 1.05rem; }
.ex-price-sub { font-size: .82rem; color: var(--muted); margin-bottom: .7rem; }
.ex-price-big { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; line-height: 1; }
.ex-price-per { font-size: .82rem; color: var(--muted); margin-bottom: .9rem; }
.ex-price-card .ex-btn { margin-top: auto; }
.ex-guarantee { display: flex; align-items: center; gap: .8rem; margin-top: 1.2rem; padding: 1rem 1.2rem; background: var(--good-tint); border: 1px solid #cfe3d6; border-radius: var(--r); font-size: .92rem; }
.ex-guarantee strong { color: var(--good); }

/* ---- stats --------------------------------------------------------------- */
.ex-stats-head { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 1.2rem; margin-bottom: 1.4rem; }
.ex-bigrating { display: flex; align-items: center; gap: 1rem; }
.ex-bigrating-num { font-family: var(--font-head); font-weight: 800; font-size: 3.4rem; line-height: 1; }
.ex-bigrating-num span { font-size: 1.2rem; color: var(--muted); }
.ex-bigrating-meta { font-size: .9rem; color: var(--muted); }
.ex-statgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin-top: 1.2rem; }
.ex-statgrid dt, .ex-statgrid dd { margin: 0; }
.ex-stat { background: var(--surface); padding: 1.05rem 1rem; text-align: center; display: flex; flex-direction: column-reverse; justify-content: center; gap: .25rem; }
.ex-stat-num { font-family: var(--font-head); font-weight: 800; font-size: 1.75rem; color: var(--accent); line-height: 1.05; }
.ex-stat-lab { font-size: .76rem; color: var(--muted); font-weight: 700; }

/* distribution + theme bars */
.ex-bars { margin-top: 1.3rem; display: grid; gap: .6rem; }
.ex-bar-row { display: grid; grid-template-columns: 92px 1fr 46px; align-items: center; gap: .7rem; font-size: .9rem; }
.ex-bar-key { font-weight: 700; }
.ex-bar-track { height: 14px; background: var(--line-soft); border-radius: 999px; overflow: hidden; }
.ex-bar-fill { height: 100%; background: var(--star); border-radius: 999px; }
.ex-bar-fill.is-neg { background: #c98a6f; }
.ex-bar-val { text-align: right; font-weight: 800; font-variant-numeric: tabular-nums; }
.ex-bar-row.is-theme { grid-template-columns: 1fr 46px; }
.ex-theme-line { display: grid; grid-template-columns: 1fr auto; gap: .6rem; align-items: baseline; }
.ex-theme-name { font-weight: 700; font-size: .92rem; }
.ex-theme-track { grid-column: 1 / -1; height: 12px; background: var(--line-soft); border-radius: 999px; overflow: hidden; margin-top: .25rem; }
.ex-theme-fill { height: 100%; background: linear-gradient(90deg, var(--good), #5aa37a); border-radius: 999px; }
.ex-theme-fill.is-neg { background: linear-gradient(90deg, var(--warn), #d2a64e); }

/* demographics */
.ex-demos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 1.3rem; }
.ex-demo h3 { font-size: 1rem; margin-bottom: .6rem; }
.ex-demo-row { display: grid; grid-template-columns: 1fr 44px; gap: .5rem; padding: .35rem 0; border-bottom: 1px dashed var(--line); font-size: .9rem; }
.ex-demo-row span:last-child { font-weight: 800; text-align: right; }

/* testimonials */
.ex-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 1.4rem; }
.ex-tcard { border: 1px solid var(--line); border-radius: var(--r); padding: 1.15rem 1.2rem; background: var(--surface); display: flex; flex-direction: column; gap: .6rem; }
.ex-tcard.is-critical { background: var(--warn-tint); border-color: #e6d4a8; }
.ex-tcard-top { display: flex; align-items: center; gap: .7rem; }
.ex-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: .95rem; flex: 0 0 auto; }
.ex-tcard.is-critical .ex-avatar { background: var(--warn); }
.ex-tcard-id { line-height: 1.2; }
.ex-tcard-name { font-weight: 800; font-size: .94rem; }
.ex-tcard-meta { font-size: .76rem; color: var(--muted); }
.ex-verified { font-size: .7rem; color: var(--good); font-weight: 800; }
.ex-tcard-title { font-weight: 800; font-size: .98rem; }
.ex-tcard p { margin: 0; font-size: .93rem; color: var(--ink-2); }

/* ---- review form --------------------------------------------------------- */
.ex-form-wrap { display: grid; grid-template-columns: 1fr; gap: 1.4rem; margin-top: 1.4rem; }
.ex-form { border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.2rem, 3vw, 1.8rem); background: var(--surface); box-shadow: var(--shadow-sm); }
.ex-form h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.ex-form-note { font-size: .85rem; color: var(--muted); margin-bottom: 1.2rem; }
.ex-field { margin-bottom: 1rem; }
.ex-field label { display: block; font-weight: 800; font-size: .86rem; margin-bottom: .35rem; }
.ex-req { color: var(--accent); }
.ex-input, .ex-textarea, .ex-select {
  width: 100%; padding: .7rem .85rem; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--surface-2); font-size: .96rem; min-height: 44px;
}
.ex-textarea { min-height: 130px; resize: vertical; }
.ex-input:focus, .ex-textarea:focus, .ex-select:focus { border-color: var(--accent); background: #fff; outline: none; box-shadow: 0 0 0 3px rgba(178,49,33,.14); }
.ex-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ex-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* star picker */
.ex-starpick { display: inline-flex; flex-direction: row-reverse; gap: .2rem; }
.ex-starpick input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.ex-starpick label { margin: 0; cursor: pointer; padding: .1rem; line-height: 1; }
.ex-starpick label svg { width: 34px; height: 34px; fill: #ddd6c7; transition: fill .1s ease; }
.ex-starpick label:hover svg,
.ex-starpick label:hover ~ label svg,
.ex-starpick input:checked ~ label svg { fill: var(--star); }
.ex-starpick input:focus-visible + label svg { outline: 3px solid var(--accent); outline-offset: 2px; }

.ex-consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; }
.ex-consent input { width: 20px; height: 20px; margin-top: 2px; flex: 0 0 auto; }
.ex-form-success {
  display: none; margin-top: 1rem; padding: 1rem 1.2rem; background: var(--good-tint);
  border: 1px solid #cfe3d6; border-radius: var(--r); color: #1f5a3a; font-weight: 700;
}
.ex-form-success.is-shown { display: block; }
.ex-rules { font-size: .8rem; color: var(--muted); margin-top: .9rem; }

/* ---- who should box ------------------------------------------------------ */
.ex-fit { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: 1.3rem; }
.ex-fit-card { border: 1px solid var(--line); border-radius: var(--r); padding: 1.2rem 1.3rem; background: var(--surface); }
.ex-fit-card h3 { font-size: 1.05rem; margin-bottom: .6rem; }
.ex-fit-card.is-yes h3 { color: var(--good); }
.ex-fit-card.is-no h3 { color: var(--warn); }
.ex-fit-card li { padding-left: 1.4rem; position: relative; margin-bottom: .45rem; font-size: .94rem; }
.ex-fit-card.is-yes li::before { content: "✓"; position: absolute; left: 0; color: var(--good); font-weight: 800; }
.ex-fit-card.is-no li::before { content: "✕"; position: absolute; left: 0; color: var(--warn); font-weight: 800; }

/* ---- faq ----------------------------------------------------------------- */
.ex-faq { margin-top: 1.3rem; display: grid; gap: .7rem; }
.ex-faq-item { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); overflow: hidden; }
.ex-faq-item summary { cursor: pointer; list-style: none; padding: 1rem 1.2rem; font-weight: 800; font-family: var(--font-head); font-size: 1.05rem; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.ex-faq-item summary::-webkit-details-marker { display: none; }
.ex-faq-item summary::after { content: "+"; color: var(--accent); font-weight: 800; font-size: 1.4rem; }
.ex-faq-item[open] summary::after { content: "–"; }
.ex-faq-answer { padding: 0 1.2rem 1.1rem; }
.ex-faq-answer p:last-child { margin-bottom: 0; }

/* ---- takeaways / final --------------------------------------------------- */
.ex-takeaways { margin-top: 1.2rem; display: grid; gap: .7rem; }
.ex-takeaways li { display: grid; grid-template-columns: auto 1fr; gap: .7rem; padding: .85rem 1.1rem; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); font-size: .98rem; }
.ex-takeaways li::before { content: "★"; color: var(--star); font-weight: 800; }
.ex-final { background: var(--ink); color: #f3efe6; border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2.6rem); margin-top: 1.5rem; }
.ex-final h2 { color: #fff; }
.ex-final p { color: #d9d3c7; }
.ex-final .ex-eyebrow { color: #e3a08f; }
.ex-final .ex-cta-note { color: #b3aca0; }

/* ---- footer -------------------------------------------------------------- */
.ex-footer { background: var(--ink); color: #c8c2b6; margin-top: 2.5rem; padding-block: clamp(2rem, 5vw, 3.2rem); font-size: .9rem; }
.ex-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 1.8rem; }
.ex-footer h3 { color: #fff; font-size: 1rem; margin-bottom: .6rem; }
.ex-footer a { color: #d8d2c6; text-decoration: none; }
.ex-footer a:hover { color: #fff; text-decoration: underline; }
.ex-footer-links { display: grid; gap: .15rem; }
.ex-footer-links a { display: inline-block; padding-block: .4rem; min-height: 24px; }
.ex-foot-logo { display: flex; align-items: center; gap: .6rem; margin-bottom: .8rem; }
.ex-foot-logo .ex-logo-name { color: #fff; }
.ex-foot-disclaimer { border-top: 1px solid #36322b; margin-top: 1.8rem; padding-top: 1.4rem; font-size: .8rem; color: #9b958a; }
.ex-foot-disclaimer p { margin-bottom: .7rem; }
.ex-foot-disclaimer strong { color: #c8c2b6; }

/* ---- utilities ----------------------------------------------------------- */
.u-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; }
.u-center { text-align: center; }
.u-mt { margin-top: 1.2rem; }
.u-mt-lg { margin-top: 2rem; }
.u-nowrap { white-space: nowrap; }
.u-mb-0 { margin-bottom: 0; }

/* ---- responsive ---------------------------------------------------------- */
@media (max-width: 900px) {
  .ex-footer-grid { grid-template-columns: 1fr 1fr; }
  .ex-statgrid { grid-template-columns: repeat(2, 1fr); }
  .ex-demos { grid-template-columns: 1fr; }
  .ex-testimonials { grid-template-columns: 1fr 1fr; }
  .ex-pricing { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .ex-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--surface); border-bottom: 1px solid var(--line); padding: .6rem clamp(16px,4vw,34px) 1rem; gap: .15rem; box-shadow: var(--shadow); }
  .ex-nav.is-open { display: flex; }
  .ex-nav-link { padding: .8rem .4rem; border-bottom: 1px solid var(--line-soft); }
  .ex-nav-cta { margin: .5rem 0 0; }
  .ex-burger { display: inline-flex; }
  .ex-verdict { grid-template-columns: 1fr; }
  .ex-verdict-score { flex-direction: row; gap: .9rem; padding: 1.1rem; }
  .ex-facts { grid-template-columns: 1fr 1fr; }
  .ex-hero-grid, .ex-proscons, .ex-fit, .ex-form-wrap { grid-template-columns: 1fr; }
  .ex-hero-grid { gap: .6rem; }
  .ex-hero-img { max-width: 210px; }
  .ex-crit-row { grid-template-columns: 130px 1fr 38px; }
  .ex-tl-step { grid-template-columns: 1fr; gap: .3rem; }
  .ex-testimonials { grid-template-columns: 1fr; }
  .ex-footer-grid { grid-template-columns: 1fr; }
  .ex-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .ex-facts { grid-template-columns: 1fr; }
  .ex-statgrid { grid-template-columns: 1fr; }
  .ex-crit-row { grid-template-columns: 110px 1fr 34px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
