/* ================================================================
   Design system — generated. Accent hue 18, saturation 68%.
   Body-link contrast: 4.6:1 on light, 6.87:1 on dark.
   ================================================================ */

:root {
  color-scheme: light dark;

  /* --- Typography scale (1.200 minor third, 16px root) --- */
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.333rem;
  --text-2xl:  1.6rem;
  --text-3xl:  2.0rem;
  --text-4xl:  2.5rem;
  --text-5xl:  3.1rem;

  --leading-tight: 1.2;
  --leading-snug:  1.35;
  --leading-body:  1.65;

  /* --- Spacing (4px base) --- */
  --space-1: 0.25rem;  --space-2: 0.5rem;   --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.5rem;   --space-6: 2rem;
  --space-7: 3rem;     --space-8: 4rem;     --space-9: 6rem;

  /* --- Shape --- */
  --radius-sm: 6px; --radius-md: 10px; --radius-lg: 16px; --radius-pill: 999px;
  --border-thin: 1px; --border-thick: 2px;

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

  /* --- Layout --- */
  --measure: 68ch;          /* optimal reading width for citation-heavy prose */
  --wrap: 1160px;
  --wrap-wide: 1400px;

  /* --- Accent (per site) --- */
  --accent:        #c15425;
  --accent-bold:   #d86331;
  --accent-solid:  #b44e22;
  --accent-soft:   #fbf2ef;
  --accent-border: #edcdc0;
  --accent-on-solid: #ffffff;

  /* --- Neutrals (light) --- */
  --bg:          #ffffff;
  --bg-subtle:   #f6f7f9;
  --bg-inset:    #eef0f4;
  --surface:     #ffffff;
  --fg:          #14171c;
  --fg-muted:    #565d6a;   /* 5.9:1 on --bg */
  --fg-faint:    #6d7480;   /* 4.6:1 on --bg */
  --border:      #dfe3ea;
  --border-strong: #c3c9d4;
  --shadow-1: 0 1px 2px rgba(16,20,28,.06), 0 1px 3px rgba(16,20,28,.05);
  --shadow-2: 0 4px 12px rgba(16,20,28,.08), 0 2px 4px rgba(16,20,28,.05);

  /* --- Semantic --- */
  --ok:    #10693f;  --ok-soft:   #e6f5ec;
  --warn:  #8a5a06;  --warn-soft: #fdf3e0;
  --risk:  #a3231f;  --risk-soft: #fdeceb;
  --info:  #1f5b9b;  --info-soft: #e9f2fb;
}

:root[data-theme="dark"], html.dark {
  --accent:        #e0845c;
  --accent-bold:   #db7043;
  --accent-solid:  #d06639;
  --accent-soft:   #36241c;
  --accent-border: #5d3f32;
  --accent-on-solid: #0b0e12;

  --bg:          #0e1116;
  --bg-subtle:   #141922;
  --bg-inset:    #1a212b;
  --surface:     #151b24;
  --fg:          #e9edf3;
  --fg-muted:    #a4adbb;   /* 7.4:1 on --bg */
  --fg-faint:    #8b95a5;   /* 5.4:1 on --bg */
  --border:      #262f3c;
  --border-strong: #38424f;
  --shadow-1: 0 1px 2px rgba(0,0,0,.5);
  --shadow-2: 0 6px 20px rgba(0,0,0,.55);

  --ok:    #5fd39a;  --ok-soft:   #12281e;
  --warn:  #e6b25c;  --warn-soft: #2a2113;
  --risk:  #f28b86;  --risk-soft: #2c1615;
  --info:  #7bb6ee;  --info-soft: #12202e;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --accent:        #e0845c;
    --accent-bold:   #db7043;
    --accent-solid:  #d06639;
    --accent-soft:   #36241c;
    --accent-border: #5d3f32;
    --accent-on-solid: #0b0e12;
    --bg: #0e1116; --bg-subtle: #141922; --bg-inset: #1a212b; --surface: #151b24;
    --fg: #e9edf3; --fg-muted: #a4adbb; --fg-faint: #8b95a5;
    --border: #262f3c; --border-strong: #38424f;
    --shadow-1: 0 1px 2px rgba(0,0,0,.5);
    --shadow-2: 0 6px 20px rgba(0,0,0,.55);
    --ok: #5fd39a; --ok-soft: #12281e; --warn: #e6b25c; --warn-soft: #2a2113;
    --risk: #f28b86; --risk-soft: #2c1615; --info: #7bb6ee; --info-soft: #12202e;
  }
}

