/* Reset Radar · design system v2
   Two-layer tokens: RAW brand palette → SEMANTIC roles; themes flip only the
   semantic layer. v2 principles: editorial serif display + humanist sans body,
   monospace ONLY for literal code, compact density, progressive disclosure,
   one clear conversion path. Badges never mimic buttons; " · " separates. */

/* ---------- Raw layer ---------- */
:root {
  --raw-ink: #0d1421;
  --raw-ink-soft: #1a2436;
  --raw-slate: #33415c;
  --raw-steel: #5b6b8c;
  --raw-mist: #93a1bd;
  --raw-paper: #f6f4ef;
  --raw-paper-raised: #fffefb;
  --raw-line-light: #ddd8cc;
  --raw-line-dark: #2a3650;
  --raw-radar: #2fa878;
  --raw-radar-deep: #1e7d58;
  --raw-radar-dark: #43c491;
  --raw-amber: #c2820a;
  --raw-amber-dark: #e3a63a;
  --raw-rust: #b3462c;
  --raw-rust-dark: #d97757;
  /* chart series · validated (dataviz six checks) per surface */
  --raw-chart1-light: #279468;
  --raw-chart2-light: #2f6fa8;
  --raw-chart1-dark: #30a878;
  --raw-chart2-dark: #4b90da;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --code: ui-monospace, "SF Mono", Menlo, Consolas, monospace; /* literal code only */

  --radius: 10px;
  --radius-pill: 999px;
  --container: 62rem;
  --shadow-1: 0 1px 2px rgb(13 20 33 / 0.06), 0 4px 16px rgb(13 20 33 / 0.05);
}

/* ---------- Semantic layer · light (default) ---------- */
:root {
  color-scheme: light;
  --bg: var(--raw-paper);
  --bg-raised: var(--raw-paper-raised);
  --bg-inset: #eeeadf;
  --text: var(--raw-ink);
  --text-soft: var(--raw-slate);
  --text-muted: var(--raw-steel);
  --border: var(--raw-line-light);
  --accent: var(--raw-radar);
  --accent-deep: var(--raw-radar-deep);
  --accent-ink: #ffffff;
  --good: var(--raw-radar-deep);
  --bad: var(--raw-rust);
  --warn: var(--raw-amber);
  --focus: #2f6fa8;
  --chart-1: var(--raw-chart1-light);
  --chart-2: var(--raw-chart2-light);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: var(--raw-ink);
    --bg-raised: var(--raw-ink-soft);
    --bg-inset: #101a2c;
    --text: #e8ecf4;
    --text-soft: #c0c9da;
    --text-muted: var(--raw-mist);
    --border: var(--raw-line-dark);
    --accent: var(--raw-radar-dark);
    --accent-deep: var(--raw-radar);
    --accent-ink: #08130e;
    --good: var(--raw-radar-dark);
    --bad: var(--raw-rust-dark);
    --warn: var(--raw-amber-dark);
    --focus: #6ea8d8;
    --chart-1: var(--raw-chart1-dark);
    --chart-2: var(--raw-chart2-dark);
  }
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: var(--raw-ink);
  --bg-raised: var(--raw-ink-soft);
  --bg-inset: #101a2c;
  --text: #e8ecf4;
  --text-soft: #c0c9da;
  --text-muted: var(--raw-mist);
  --border: var(--raw-line-dark);
  --accent: var(--raw-radar-dark);
  --accent-deep: var(--raw-radar);
  --accent-ink: #08130e;
  --good: var(--raw-radar-dark);
  --bad: var(--raw-rust-dark);
  --warn: var(--raw-amber-dark);
  --focus: #6ea8d8;
  --chart-1: var(--raw-chart1-dark);
  --chart-2: var(--raw-chart2-dark);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
a { color: inherit; text-decoration-color: color-mix(in srgb, currentColor 40%, transparent); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; border-radius: 2px; }
code { font-family: var(--code); font-size: 0.9em; background: var(--bg-inset); padding: 0.05em 0.35em; border-radius: 4px; }

