/* ===== Tokens ===== */
:root {
  --ink-navy: #050b26;      /* darkest: footer, dark sections */
  --navy: #0a1a4f;          /* stats panel, page heroes */
  --navy-2: #12287a;
  --blue: #1a4fd6;          /* Democratic blue: primary accent */
  --blue-dark: #123ba8;
  --blue-bright: #3b6ff0;   /* accent on dark backgrounds */
  --sky: #9dbcff;
  --mist: #eef3fd;          /* soft blue-gray section bg */
  --card: #f6f7fb;
  --paper: #ffffff;
  --ink: #0b1030;
  --muted: #545c78;
  --line: #d9e0f0;
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1240px;
  --shadow: 0 18px 40px -18px rgba(10, 26, 79, .28);
  --display: "Marcellus", "Cinzel", Georgia, serif;
  --sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  /* legacy aliases so inline styles keep working */
  --serif: var(--display);
  --red: var(--blue);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-underline-offset: 3px; }
a:hover { color: var(--blue-dark); }
h1, h2 {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  line-height: 1.05; letter-spacing: -.005em; color: var(--ink); margin: 0 0 .5em;
}
h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); }
h3 {
  font-family: var(--sans); font-weight: 700; text-transform: uppercase;
  font-size: 1.15rem; line-height: 1.3; letter-spacing: .01em; color: var(--ink); margin: 0 0 .5em;
}
p { margin: 0 0 1em; }
::selection { background: var(--blue); color: #fff; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: 8px 12px; z-index: 100; }
.skip-link:focus { left: 8px; }

/* ===== Header / Nav ===== */
.site-header {
  background: rgba(5, 11, 38, .94); color: #fff; position: sticky; top: 0; z-index: 50;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(157, 188, 255, .15);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 16px; }
.brand {
  color: #fff; text-decoration: none; font-family: var(--display); text-transform: uppercase;
  font-size: 1.3rem; letter-spacing: .04em; display: inline-flex; align-items: center; gap: 10px;
}
.brand::before {
  content: ""; width: 14px; height: 14px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-bright), var(--sky));
  box-shadow: 0 0 0 4px rgba(59, 111, 240, .25);
}
.brand:hover { color: #fff; }
.brand span { color: var(--sky); }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: transparent; border: 1px solid rgba(255,255,255,.3);
  border-radius: 10px; color: #fff; cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }
.site-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--ink-navy); border-bottom: 1px solid rgba(157,188,255,.15); }
.site-nav.open { display: block; }
.site-nav ul { list-style: none; margin: 0; padding: 8px 16px 16px; }
.site-nav a {
  display: block; padding: 14px 8px; color: #fff; text-decoration: none; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-nav a[aria-current="page"] { color: var(--sky); }
@media (min-width: 1180px) {
  .nav-toggle { display: none; }
  .site-nav { display: block; position: static; background: none; border: 0; }
  .site-nav ul { display: flex; gap: 2px; padding: 0; }
  .site-nav a { border: 0; padding: 8px 14px; border-radius: 999px; font-size: .92rem; white-space: nowrap; }
  .site-nav a:hover { background: rgba(255,255,255,.08); color: #fff; }
  .site-nav a[aria-current="page"] { background: var(--blue); color: #fff; }
}

/* ===== Live cost counter bar (top of every page) ===== */
.cost-bar {
  background: linear-gradient(90deg, #030720 0%, #0b1c5c 50%, #030720 100%);
  color: #c3cdea; border-bottom: 1px solid rgba(157,188,255,.18); padding: 12px 0;
}
.cost-wrap { display: grid; gap: 12px; }
@media (min-width: 900px) { .cost-wrap { grid-template-columns: 1.25fr 1fr; gap: 32px; align-items: center; } }
.cost-item { display: flex; flex-direction: column; min-width: 0; }
.cost-ca { border-top: 1px solid rgba(157,188,255,.15); padding-top: 10px; }
@media (min-width: 900px) { .cost-ca { border-top: 0; padding-top: 0; border-left: 1px solid rgba(157,188,255,.2); padding-left: 32px; } }
.cost-label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--sky); }
.cost-num {
  font-family: var(--sans); font-weight: 800; color: #fff; line-height: 1.15;
  font-size: clamp(1.45rem, 5.4vw, 2rem); font-variant-numeric: tabular-nums; letter-spacing: -.01em;
}
.cost-ca .cost-num { font-size: clamp(1.25rem, 4.6vw, 1.6rem); }
.cost-sub { font-size: .8rem; line-height: 1.45; }
.cost-sub b { color: #fff; font-weight: 600; font-variant-numeric: tabular-nums; }
.cost-sub a { color: var(--sky); }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden; color: #fff; padding: 64px 0 72px;
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(59, 111, 240, .45), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(26, 79, 214, .35), transparent 60%),
    linear-gradient(160deg, var(--ink-navy) 0%, var(--navy) 100%);
}
.hero::after { /* subtle light beams, echoing the stage-light quote banner */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(115deg, transparent 0 140px, rgba(157,188,255,.05) 140px 150px);
}
.hero > .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; }
.hero .eyebrow { color: var(--sky); }
.hero .lede { font-size: 1.15rem; color: #d3dcf5; max-width: 56ch; }
.hero-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 860px) { .hero-grid { grid-template-columns: 1.35fr 1fr; } .hero { padding: 104px 0 112px; } }
.portrait {
  aspect-ratio: 4 / 5; background: rgba(255,255,255,.06); border: 1px solid rgba(157,188,255,.35);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: #c3cdea; text-align: center; padding: 16px; font-size: .9rem; box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }

.page-hero {
  position: relative; overflow: hidden; color: #fff; padding: 72px 0 64px;
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(59, 111, 240, .45), transparent 60%),
    linear-gradient(160deg, var(--ink-navy), var(--navy));
}
.page-hero h1 { color: #fff; margin-bottom: .35em; font-size: clamp(2.4rem, 6vw, 4.4rem); }
.page-hero p { color: #d3dcf5; max-width: 65ch; margin: 0; font-size: 1.08rem; }
.page-hero a { color: #fff; }
@media (min-width: 768px) { .page-hero { padding: 104px 0 88px; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 14px; font-weight: 600; text-decoration: none; min-height: 48px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px -10px rgba(26,79,214,.7); }
.btn-primary:hover { background: var(--blue-dark); color: #fff; transform: translateY(-1px); }
.btn-ghost { border: 1px solid rgba(255,255,255,.55); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ===== Sections ===== */
section.block { padding: 72px 0; }
@media (min-width: 768px) { section.block { padding: 104px 0; } }
section.block.alt { background: var(--mist); }
section.block.dark { background: var(--ink-navy); color: #d3dcf5; }
section.block.dark h2, section.block.dark h3 { color: #fff; }
.prose { max-width: 72ch; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .08em; font-size: .95rem; font-weight: 700;
  color: var(--ink); margin-bottom: .6em;
}
.dark .eyebrow { color: #fff; }
.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 8px 24px; margin-bottom: 40px; }
.section-head h2 { margin: 0; }
.view-all { font-weight: 700; text-transform: uppercase; letter-spacing: .02em; color: var(--ink); text-decoration: underline; text-decoration-thickness: 2px; }
.dark .view-all { color: #fff; }

/* Split intro: big serif headline left, copy right */
.split { display: grid; gap: 24px 64px; align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split .copy { font-size: 1.15rem; line-height: 1.75; }

/* Stats panel */
.stats {
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(59,111,240,.35), transparent 60%),
    var(--navy);
  color: #fff; border-radius: 28px; padding: 48px 24px; margin-top: 64px;
  display: grid; gap: 40px; grid-template-columns: 1fr;
}
@media (min-width: 640px) { .stats { grid-template-columns: repeat(2, 1fr); padding: 64px 48px; } }
@media (min-width: 1000px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { display: flex; align-items: center; gap: 18px; }
.stat svg { flex: none; width: 56px; height: 56px; }
.stat .num { font-family: var(--display); font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; display: block; }
.stat .label { font-family: var(--display); text-transform: uppercase; font-size: 1.05rem; color: #c3cdea; letter-spacing: .03em; }

.grid { display: grid; gap: 24px; }
@media (min-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Cards: light gray, thin border, soft shadow (inspiration: "Latest & Upcoming") */
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); transition: transform .25s, border-color .25s;
}
.card:hover { border-color: rgba(26,79,214,.45); }
.card h3 { margin-bottom: .5em; }
.card p:last-child { margin-bottom: 0; }
.card a.more { font-weight: 700; text-transform: uppercase; font-size: .9rem; letter-spacing: .02em; text-decoration: underline; text-decoration-thickness: 2px; }
.card .num-badge {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue); color: #fff; font-family: var(--display); font-size: 1.3rem; margin-bottom: 16px;
}
.card .icon { width: 44px; height: 44px; color: var(--blue); margin-bottom: 14px; }
.card.accent { border-color: var(--navy); }
.card.accent h3 { color: var(--blue); }

/* Dark feature cards (inspiration: "Featured Content") */
.feature-card {
  position: relative; display: flex; flex-direction: column; background: #0c1640; border: 1px solid rgba(157,188,255,.18);
  border-radius: var(--radius); overflow: hidden; color: #c9d3ee; text-decoration: none; transition: transform .25s, border-color .25s;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--blue-bright); color: #c9d3ee; }
.feature-card .art {
  position: relative; aspect-ratio: 16 / 10; display: flex; align-items: center; justify-content: center; padding: 24px;
  font-family: var(--display); text-transform: uppercase; color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); text-align: center; line-height: 1.05;
  background:
    repeating-linear-gradient(115deg, transparent 0 60px, rgba(255,255,255,.04) 60px 66px),
    radial-gradient(circle at 30% 20%, var(--blue-bright), transparent 60%),
    linear-gradient(160deg, var(--navy-2), var(--ink-navy));
}
.feature-card .art .tag { position: absolute; top: 16px; left: 16px; }
.feature-card .body { padding: 24px 28px 28px; }
.feature-card h3 { color: #fff; font-size: 1.3rem; }
.feature-card .more { color: #fff; font-weight: 700; text-transform: uppercase; font-size: .9rem; text-decoration: underline; text-decoration-thickness: 2px; }

/* Full-width statement banner (inspiration: quote banner) */
.banner {
  position: relative; overflow: hidden; border-radius: 28px; color: #fff; padding: 56px 28px;
  background:
    repeating-linear-gradient(115deg, transparent 0 120px, rgba(157,188,255,.07) 120px 132px),
    radial-gradient(700px 400px at 15% 50%, rgba(59,111,240,.55), transparent 65%),
    linear-gradient(135deg, var(--ink-navy), var(--navy-2));
}
@media (min-width: 768px) { .banner { padding: 88px 72px; } }
.banner blockquote { margin: 0 0 0 auto; max-width: 24ch; font-family: var(--display); font-size: clamp(1.8rem, 4.2vw, 3.1rem); line-height: 1.15; position: relative; }
.banner blockquote::before { content: "\201C"; position: absolute; left: -.5em; top: -.35em; font-size: 2em; line-height: 1; color: var(--sky); }
@media (max-width: 600px) { .banner blockquote::before { position: static; display: block; line-height: .6; } }
.banner .who { display: block; font-family: var(--sans); font-size: 1rem; margin-top: 24px; }
.banner .who small { display: block; color: #aebbe0; font-size: .95rem; }

/* Big outlined CTA boxes (inspiration: "Join the movement / Donate today") */
.cta-band {
  position: relative; padding: 72px 0 0;
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(59,111,240,.4), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--ink-navy) 100%);
}
.cta-boxes { display: grid; gap: 20px; }
@media (min-width: 768px) { .cta-boxes { grid-template-columns: 1fr 1fr; } }
.cta-box {
  display: flex; align-items: center; justify-content: center; text-align: center; min-height: 220px; padding: 32px;
  border: 2px solid rgba(255,255,255,.35); border-radius: 22px; color: #fff; text-decoration: none;
  font-family: var(--display); text-transform: uppercase; font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: 1.02;
  background: rgba(255,255,255,.03); transition: background .25s, border-color .25s;
}
@media (min-width: 768px) { .cta-box { min-height: 320px; } }
.cta-box:hover { background: rgba(59,111,240,.18); border-color: var(--sky); color: #fff; }

/* Entries (Accusations) */
.entry {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  margin-bottom: 24px; box-shadow: var(--shadow);
}
.entry .meta { font-size: .9rem; color: var(--muted); margin-bottom: .8em; }
.entry .sources { font-size: .9rem; margin: 0; padding-left: 1.2em; }
.entry .sources li { margin-bottom: 4px; word-break: break-word; }
.prose > h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.tag {
  display: inline-block; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  background: var(--blue); color: #fff; padding: 5px 10px; border-radius: 7px; line-height: 1.3;
}
.tag.light { background: #fff; color: var(--ink); border: 1px solid var(--ink); }
.notice {
  background: var(--mist); border: 1px solid var(--line); border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm); padding: 18px 22px; font-size: .97rem; margin-bottom: 32px;
}

/* Placeholder marker — delete once real content is in */
.placeholder { background: #eef3ff; outline: 2px dashed #9dbcff; outline-offset: 2px; }

/* ===== Forms ===== */
form .field { margin-bottom: 20px; }
label { display: block; font-weight: 600; margin-bottom: 6px; }
input, textarea, select {
  width: 100%; font: inherit; padding: 13px 16px; border: 1px solid #c8d1e8; border-radius: 12px; background: #fff; color: var(--ink);
}
input:focus, textarea:focus, select:focus { outline: 3px solid rgba(26,79,214,.25); border-color: var(--blue); }
textarea { min-height: 160px; resize: vertical; }
button.btn { border: 0; cursor: pointer; font: inherit; font-weight: 600; }

/* Link exchange */
.link-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.link-list li { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 22px; }
.link-list a { font-weight: 600; }
.code-box { background: var(--ink-navy); color: #dbe4ff; font-family: ui-monospace, Menlo, monospace; font-size: .85rem; padding: 18px; border-radius: 12px; overflow-x: auto; white-space: pre-wrap; word-break: break-all; }

/* ===== Footer ===== */
.site-footer { background: var(--ink-navy); color: #aebbe0; padding: 0 0 28px; font-size: .97rem; }
.site-footer a { color: #fff; text-decoration: none; font-weight: 500; }
.site-footer a:hover { color: var(--sky); }
.footer-grid { display: grid; gap: 36px; padding-top: 72px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 48px; } }
.footer-title { display: block; font-size: .85rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #8e9bc4; margin-bottom: 18px; }
.footer-brand { font-family: var(--display); text-transform: uppercase; color: #fff; font-size: 1.6rem; display: block; margin-bottom: 10px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 14px; }
.site-footer .fine { border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding-top: 22px; font-size: .88rem; text-align: center; }

/* ===== Endorsements ===== */
.endorse-list { list-style: none; padding: 0; margin: 0; }
.endorse-list li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .97rem; }
.endorse-list li:last-child { border-bottom: 0; }

/* ===== Traitors (numbered cards) ===== */
.traitor-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 28px; }
@media (min-width: 700px) { .traitor-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1050px) { .traitor-list { grid-template-columns: repeat(3, 1fr); } }
.traitor {
  position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow);
}
.traitor .rank {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  width: 52px; height: 52px; border-radius: 14px; background: var(--blue); color: #fff;
  font-family: var(--display); font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(0,0,0,.35);
}
.traitor figure { margin: 0; }
.traitor img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 25%; background: #dde3f2; }
.traitor .no-photo { aspect-ratio: 4 / 3; background: #e3e9f7; color: var(--muted); display: flex; align-items: center; justify-content: center; font-size: .9rem; text-align: center; padding: 16px; }
.traitor figcaption { font-size: .72rem; color: var(--muted); padding: 8px 20px 0; }
.traitor figcaption a { color: var(--muted); }
.traitor .body { padding: 14px 24px 26px; }
.traitor h2 { font-family: var(--sans); font-weight: 700; font-size: 1.35rem; margin: 0 0 .25em; letter-spacing: 0; }
.traitor .role { display: inline-block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; background: var(--blue); color: #fff; padding: 4px 9px; border-radius: 7px; margin-bottom: 1em; }
.traitor p { font-size: .97rem; }
.traitor .sources { font-size: .85rem; margin: 0; padding-left: 1.1em; }

/* ===== Jailhouse / mugshot frame (DUI list) ===== */
.mug-list { display: grid; gap: 32px; }
@media (min-width: 800px) { .mug-list { grid-template-columns: repeat(2, 1fr); } }
.mug { background: #f2f0ec; border: 1px solid #d9d4ca; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.mug-head {
  font-family: var(--sans); font-weight: 800; color: #1a1a1a; text-align: center; text-transform: none;
  font-size: clamp(1rem, 2.6vw, 1.3rem); padding: 14px 12px 8px; letter-spacing: .01em; line-height: 1.3; margin: 0;
}
.mug-head::before, .mug-head::after { content: " \2013  "; }
.mug-board {
  position: relative; aspect-ratio: 4 / 3.4; overflow: hidden;
  background:
    repeating-linear-gradient(to bottom, transparent 0, transparent 34px, #2b2b2b 34px, #2b2b2b 37px),
    linear-gradient(#e6e4e0, #cfccc6);
}
.mug-board img {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  height: 92%; width: auto; max-width: none;
  filter: grayscale(1) contrast(1.1);
  -webkit-mask-image: linear-gradient(to bottom, #000 80%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 80%, transparent 100%);
}
.mug-banner {
  position: relative; margin-top: -48px; background: #d8434b; color: #1b0c0d;
  padding: 26px 22px 24px; font-size: clamp(1.05rem, 2.4vw, 1.3rem); line-height: 1.35;
  clip-path: polygon(0 8%, 4% 2%, 9% 7%, 15% 1%, 22% 6%, 28% 0, 35% 5%, 42% 1%, 49% 6%, 56% 0, 63% 5%, 70% 1%, 77% 6%, 84% 0, 91% 5%, 96% 1%, 100% 6%,
                     100% 94%, 96% 99%, 90% 95%, 84% 100%, 77% 94%, 70% 99%, 63% 95%, 56% 100%, 49% 95%, 42% 99%, 35% 94%, 28% 100%, 21% 95%, 14% 99%, 8% 94%, 3% 99%, 0 95%);
}
.mug-banner strong { font-weight: 800; }
.mug-banner .cite { display: block; text-align: right; font-size: .85rem; margin-top: 10px; }
.mug-foot { padding: 14px 18px 18px; font-size: .88rem; color: #333; }
.mug-foot .sources { padding-left: 1.1em; margin: 6px 0 0; }
.mug-foot .credit { font-size: .72rem; color: #777; margin-top: 8px; }
.mug-foot .credit a { color: #777; }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto !important; } }
.stats .num[data-counter] { font-family: var(--sans); font-weight: 800; font-size: clamp(1.5rem, 2.4vw, 2.1rem); font-variant-numeric: tabular-nums; margin-bottom: 6px; }
@media (min-width: 1000px) { .stats.stats-2 { grid-template-columns: repeat(2, 1fr); } }
.portrait:has(img) { padding: 0; border: 0; aspect-ratio: 898 / 998; }
.portrait img { object-position: center 20%; }
/* Getty Images embed inside a traitor card: same 4:3 box as the other photos.
   Getty's player can't be cropped, so it's scaled to the box height and centered on a dark backdrop. */
.getty-embed { aspect-ratio: 4 / 3; background: #0b1230; display: flex; justify-content: center; align-items: center; overflow: hidden; }
.getty-embed iframe { display: block; height: 100%; width: auto; aspect-ratio: 475 / 594; max-width: 100%; border: 0; }

/* Swing-state voter guide (accusations page) */
.state-jump { font-size: .95rem; line-height: 1.9; }
.state-card .state-sub { font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: .4em; }
.county-list { margin: 0; padding-left: 1.2em; font-size: .95rem; }
.county-list li { margin-bottom: 4px; word-break: break-word; }

/* Accusations counter (accusations page) */
.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; }
.accuse-stats .num { font-variant-numeric: tabular-nums; }
.accuse-stats .stat { flex-direction: column; align-items: flex-start; gap: 12px; }
.accuse-stats .num { font-size: clamp(2.4rem, 4vw, 3.2rem); margin-bottom: 6px; }

/* Site map page */
.sitemap-title { font-family: var(--sans); font-weight: 700; font-size: 1.15rem; letter-spacing: 0; margin: 0 0 .6em; }
.sitemap-list { margin: 0; padding-left: 1.1em; }
.sitemap-list li { margin-bottom: 6px; }

/* Democratic resources (links page) */
.dem-links { list-style: none; margin: 0; padding: 0; }
.dem-links li { padding: 10px 0; border-top: 1px solid var(--line, #e3e8f4); font-size: .95rem; }
.dem-links li:first-child { border-top: 0; padding-top: 4px; }