/* ---------------- Reset & base ---------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-underline-offset: 2px; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible {
  outline: 3px solid var(--accent-bold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
::selection { background: var(--accent-soft); color: var(--fg); }

h1,h2,h3,h4 { line-height: var(--leading-tight); font-weight: 700; letter-spacing: -0.015em; text-wrap: balance; }
h1 { font-size: clamp(2rem, 1.4rem + 2.4vw, var(--text-5xl)); }
h2 { font-size: clamp(1.5rem, 1.2rem + 1.2vw, var(--text-3xl)); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }
p  { text-wrap: pretty; }

.skip-link {
  position: absolute; left: var(--space-3); top: -100px; z-index: 100;
  background: var(--accent-solid); color: var(--accent-on-solid);
  padding: var(--space-3) var(--space-4); border-radius: var(--radius-md);
  font-weight: 600; text-decoration: none;
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus { top: var(--space-3); }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------- Layout ---------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--space-4); }
.wrap-wide { max-width: var(--wrap-wide); }
.stack > * + * { margin-top: var(--space-4); }
.section { padding-block: var(--space-8); }
.section--tight { padding-block: var(--space-6); }
.section--subtle { background: var(--bg-subtle); border-block: var(--border-thin) solid var(--border); }

.grid { display: grid; gap: var(--space-5); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

/* ---------------- Header / nav ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: var(--border-thin) solid var(--border);
}
@supports not (backdrop-filter: blur(1px)) { .site-header { background: var(--bg); } }
.site-header__inner { display: flex; align-items: center; gap: var(--space-4); min-height: 62px; }
.brand { display: inline-flex; align-items: center; gap: var(--space-2); font-weight: 800; font-size: var(--text-lg); color: var(--fg); text-decoration: none; letter-spacing: -0.02em; }
.brand__mark {
  width: 26px; height: 26px; flex: none; border-radius: 8px;
  background: linear-gradient(140deg, var(--accent-solid), color-mix(in srgb, var(--accent-solid) 55%, var(--fg)));
  display: grid; place-items: center; color: var(--accent-on-solid);
  font-size: 13px; font-weight: 900;
}
.nav { display: flex; gap: var(--space-1); margin-inline-start: auto; align-items: center; flex-wrap: wrap; }
.nav a {
  color: var(--fg-muted); text-decoration: none; font-size: var(--text-sm); font-weight: 600;
  padding: var(--space-2) var(--space-3); border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--fg); background: var(--bg-inset); }
.nav a[aria-current="page"] { color: var(--accent); }

/* Language switcher — a <details> so it works with zero JS. */
.langpicker { position: relative; }
.langpicker > summary {
  list-style: none; cursor: pointer; user-select: none;
  font-size: var(--text-sm); font-weight: 600; color: var(--fg-muted);
  padding: var(--space-2) var(--space-3); border-radius: var(--radius-sm);
  border: var(--border-thin) solid var(--border);
}
.langpicker > summary::-webkit-details-marker { display: none; }
.langpicker > summary:hover { color: var(--fg); background: var(--bg-inset); }
.langpicker__menu {
  position: absolute; inset-inline-end: 0; top: calc(100% + 6px); z-index: 50;
  width: min(92vw, 460px); max-height: 60vh; overflow-y: auto;
  background: var(--surface); border: var(--border-thin) solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-2); padding: var(--space-3);
  display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 2px;
}
.langpicker__menu a {
  font-size: var(--text-sm); text-decoration: none; color: var(--fg-muted);
  padding: var(--space-2); border-radius: var(--radius-sm); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.langpicker__menu a:hover { background: var(--bg-inset); color: var(--fg); }
.langpicker__menu a[aria-current="true"] { color: var(--accent); font-weight: 700; }
.langpicker__group { grid-column: 1 / -1; font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .08em; color: var(--fg-faint); padding: var(--space-3) var(--space-2) var(--space-1); font-weight: 700; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font: inherit; font-weight: 650; font-size: var(--text-sm);
  padding: var(--space-3) var(--space-5); border-radius: var(--radius-pill);
  border: var(--border-thin) solid transparent; cursor: pointer; text-decoration: none;
  min-height: 44px;  /* touch target */
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent-solid); color: var(--accent-on-solid); }
.btn--primary:hover { background: color-mix(in srgb, var(--accent-solid) 85%, var(--fg)); }
.btn--secondary { background: var(--surface); color: var(--fg); border-color: var(--border-strong); }
.btn--secondary:hover { background: var(--bg-inset); }
.btn--ghost { background: transparent; color: var(--accent); }
.btn--ghost:hover { background: var(--accent-soft); }
.btn--lg { font-size: var(--text-base); padding: var(--space-4) var(--space-6); }