h1, h2 { font-family: var(--serif); line-height: 1.12; letter-spacing: -0.01em; margin: 0 0 0.4em; font-weight: 650; }
h1 { font-size: clamp(2rem, 1.5rem + 2vw, 2.9rem); }
h2 { font-size: clamp(1.35rem, 1.15rem + 0.8vw, 1.7rem); }
h3 { font-size: 1.08rem; font-family: var(--sans); font-weight: 700; line-height: 1.25; margin: 0 0 0.4em; }
p { margin: 0 0 0.9em; }
.muted { color: var(--text-muted); }
.small { font-size: 0.875rem; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
section { padding-block: clamp(2rem, 4.5vw, 3.25rem); }
section + section { border-top: 1px solid var(--border); }

/* Label grammar · sans small-caps (replaces v1 mono labels) */
.label {
  font: 650 0.7rem/1.4 var(--sans);
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--text-muted);
}

/* Quiet "optional" marker inside field labels · whisper, not noise */
.opt {
  font-weight: 400; font-size: 0.7rem; text-transform: lowercase;
  color: color-mix(in srgb, var(--text-muted) 75%, transparent);
  margin-left: 0.35rem; letter-spacing: 0.02em;
}
.eyebrow {
  font: 650 0.72rem/1.4 var(--sans); text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent-deep); margin: 0 0 0.6rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; gap: 1.25rem; min-height: 3.25rem; }
.wordmark { display: flex; align-items: center; gap: 0.5rem; font: 700 1.05rem/1 var(--sans); letter-spacing: -0.01em; text-decoration: none; }
.wordmark svg { width: 24px; height: 24px; flex: none; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(0.7rem, 2vw, 1.3rem); font-size: 0.9rem; }
.site-nav a { text-decoration: none; color: var(--text-soft); }
.site-nav a:hover { color: var(--text); }
@media (max-width: 680px) { .site-nav .hide-sm { display: none; } }

.theme-toggle {
  border: 1px solid var(--border); background: var(--bg-raised); color: var(--text-soft);
  border-radius: var(--radius-pill); width: 1.9rem; height: 1.9rem; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.theme-toggle svg { width: 0.9rem; height: 0.9rem; }
.footer-theme {
  background: none; border: none; padding: 0; font: inherit; cursor: pointer;
  color: var(--text-soft);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, currentColor 40%, transparent);
  text-underline-offset: 3px;
}

/* ---------- Buttons (CTA grammar) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font: 700 0.9375rem/1 var(--sans);
  padding: 0.72rem 1.35rem; border-radius: var(--radius-pill);
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-deep); }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--text-muted); }
.btn-small { padding: 0.45rem 0.9rem; font-size: 0.85rem; }

/* ---------- Chips (state grammar · soft, never button-shaped) ---------- */
.chip {
  display: inline-block; font: 650 0.7rem/1.5 var(--sans);
  letter-spacing: 0.03em;
  padding: 0.1rem 0.5rem; border-radius: 5px;
  border: 1px solid var(--border); color: var(--text-muted); background: var(--bg-inset);
  white-space: nowrap;
}
.chip-good { color: var(--good); border-color: color-mix(in srgb, var(--good) 40%, transparent); background: color-mix(in srgb, var(--good) 9%, transparent); }
.chip-bad { color: var(--bad); border-color: color-mix(in srgb, var(--bad) 40%, transparent); background: color-mix(in srgb, var(--bad) 9%, transparent); }
.chip-warn { color: var(--warn); border-color: color-mix(in srgb, var(--warn) 45%, transparent); background: color-mix(in srgb, var(--warn) 10%, transparent); }
.chip-ghost { border-style: dashed; background: transparent; }

/* ---------- Hero (conversion-first) ---------- */
.hero { padding-block: clamp(2.25rem, 5vw, 4rem) clamp(1.75rem, 4vw, 3rem); }
.hero-grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); grid-template-columns: 1.2fr 0.8fr; align-items: center; }
@media (max-width: 820px) { .hero-grid { grid-template-columns: 1fr; } }
.hero .lede { font-size: 1.06rem; color: var(--text-soft); max-width: 33em; margin-bottom: 1.1rem; }

/* Inline capture · the primary conversion element */
.capture { max-width: 30rem; }
.capture-row { display: flex; gap: 0.5rem; }
.capture-row input[type="email"] { flex: 1; min-width: 0; }
.capture .consent { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.78rem; color: var(--text-muted); margin-top: 0.55rem; }
.capture .consent input { margin-top: 0.2rem; flex: none; }
.capture .trust { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.5rem; }
.capture .trust a { color: inherit; }
@media (max-width: 480px) { .capture-row { flex-direction: column; } }