/* ---------------- Badges & meta ---------------- */
.badge {
  display: inline-flex; align-items: center; gap: var(--space-1);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: .02em;
  padding: 3px var(--space-3); border-radius: var(--radius-pill);
  background: var(--accent-soft); color: var(--accent);
  border: var(--border-thin) solid var(--accent-border);
}
.badge--ok   { background: var(--ok-soft);   color: var(--ok);   border-color: transparent; }
.badge--warn { background: var(--warn-soft); color: var(--warn); border-color: transparent; }
.badge--risk { background: var(--risk-soft); color: var(--risk); border-color: transparent; }
.badge--info { background: var(--info-soft); color: var(--info); border-color: transparent; }
.badge--neutral { background: var(--bg-inset); color: var(--fg-muted); border-color: var(--border); }

.eyebrow { font-size: var(--text-xs); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.meta { font-size: var(--text-sm); color: var(--fg-faint); display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }
.meta > * + *::before { content: "·"; margin-inline-end: var(--space-3); color: var(--border-strong); }

/* ---------------- Hero ---------------- */
.hero { padding-block: var(--space-9) var(--space-8); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60ch 40ch at 15% -10%, var(--accent-soft), transparent 70%),
    radial-gradient(50ch 34ch at 92% 0%, var(--bg-subtle), transparent 65%);
}
.hero h1 { max-width: 20ch; }
.hero__lede { font-size: clamp(1.05rem, 1rem + .5vw, var(--text-xl)); color: var(--fg-muted); max-width: 58ch; margin-top: var(--space-4); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }
.hero__proof { display: flex; flex-wrap: wrap; gap: var(--space-5); margin-top: var(--space-7); }
.hero__proof div { min-width: 120px; }
.hero__proof b { display: block; font-size: var(--text-2xl); letter-spacing: -0.02em; }
.hero__proof span { font-size: var(--text-sm); color: var(--fg-faint); }

/* ---------------- Cards ---------------- */
.card {
  background: var(--surface); border: var(--border-thin) solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-5);
  box-shadow: var(--shadow-1);
  transition: border-color var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
  display: flex; flex-direction: column; gap: var(--space-3);
}
.card:hover { border-color: var(--accent-border); box-shadow: var(--shadow-2); transform: translateY(-2px); }
.card h3 { font-size: var(--text-lg); }
.card h3 a { color: inherit; text-decoration: none; }
.card h3 a:hover { color: var(--accent); }
.card p { color: var(--fg-muted); font-size: var(--text-sm); }
.card__foot { margin-top: auto; padding-top: var(--space-3); border-top: var(--border-thin) solid var(--border); }

/* Review card — the workhorse of the review sites. */
.review-card { display: grid; grid-template-columns: 92px 1fr; gap: var(--space-4); align-items: start; }
.review-card__art {
  width: 92px; height: 92px; border-radius: 20px; object-fit: cover;
  border: var(--border-thin) solid var(--border); background: var(--bg-inset);
  display: grid; place-items: center; font-size: 34px;
}
.review-card__body { min-width: 0; }
.review-card__title { font-size: var(--text-lg); font-weight: 700; }
.review-card__title a { color: inherit; text-decoration: none; }
.review-card__title a:hover { color: var(--accent); }
@media (max-width: 420px) { .review-card { grid-template-columns: 1fr; } }

/* Score / rating */
.score { display: inline-flex; align-items: baseline; gap: 2px; font-weight: 800; letter-spacing: -0.02em; }
.score b { font-size: var(--text-2xl); color: var(--accent); }
.score span { font-size: var(--text-sm); color: var(--fg-faint); }
.stars { display: inline-flex; gap: 1px; color: var(--accent-bold); font-size: var(--text-sm); letter-spacing: 1px; }

.scorebar { --pct: 50%; height: 8px; border-radius: var(--radius-pill); background: var(--bg-inset); overflow: hidden; }
.scorebar > i { display: block; height: 100%; width: var(--pct); background: var(--accent-solid); border-radius: inherit; }
.scorelist { display: grid; gap: var(--space-3); }
.scorelist__row { display: grid; grid-template-columns: minmax(90px, 1fr) 2fr auto; gap: var(--space-3); align-items: center; font-size: var(--text-sm); }
.scorelist__row span:first-child { color: var(--fg-muted); }
.scorelist__row b { font-variant-numeric: tabular-nums; }

/* ---------------- Article / prose ---------------- */
.article { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-7); }
@media (min-width: 1040px) {
  .article { grid-template-columns: minmax(0, 1fr) 280px; align-items: start; }
  .article__aside { position: sticky; top: 86px; }
}
.prose { max-width: var(--measure); font-size: var(--text-lg); }
.prose > * + * { margin-top: var(--space-5); }
.prose h2 { margin-top: var(--space-8); scroll-margin-top: 84px; }
.prose h3 { margin-top: var(--space-6); scroll-margin-top: 84px; }
.prose ul, .prose ol { padding-inline-start: var(--space-6); display: grid; gap: var(--space-2); }
.prose li::marker { color: var(--accent); }
.prose blockquote {
  border-inline-start: 3px solid var(--accent-solid);
  padding: var(--space-2) 0 var(--space-2) var(--space-5);
  color: var(--fg-muted); font-family: var(--font-serif); font-style: italic;
}
.prose code { font-family: var(--font-mono); font-size: .9em; background: var(--bg-inset); padding: 2px 5px; border-radius: var(--radius-sm); }
.prose figure figcaption { font-size: var(--text-sm); color: var(--fg-faint); margin-top: var(--space-2); }
.prose hr { border: 0; border-top: var(--border-thin) solid var(--border); margin-block: var(--space-7); }

/* Inline citation superscript — the core affordance of a science site. */
.cite {
  font-size: .68em; font-weight: 700; text-decoration: none; color: var(--accent);
  white-space: nowrap;
  /* vertical-align:super inherits the parent's large line-height and pushes
     following punctuation away from the marker. Raising the baseline manually
     keeps "...stopping[5]." tight. */
  position: relative; top: -0.5em; line-height: 1;
}
.cite:hover { text-decoration: underline; }

/* Table of contents */
.toc { border: var(--border-thin) solid var(--border); border-radius: var(--radius-md); padding: var(--space-4); background: var(--bg-subtle); }
.toc h2 { font-size: var(--text-sm); text-transform: uppercase; letter-spacing: .08em; color: var(--fg-faint); margin: 0 0 var(--space-3); }
.toc ol { list-style: none; padding: 0; display: grid; gap: var(--space-2); font-size: var(--text-sm); }
.toc a { color: var(--fg-muted); text-decoration: none; }
.toc a:hover { color: var(--accent); }

/* Callouts */
.callout {
  border-radius: var(--radius-md); padding: var(--space-4) var(--space-5);
  border-inline-start: 4px solid var(--accent-solid); background: var(--accent-soft);
  font-size: var(--text-base);
}
.callout h3 { font-size: var(--text-base); margin-bottom: var(--space-2); }
.callout--warn { border-color: var(--warn); background: var(--warn-soft); }
.callout--risk { border-color: var(--risk); background: var(--risk-soft); }
.callout--ok   { border-color: var(--ok);   background: var(--ok-soft); }
.callout--info { border-color: var(--info); background: var(--info-soft); }

/* Evidence-strength chip: how good is the science behind a claim? */
.evidence { display: inline-flex; align-items: center; gap: var(--space-2); font-size: var(--text-xs); font-weight: 700; }
.evidence__dots { display: inline-flex; gap: 2px; }
.evidence__dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--border-strong); }
.evidence__dots i.on { background: var(--accent-solid); }

/* ---------------- Tables ---------------- */
.table-scroll { overflow-x: auto; border: var(--border-thin) solid var(--border); border-radius: var(--radius-md); }
table { border-collapse: collapse; width: 100%; font-size: var(--text-sm); }
caption { text-align: start; padding: var(--space-3) var(--space-4); color: var(--fg-faint); font-size: var(--text-sm); }
th, td { padding: var(--space-3) var(--space-4); text-align: start; border-bottom: var(--border-thin) solid var(--border); vertical-align: top; }
thead th { background: var(--bg-subtle); font-weight: 700; color: var(--fg); position: sticky; top: 0; white-space: nowrap; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: var(--bg-subtle); }
td.num, th.num { text-align: end; font-variant-numeric: tabular-nums; }
.table-compare th:first-child, .table-compare td:first-child { position: sticky; inset-inline-start: 0; background: var(--bg); font-weight: 600; }
.table-compare tbody tr:hover td:first-child { background: var(--bg-subtle); }