/* Unmissable subscribe confirmation · replaces the capture form on success */
.capture-success {
  border: 1.5px solid color-mix(in srgb, var(--good) 55%, transparent);
  background: color-mix(in srgb, var(--good) 9%, var(--bg-raised));
  border-radius: var(--radius); padding: 1.1rem 1.3rem;
  animation: rr-pop 260ms ease;
}
.capture-success .cs-title {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--serif); font-size: 1.2rem; font-weight: 650; color: var(--good);
  margin-bottom: 0.25rem;
}
.capture-success .cs-title svg { width: 1.15rem; height: 1.15rem; flex: none; }
.capture-success p { margin: 0; font-size: 0.9rem; color: var(--text-soft); }
@keyframes rr-pop { from { transform: scale(0.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .capture-success { animation: none; } }
.cta-band .capture-success { max-width: 30rem; margin-inline: auto; text-align: left; }

/* Pulse · live status condensed into one stack beside the hero */
.pulse { display: grid; gap: 0.7rem; }
.pulse-item {
  background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.7rem 0.95rem; box-shadow: var(--shadow-1);
}
.pulse-item .label { display: block; margin-bottom: 0.15rem; }
.pulse-value { font-weight: 700; font-size: 1.02rem; }
.pulse-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.1rem; }
.dot { display: inline-block; width: 0.55em; height: 0.55em; border-radius: 50%; background: var(--text-muted); margin-right: 0.4em; }
.dot-good { background: var(--good); }
.dot-warn { background: var(--warn); }
.dot-bad { background: var(--bad); }
.countdown-inline { font-weight: 700; font-variant-numeric: tabular-nums; }

.signal-bar { height: 0.4rem; border-radius: var(--radius-pill); background: var(--bg-inset); overflow: hidden; margin-top: 0.4rem; }
.signal-bar > span { display: block; height: 100%; width: 0%; background: var(--accent); border-radius: inherit; transition: width 400ms ease; }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.1rem 1.25rem; box-shadow: var(--shadow-1);
}
.card h3 { margin-top: 0; }

/* ---------- Charts ---------- */
.chart-figure { margin: 0; }
.chart-figure figcaption { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem; max-width: 52em; }
.chart-wrap { position: relative; }
.chart-wrap svg { display: block; width: 100%; height: auto; }
.chart-legend { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; color: var(--text-soft); margin: 0.4rem 0 0.6rem; }
.chart-legend .key { display: inline-flex; align-items: center; gap: 0.4rem; }
.chart-legend .swatch { width: 14px; height: 3px; border-radius: 2px; display: inline-block; }
.chart-tip {
  position: absolute; pointer-events: none; z-index: 5; display: none;
  background: var(--bg-raised); border: 1px solid var(--border); border-radius: 8px;
  box-shadow: var(--shadow-1); padding: 0.45rem 0.65rem; font-size: 0.78rem; max-width: 15rem;
}
.chart-tip .tip-date { font-weight: 700; margin-bottom: 0.15rem; }
.chart-tip .tip-row { display: flex; align-items: center; gap: 0.4rem; color: var(--text-soft); }
.chart-tip .swatch { width: 10px; height: 3px; border-radius: 2px; flex: none; }

/* ---------- Timeline v2 · collapsed rows, three clear states ---------- */
.tl-filters { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.8rem 0 1rem; }
.tl-filters button {
  font: 650 0.78rem/1 var(--sans); letter-spacing: 0.02em;
  padding: 0.4rem 0.8rem; border-radius: var(--radius-pill);
  border: 1px solid var(--border); background: transparent; color: var(--text-soft); cursor: pointer;
}
.tl-filters button[aria-pressed="true"] { background: var(--text); color: var(--bg); border-color: var(--text); }