/* ---------------- References ---------------- */
.refs { counter-reset: ref; }
.refs h2 { font-size: var(--text-xl); }
.refs ol { list-style: none; padding: 0; display: grid; gap: var(--space-4); margin-top: var(--space-5); }
.refs li {
  counter-increment: ref; display: grid; grid-template-columns: 2.2rem 1fr; gap: var(--space-3);
  font-size: var(--text-sm); line-height: var(--leading-snug); scroll-margin-top: 84px;
  padding-bottom: var(--space-4); border-bottom: var(--border-thin) solid var(--border);
}
.refs li:last-child { border-bottom: 0; }
.refs li::before {
  content: counter(ref); display: grid; place-items: center;
  width: 1.9rem; height: 1.9rem; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  font-weight: 800; font-size: var(--text-xs);
}
.refs li:target { background: var(--accent-soft); border-radius: var(--radius-md); padding: var(--space-3); }
.refs__title { font-weight: 650; color: var(--fg); }
.refs__src { color: var(--fg-faint); display: block; margin-top: 2px; }
.refs__links { display: flex; gap: var(--space-3); margin-top: var(--space-2); font-size: var(--text-xs); font-weight: 600; }

/* ---------------- FAQ ---------------- */
.faq { display: grid; gap: var(--space-3); }
.faq details {
  border: var(--border-thin) solid var(--border); border-radius: var(--radius-md);
  background: var(--surface); overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: var(--space-4) var(--space-5); font-weight: 650; list-style: none;
  display: flex; justify-content: space-between; gap: var(--space-4); align-items: center; min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: var(--text-xl); color: var(--accent); line-height: 1; flex: none; }
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary { border-bottom: var(--border-thin) solid var(--border); }
.faq details > div { padding: var(--space-4) var(--space-5); color: var(--fg-muted); }

/* ---------------- Breadcrumbs ---------------- */
.crumbs { font-size: var(--text-sm); color: var(--fg-faint); padding-block: var(--space-4); }
.crumbs ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: var(--space-2); }
.crumbs li + li::before { content: "/"; margin-inline-end: var(--space-2); color: var(--border-strong); }
.crumbs a { color: var(--fg-muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent); }

/* ---------------- Cross-promo (network + owned apps) ---------------- */
.promo {
  display: grid; grid-template-columns: 64px 1fr auto; gap: var(--space-4); align-items: center;
  border: var(--border-thin) solid var(--accent-border); background: var(--accent-soft);
  border-radius: var(--radius-lg); padding: var(--space-4) var(--space-5);
}
.promo__icon { width: 64px; height: 64px; border-radius: 14px; display: grid; place-items: center; font-size: 30px; background: var(--surface); border: var(--border-thin) solid var(--border); }
.promo__body strong { display: block; font-size: var(--text-lg); }
.promo__body span { font-size: var(--text-sm); color: var(--fg-muted); }
@media (max-width: 560px) { .promo { grid-template-columns: 48px 1fr; } .promo .btn { grid-column: 1 / -1; } .promo__icon { width: 48px; height: 48px; font-size: 24px; } }

.disclosure {
  font-size: var(--text-xs); color: var(--fg-faint); background: var(--bg-subtle);
  border: var(--border-thin) solid var(--border); border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
}

/* ---------------- Footer ---------------- */
.site-footer { border-top: var(--border-thin) solid var(--border); background: var(--bg-subtle); padding-block: var(--space-8) var(--space-6); margin-top: var(--space-9); }
.site-footer h2 { font-size: var(--text-sm); text-transform: uppercase; letter-spacing: .08em; color: var(--fg-faint); margin-bottom: var(--space-3); }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: var(--space-2); font-size: var(--text-sm); }
.site-footer a { color: var(--fg-muted); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.site-footer__legal { margin-top: var(--space-7); padding-top: var(--space-5); border-top: var(--border-thin) solid var(--border); font-size: var(--text-xs); color: var(--fg-faint); display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between; }

/* ---------------- Utility ---------------- */
.muted { color: var(--fg-muted); }
.faint { color: var(--fg-faint); }
.small { font-size: var(--text-sm); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.lede { font-size: var(--text-xl); color: var(--fg-muted); }
.tag-row { display: flex; flex-wrap: wrap; gap: var(--space-2); }

@media print {
  .site-header, .site-footer, .promo, .hero__actions, .langpicker { display: none !important; }
  body { color: #000; background: #fff; }
  .prose { max-width: none; font-size: 11pt; }
  a::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