.timeline { list-style: none; margin: 0; padding: 0; }
.timeline > li { border-bottom: 1px solid var(--border); }
.timeline details { border: none; background: none; }
.timeline summary {
  display: grid; grid-template-columns: auto auto 1fr auto auto; align-items: center; gap: 0.7rem;
  padding: 0.65rem 0.2rem; cursor: pointer; list-style: none;
}
.timeline summary::-webkit-details-marker { display: none; }
.tl-dot { width: 0.7rem; height: 0.7rem; border-radius: 50%; flex: none; }
li[data-state="historic"] .tl-dot { background: var(--text-muted); }
li[data-state="historic"][data-impact="positive"] .tl-dot { background: var(--good); }
li[data-state="historic"][data-impact="negative"] .tl-dot { background: var(--bad); }
li[data-state="announced"] .tl-dot { background: transparent; border: 2.5px solid var(--warn); }
li[data-state="projected"] .tl-dot { background: transparent; border: 2px dashed var(--text-muted); }
li[data-state="projected"] summary .tl-title { color: var(--text-muted); }
.tl-date { font-size: 0.8rem; color: var(--text-muted); font-variant-numeric: tabular-nums; white-space: nowrap; min-width: 6.2rem; }
.tl-title { font-weight: 650; font-size: 0.95rem; line-height: 1.3; }
.tl-chevron { color: var(--text-muted); transition: transform 160ms ease; font-size: 0.7rem; }
.timeline details[open] .tl-chevron { transform: rotate(90deg); }
.tl-body { padding: 0.15rem 0.2rem 0.9rem 2.6rem; }
.tl-body p { color: var(--text-soft); font-size: 0.92rem; max-width: 58em; margin-bottom: 0.4rem; }
.tl-meta { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.4rem; }
.tl-sources { font-size: 0.8rem; color: var(--text-muted); }
.tl-sources a { color: inherit; }
.tl-date-inline { display: none; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.3rem; }
.key-dot {
  display: inline-block; width: 0.7rem; height: 0.7rem; border-radius: 50%;
  vertical-align: -0.05em; margin-right: 0.45rem;
}
@media (max-width: 560px) {
  .timeline summary { grid-template-columns: auto 1fr auto auto; }
  .tl-date { display: none; }
  .tl-body { padding-left: 1.4rem; }
  .tl-body .tl-date-inline { display: block; }
}

/* ---------- Two-up ---------- */
.split { display: grid; gap: 1.25rem; grid-template-columns: 1fr 1fr; align-items: start; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
form .field { margin-bottom: 0.85rem; }
label { display: block; font-weight: 650; font-size: 0.88rem; margin-bottom: 0.25rem; }
.hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.2rem; }
input[type="email"], input[type="tel"], input[type="text"], input[type="time"], input[type="password"], select, textarea {
  width: 100%; padding: 0.6rem 0.75rem; font: inherit; color: var(--text);
  background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--radius);
}
textarea { resize: vertical; min-height: 4.5rem; }
.checkbox-row { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.85rem; color: var(--text-soft); }
.checkbox-row input { margin-top: 0.22rem; flex: none; }
.form-msg { margin-top: 0.6rem; font-weight: 600; font-size: 0.9rem; }
.form-msg[data-kind="ok"] { color: var(--good); }
.form-msg[data-kind="err"] { color: var(--bad); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Single-use accordions (legend, report form) ---------- */
details.exp { border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-raised); }
details.exp summary { cursor: pointer; font-weight: 650; font-size: 0.92rem; padding: 0.7rem 0.95rem; list-style: none; display: flex; justify-content: space-between; gap: 0.6rem; }
details.exp summary::-webkit-details-marker { display: none; }
details.exp summary::after { content: "+"; color: var(--text-muted); font-weight: 400; }
details.exp[open] summary::after { content: "\2212"; }
details.exp .answer { padding: 0 0.95rem 0.8rem; color: var(--text-soft); font-size: 0.9rem; }

/* ---------- Tabs (mechanics section · replaces the grid accordions whose
   equal-height rows read as empty open panels) ---------- */
.tab-strip { display: flex; flex-wrap: wrap; gap: 0.35rem; border-bottom: 1px solid var(--border); margin-bottom: 0; }
.tab-strip [role="tab"] {
  font: 650 0.88rem/1.2 var(--sans); color: var(--text-soft);
  background: none; border: none; border-bottom: 2.5px solid transparent;
  padding: 0.55rem 0.85rem 0.6rem; margin-bottom: -1px; cursor: pointer;
}
.tab-strip [role="tab"][aria-selected="true"] { color: var(--text); border-bottom-color: var(--accent); }
.tab-strip [role="tab"]:hover { color: var(--text); }
.tab-panel {
  padding: 0.95rem 0.2rem 0.2rem; color: var(--text-soft); font-size: 0.94rem;
  max-width: 52em; min-height: 5.2em;
}

/* ---------- Expand strip (compact view's door to the full site) ---------- */
.expand-strip { padding-block: 0; }
.strip-btn {
  display: block; width: 100%; text-align: left; cursor: pointer;
  background: var(--bg-inset); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1rem 1.25rem; margin-block: 1.75rem; font: inherit; color: inherit;
  transition: border-color 140ms ease;
}
.strip-btn:hover { border-color: var(--accent); }
.strip-lede { display: block; color: var(--text-soft); font-size: 0.92rem; margin-bottom: 0.35rem; }
.strip-cta { font: 700 0.95rem/1.2 var(--sans); color: var(--accent-deep); }
.strip-arrow { margin-left: 0.4rem; }
:root[data-theme="dark"] .strip-cta, :root:not([data-theme="light"]) .strip-cta { color: var(--accent); }

/* ---------- View modes · compact hides the deep sections ---------- */
:root[data-view="compact"] .full-only { display: none; }
:root[data-view="full"] .expand-strip { display: none; }
.nav-collapse { display: none; font-size: 0.9rem; }
:root[data-view="full"] .nav-collapse { display: inline; }
@media (max-width: 680px) { :root[data-view="full"] .nav-collapse { display: none; } }

/* Row highlight when arriving from a chart marker */
@keyframes tl-flash-kf { from { background: color-mix(in srgb, var(--warn) 18%, transparent); } to { background: transparent; } }
.tl-flash { animation: tl-flash-kf 1.8s ease; }

/* ---------- Projection signals ---------- */
.tl-signals { margin-top: 0.5rem; }
.tl-signals .label { display: block; margin-bottom: 0.25rem; }
.tl-signals ul { margin: 0; padding-left: 1.1rem; font-size: 0.85rem; color: var(--text-soft); }
.tl-signals li { margin-bottom: 0.2rem; }
.tl-signals a { color: inherit; }

/* ---------- FAQ ---------- */
.faq details { border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-raised); margin-bottom: 0.5rem; }
.faq summary { cursor: pointer; font-weight: 650; font-size: 0.95rem; padding: 0.75rem 1rem; list-style: none; display: flex; justify-content: space-between; gap: 0.6rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--text-muted); font-weight: 400; }
.faq details[open] summary::after { content: "\2212"; }
.faq .answer { padding: 0 1rem 0.85rem; color: var(--text-soft); font-size: 0.92rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--bg-inset); border-block: 1px solid var(--border); text-align: center; }
.cta-band h2 { margin-bottom: 0.3rem; }
.cta-band .capture { margin-inline: auto; }
.cta-band .capture-row { justify-content: center; }

/* ---------- Ad slot · single native placement, CLS-safe, off by default ---------- */
.ad-slot { display: none; }
:root[data-ads="on"] .ad-slot {
  display: block; min-height: 110px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg-raised); overflow: hidden;
  margin-block: 1.25rem;
}
.ad-tag { font: 650 0.62rem/1 var(--sans); text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); padding: 0.5rem 1.1rem 0; display: block; }
.ad-house { display: flex; gap: 0.9rem; align-items: center; padding: 0.7rem 1.1rem 0.9rem; text-decoration: none; }
.ad-house .ad-mark { width: 40px; height: 40px; border-radius: 9px; background: var(--bg-inset); display: grid; place-items: center; flex: none; font-family: var(--serif); font-weight: 700; font-size: 1.1rem; color: var(--accent-deep); }
.ad-house .ad-title { font-weight: 700; font-size: 0.95rem; }
.ad-house .ad-text { font-size: 0.83rem; color: var(--text-soft); }

/* ---------- Consent banner ---------- */
.consent-banner {
  position: fixed; inset-inline: 1rem; bottom: 1rem; z-index: 60;
  max-width: 30rem; margin-inline: auto;
  background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-1); padding: 1rem 1.2rem; display: none;
}
.consent-banner.visible { display: block; }
.consent-actions { display: flex; gap: 0.6rem; margin-top: 0.6rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding-block: 2rem; font-size: 0.85rem; color: var(--text-muted); }
.site-footer .links { display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; margin-bottom: 0.8rem; }
.site-footer a { color: var(--text-soft); }
.disclaimer { max-width: 56em; }

/* ---------- Radar mark ---------- */
.radar-figure svg { width: min(210px, 55vw); height: auto; }
.radar-sweep { transform-origin: 100px 100px; animation: sweep 6s linear infinite; }
@keyframes sweep { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .radar-sweep { animation: none; } }

/* ---------- Utility ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--accent); color: var(--accent-ink); padding: 0.5rem 1rem; z-index: 100; }
.skip-link:focus { left: 0; }
