/* ============================================================
   BLACKBURNT — Tennessee Accountability Project
   Design system v2 · investigative-newsroom standard
   Type:  Newsreader (display) · Libre Franklin (UI/data) · IBM Plex Mono (meta)
   Color: warm newsprint · navy ink · editorial red · federal blue
   ============================================================ */

/* --- Tokens ----------------------------------------------- */
:root {
  /* Paper / surfaces */
  --paper:        #f3f1ea;   /* warm newsprint base            */
  --paper-2:      #ece9df;   /* recessed band                  */
  --card:         #fcfbf8;   /* raised card                    */
  --card-2:       #f8f6f0;   /* nested raised                  */

  /* Ink / text */
  --ink:          #15181d;   /* primary text (warm near-black) */
  --ink-soft:     #353a42;
  --muted:        #5f636b;   /* secondary text                 */
  --faint:        #8c8f95;   /* tertiary / meta                */

  /* Lines */
  --line:         #e0dccf;   /* hairline on paper              */
  --line-2:       #cfc8b7;   /* stronger hairline              */
  --line-ink:     rgba(255,255,255,0.10);

  /* Dark (navy) surfaces — the "blue" anchor */
  --navy:         #0d1a2b;   /* deep navy                      */
  --navy-2:       #14263c;   /* raised navy                    */
  --navy-line:    rgba(255,255,255,0.12);
  --on-navy:      #eef1f5;
  --on-navy-mut:  #9aa6b4;

  /* Accents (tweakable) */
  --red:          #a81f2b;   /* editorial red                  */
  --red-deep:     #851620;
  --blue:         #1d4e86;   /* federal interactive blue       */
  --blue-deep:    #143a66;

  /* Accent tints */
  --red-tint:     rgba(168,31,43,0.07);
  --blue-tint:    rgba(29,78,134,0.07);

  /* Type (tweakable pairing) */
  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-sans:    'Libre Franklin', system-ui, -apple-system, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Rhythm */
  --maxw:         1200px;
  --gutter:       clamp(1.1rem, 4vw, 2.5rem);
  --shadow-sm:    0 1px 2px rgba(20,24,30,0.05), 0 1px 1px rgba(20,24,30,0.04);
  --shadow-md:    0 2px 4px rgba(20,24,30,0.05), 0 8px 24px -12px rgba(20,24,30,0.18);
  --shadow-lg:    0 24px 60px -28px rgba(13,26,43,0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
}

/* Selection */
::selection { background: var(--red); color: #fff; }

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); }
h3 { font-size: 1.22rem; font-weight: 600; margin-bottom: 0.4rem; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--red); }
strong { font-weight: 600; color: var(--ink); }
small { font-size: 0.82rem; color: var(--muted); }

/* Editorial prose — serif reading voice */
.prose p, .deck, .card > p, .card > ul, .card > ol {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.66;
  color: var(--ink-soft);
}
.card > ul, .card > ol { padding-left: 1.3rem; }
.card > ul li, .card > ol li { margin-bottom: 0.5rem; }
.card > ul li::marker { color: var(--red); }

/* Eyebrow / kicker */
.eyebrow, .kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

/* --- Layout ----------------------------------------------- */
.inner, .main-container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.main-container { padding-top: 2.75rem; padding-bottom: 4.5rem; }

/* ============================================================
   TOP BAR + MASTHEAD + NAV
   ============================================================ */
.topbar {
  background: var(--navy);
  color: var(--on-navy-mut);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--navy-line);
}
.topbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  min-height: 34px;
}
.topbar .tb-left { display: flex; align-items: center; gap: 0.6rem; text-transform: uppercase; }
.topbar .tb-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(168,31,43,0.6);
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(168,31,43,0.55); }
  70% { box-shadow: 0 0 0 7px rgba(168,31,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(168,31,43,0); }
}
.topbar .tb-right { display: flex; align-items: center; gap: 1.25rem; text-transform: uppercase; }
.topbar .tb-right span { color: var(--on-navy-mut); }
.topbar .tb-right b { color: var(--on-navy); font-weight: 500; }
@media (max-width: 640px) { .topbar .tb-right { display: none; } }

/* Masthead */
.site-header {
  background: var(--navy);
  color: #fff;
  border-bottom: 1px solid var(--navy-line);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.brand { display: flex; flex-direction: column; gap: 0.3rem; }
.site-logo {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.site-logo span { color: var(--red); }
.header-tagline {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--on-navy-mut);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 2px;
  transition: background 0.18s, transform 0.18s;
}
.header-cta:hover { background: var(--red); color: #fff; transform: translateY(-1px); }
@media (max-width: 600px) { .header-cta { display: none; } }

/* Nav */
.site-nav {
  background: var(--navy-2);
  border-bottom: 2px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-nav .inner {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.nav-links { display: flex; align-items: stretch; gap: 0; flex: 1; }
.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.15rem;
  color: var(--on-navy-mut);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.16s, background 0.16s;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 1.15rem; right: 1.15rem; bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s cubic-bezier(0.2,0.7,0.2,1);
}
.site-nav a:hover { color: #fff; }
.site-nav a:hover::after { transform: scaleX(1); }
.site-nav a.active { color: #fff; }
.site-nav a.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--on-navy); padding: 0.5rem 1rem;
  font-size: 1.3rem;
}
@media (max-width: 820px) {
  .site-nav .inner { flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; align-items: center; margin-left: auto; }
  .nav-links {
    flex-basis: 100%;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 360px; }
  .site-nav a { padding: 0.85rem 0; border-top: 1px solid var(--navy-line); }
  .site-nav a::after { left: 0; right: 0; }
}

/* ============================================================
   HERO / MASTHEAD BLOCK
   ============================================================ */
.page-hero {
  position: relative;
  padding: 0.5rem 0 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-2);
}
.page-hero .eyebrow { display: block; margin-bottom: 1.1rem; }
.page-hero h1 { margin-bottom: 1.1rem; max-width: 16ch; }
.page-hero .deck {
  max-width: 64ch;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
  line-height: 1.62;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--faint);
  text-transform: uppercase;
}
.hero-meta b { color: var(--ink); font-weight: 600; }

/* Big editorial headline (index) — one line on desktop, wraps on small */
.page-hero h1 { max-width: none; }
.hero-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.1em 0.55em;
  font-size: clamp(1.6rem, 4.2vw, 2.7rem);
}
.hero-flow .hf-line { white-space: nowrap; }
.hero-flow .hf-arrow {
  color: var(--red);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.68em;
  margin-left: 0.5em;
  vertical-align: 0.06em;
}

/* ============================================================
   DATA STRIP (stats)
   ============================================================ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  border-radius: 3px;
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}
.stat-block {
  padding: 1.6rem 1.4rem;
  border-right: 1px solid var(--navy-line);
  position: relative;
}
.stat-block:last-child { border-right: none; }
.stat-block .stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 600;
  color: #fff;
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum" 1;
}
.stat-block .stat-number .unit { color: var(--red); }
.stat-block .stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--on-navy-mut);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.6rem;
  line-height: 1.4;
}
.stat-block::before {
  content: '';
  position: absolute;
  top: 1.7rem; left: 0;
  width: 2px; height: 1.6rem;
  background: var(--red);
}
@media (max-width: 720px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block:nth-child(1), .stat-block:nth-child(2) { border-bottom: 1px solid var(--navy-line); }
}
@media (max-width: 420px) {
  .stat-grid { grid-template-columns: 1fr; }
  .stat-block { border-right: none; border-bottom: 1px solid var(--navy-line); }
  .stat-block:last-child { border-bottom: none; }
}

/* Stat blocks linked to the page that documents them */
a.stat-block {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: background 0.18s ease;
}
a.stat-block:hover { background: var(--navy-2); }
a.stat-block:hover .stat-label { color: var(--on-navy); }
a.stat-block:focus-visible { outline: 2px solid var(--red); outline-offset: -3px; }
.stat-block .stat-src {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--on-navy-mut);
  opacity: 0.6;
  transition: color 0.18s ease, opacity 0.18s ease;
}
.stat-block .stat-src::after {
  content: '\2192';
  font-family: var(--font-sans);
  font-size: 0.9em;
  transition: transform 0.18s ease;
}
a.stat-block:hover .stat-src { color: #fff; opacity: 1; }
a.stat-block:hover .stat-src::after { transform: translateX(3px); }

/* Deep-link targets clear the sticky nav */
.section-label[id] { scroll-margin-top: 84px; }

/* ============================================================
   SECTION HEADERS / RULES
   ============================================================ */
.section-rule {
  border: none;
  border-top: 1px solid var(--line-2);
  margin: 3.5rem 0 1.75rem;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.section-label::before {
  content: '';
  width: 2.5rem; height: 3px;
  background: var(--red);
  flex: none;
}
.section-label h2 { margin-bottom: 0; flex: 1; }
.section-label .label-tag, .label-tag {
  font-family: var(--font-mono);
  background: transparent;
  color: var(--red);
  border: 1px solid currentColor;
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.22rem 0.55rem;
  border-radius: 2px;
  white-space: nowrap;
}

/* ============================================================
   LEDGER CARDS (tracker)
   ============================================================ */
.tracker-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.75rem;
  align-items: center;
}
.tracker-controls .filter-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--faint);
  margin-right: 0.4rem;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  padding: 0.4rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.16s;
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.ledger { display: flex; flex-direction: column; gap: 1.1rem; }

.ledger-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
}
.ledger-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}

/* Alternating rhythm — every other card runs an inverted navy header */
.ledger-card:nth-child(even) .ledger-head {
  background: var(--navy);
  border-bottom-color: var(--navy);
}
.ledger-card:nth-child(even) .ledger-date { color: var(--on-navy-mut); }
.ledger-card:nth-child(even) .ledger-cat {
  color: var(--on-navy-mut);
  border-color: var(--navy-line);
}
.ledger-card:nth-child(even) .ledger-cat[data-cat] { color: #fff; }
.ledger-card:nth-child(even) { border-color: var(--line-2); }
.ledger-card:nth-child(even) .chain-step:not(:last-child)::after { background: var(--card); }
.ledger-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.4rem;
  border-bottom: 1px solid var(--line);
  background: var(--card-2);
}
.ledger-no {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.04em;
}
.ledger-date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.ledger-cat {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
  border: 1px solid var(--line-2);
  color: var(--muted);
  white-space: nowrap;
}
.ledger-cat[data-cat="telecom"]      { color: var(--blue);  border-color: color-mix(in srgb, var(--blue) 35%, transparent); }
.ledger-cat[data-cat="healthcare"]   { color: #9d174d;      border-color: #f0c4d6; }
.ledger-cat[data-cat="agriculture"]  { color: #1d6b4a;      border-color: #b9dcc9; }
.ledger-cat[data-cat="federal-cuts"] { color: #92400e;      border-color: #e7c79b; }
.ledger-cat[data-cat="january6"]     { color: #5b2d91;      border-color: #d4c2ec; }
.ledger-cat[data-cat="taxes"]        { color: #155e45;      border-color: #b6d8c8; }

/* the chain grid */
.ledger-chain {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.chain-step {
  padding: 1.25rem 1.4rem 1.35rem;
  position: relative;
  border-right: 1px solid var(--line);
}
.chain-step:last-child { border-right: none; }
.chain-step .step-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}
.chain-step .step-eyebrow .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem; height: 1.15rem;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 600;
  color: #fff;
}
.chain-step.s-trump  .step-eyebrow { color: var(--red); }
.chain-step.s-trump  .step-num { background: var(--red); }
.chain-step.s-marsha .step-eyebrow { color: var(--ink); }
.chain-step.s-marsha .step-num { background: var(--ink); }
.chain-step.s-tn     .step-eyebrow { color: var(--blue); }
.chain-step.s-tn     .step-num { background: var(--blue); }
.chain-step .step-claim {
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.005em;
}
/* connector arrow between steps */
.chain-step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -7px; top: 1.5rem;
  width: 13px; height: 13px;
  background: var(--card);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transform: rotate(45deg);
  z-index: 2;
}

/* the benefit "payoff" footer band */
.ledger-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem 1.4rem;
  background: var(--red-tint);
  border-top: 1px solid color-mix(in srgb, var(--red) 22%, transparent);
}
.ledger-benefit .benefit-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding-top: 0.1rem;
}
.ledger-benefit .benefit-eyebrow .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.15rem; height: 1.15rem; border-radius: 50%;
  font-size: 0.6rem; font-weight: 600; color: #fff; background: var(--red);
}
.ledger-benefit .benefit-claim {
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--red-deep);
}

/* expand documentation */
.ledger-foot {
  border-top: 1px solid var(--line);
}
.ledger-foot-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.ledger-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blue);
  border-left: 1px solid var(--line);
  white-space: nowrap;
  transition: color 0.16s, background 0.16s;
}
.ledger-link:hover { color: #fff; background: var(--blue); }
.ledger-link .arr { transition: transform 0.18s; }
.ledger-link:hover .arr { transform: translateX(3px); }
.ledger-expand {
  flex: 1;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.75rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.16s, background 0.16s;
}
.ledger-expand:hover { color: var(--ink); background: var(--card-2); }
.ledger-expand .chev { transition: transform 0.22s; font-size: 0.85em; }
.ledger-expand.open .chev { transform: rotate(180deg); }
.ledger-detail {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.2,0.7,0.2,1);
}
.ledger-detail.open { max-height: 1200px; }
.ledger-detail-inner { overflow: hidden; }
.ledger-docs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.doc-cell {
  padding: 1.1rem 1.4rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.doc-cell:nth-child(2n) { border-right: none; }
.doc-cell .doc-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.5rem;
}
.doc-cell .doc-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 0.55rem;
}
.doc-cell .doc-src {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  line-height: 1.5;
  color: var(--faint);
}
.doc-cell .doc-src a { color: var(--blue); }
@media (max-width: 760px) {
  .ledger-chain { grid-template-columns: 1fr; }
  .chain-step { border-right: none; border-bottom: 1px solid var(--line); }
  .chain-step:not(:last-child)::after {
    right: auto; left: 1.4rem; top: auto; bottom: -7px;
    border: none; border-bottom: 1px solid var(--line); border-left: 1px solid var(--line);
  }
  .ledger-docs { grid-template-columns: 1fr; }
  .doc-cell { border-right: none; }
  .ledger-foot-row { flex-direction: column; }
  .ledger-link { border-left: none; border-top: 1px solid var(--line); justify-content: center; }
}

.tracker-empty {
  padding: 3rem 1rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--faint);
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.card + .card { margin-top: 1.25rem; }
.card h3 { margin-bottom: 0.7rem; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.card-grid .card { margin-top: 0; }

/* ============================================================
   SOURCE NOTE
   ============================================================ */
.source-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  line-height: 1.6;
  color: var(--faint);
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
  margin-top: 1.1rem;
}
.source-note a { color: var(--blue); }
.source-note strong { color: var(--muted); font-weight: 600; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { position: relative; padding-left: 2.25rem; margin-top: 0.5rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 6px; top: 0.6rem; bottom: 0.6rem;
  width: 1px;
  background: var(--line-2);
}
.timeline-item { position: relative; margin-bottom: 2.25rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.25rem; top: 0.35rem;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--red);
}
.timeline-item::after {
  content: '';
  position: absolute;
  left: calc(-2.25rem + 4px); top: calc(0.35rem + 4px);
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--red);
}
.timeline-date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.timeline-item h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.timeline-item p {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 0;
}

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion-item {
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-bottom: 0.7rem;
  overflow: hidden;
  background: var(--card);
  transition: box-shadow 0.2s;
}
.accordion-item:hover { box-shadow: var(--shadow-sm); }
.accordion-header {
  width: 100%;
  background: var(--card);
  border: none;
  text-align: left;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.16s;
}
.accordion-header:hover { background: var(--card-2); }
.accordion-header .chevron {
  font-family: var(--font-sans);
  transition: transform 0.24s;
  font-size: 0.8rem;
  color: var(--red);
  flex: none;
}
.accordion-header.open .chevron { transform: rotate(180deg); }
.accordion-body {
  display: none;
  padding: 0 1.4rem 1.3rem;
  background: var(--card);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.62;
  color: var(--ink-soft);
}
.accordion-body.open { display: block; }
.accordion-body p { margin-bottom: 0.85rem; }

/* ============================================================
   COUNTY CARDS
   ============================================================ */
.county-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.county-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.3rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.county-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--red);
}
.county-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.county-card h4 { font-size: 1.1rem; margin-bottom: 0.7rem; }
.county-card .county-stat {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--red);
  line-height: 1;
  font-feature-settings: "tnum" 1;
}
.county-card .county-stat-label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--faint);
  margin-top: 0.3rem;
}
.county-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.75rem;
  margin-bottom: 0;
  line-height: 1.55;
}

/* ============================================================
   MONEY / DATA TABLE
   ============================================================ */
.money-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.money-table th {
  background: var(--navy);
  color: var(--on-navy);
  padding: 0.8rem 1.1rem;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.money-table td {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.money-table tr:last-child td { border-bottom: none; }
.money-table tbody tr { transition: background 0.14s; }
.money-table tbody tr:hover td { background: var(--card-2); }
.money-table tbody tr:last-child td { background: var(--red-tint); font-weight: 600; }
.money-amount {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--red);
  font-feature-settings: "tnum" 1;
  font-size: 1.02rem;
}
.money-table .wrap-cell { max-width: 420px; font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (max-width: 720px) { .money-table { min-width: 600px; } }

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pull-quote {
  border-left: 3px solid var(--red);
  padding: 0.5rem 0 0.5rem 1.75rem;
  margin: 2.25rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  max-width: 52ch;
}
.pull-quote cite {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.04em;
  color: var(--faint);
  margin-top: 1rem;
  text-transform: uppercase;
}

/* ============================================================
   THESIS STANDFIRST  (promoted lede)
   ============================================================ */
.thesis {
  margin: 0 0 2.75rem;
  padding-top: 2.1rem;
  border-top: 3px solid var(--red);
}
.thesis .thesis-mark {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.thesis-lede {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 20ch;
  margin-bottom: 1.15rem;
  text-wrap: balance;
}
.thesis-lede .hl {
  color: var(--red);
  font-style: italic;
}
.thesis-sub {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  line-height: 1.58;
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 0;
}
.thesis-sub strong { color: var(--ink-soft); font-weight: 600; }

/* Per-entry cost band — names the Tennessee pain on each step */
.tl-cost {
  margin-top: 0.85rem;
  padding: 0.7rem 0.95rem;
  background: var(--red-tint);
  border-left: 2px solid var(--red);
  border-radius: 0 3px 3px 0;
}
.tl-cost .cost-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.35rem;
}
.tl-cost .cost-text {
  font-family: var(--font-sans) !important;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--red-deep);
  margin-bottom: 0;
}

/* Contrast cards — one banks, one bleeds */
.card.cost-card { border-left: 3px solid var(--red); }
.card.cost-card h3 { color: var(--red-deep); }

/* ============================================================
   ALERT BANNER
   ============================================================ */
.alert-banner {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  padding: 1.1rem 1.4rem;
  margin-bottom: 1.75rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.alert-banner strong { color: var(--ink); }

/* ============================================================
   DECISION CHAIN — Trump's call → mechanism → Tennessee's bill
   ============================================================ */
.chain { margin: 1.4rem 0 0.4rem; }
.chain-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1.1rem;
  position: relative;
  padding-bottom: 1.4rem;
}
.chain-step:last-child { padding-bottom: 0; }
.chain-node {
  grid-column: 1;
  grid-row: 1 / -1;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  background: var(--ink);
  z-index: 1;
}
.chain-step.is-tn .chain-node { background: var(--red); }
.chain-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 2.4rem;
  bottom: 0;
  width: 2px;
  background: var(--line-2);
  transform: translateX(-1px);
}
.chain-who {
  grid-column: 2;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0.35rem 0 0.2rem;
}
.chain-step.is-tn .chain-who { color: var(--red); }
.chain-headline {
  grid-column: 2;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 0.3rem;
}
.chain-body {
  grid-column: 2;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
}
.chain-body strong { color: var(--ink); }

/* ============================================================
   CALL SCRIPT
   ============================================================ */
.call-script {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.3rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.call-script > strong {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 0.85rem;
}
.call-script > strong::before {
  content: '';
  width: 1.1rem; height: 1px; background: var(--blue);
}
.call-script .script-body {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============================================================
   AI WIDGETS / FORMS / BUTTONS
   ============================================================ */
.widget-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.75rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.widget-box::before {
  content: '';
  position: absolute; left: 0; top: 0; right: 0;
  height: 2px; background: var(--red);
}
.widget-box h3 { margin-bottom: 0.5rem; }
.widget-box .widget-desc {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
  max-width: 60ch;
}
.widget-box textarea,
.widget-box input[type="text"],
.widget-box select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  font-size: 0.92rem;
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  margin-bottom: 0.8rem;
  resize: vertical;
  transition: border-color 0.16s, box-shadow 0.16s;
}
.widget-box textarea:focus,
.widget-box input:focus,
.widget-box select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-tint);
  background: #fff;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.16s, transform 0.16s, box-shadow 0.16s;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-2); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

.ai-response {
  margin-top: 1.1rem;
  padding: 1.25rem 1.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.66;
  white-space: pre-wrap;
  display: none;
}
.ai-response.visible { display: block; }
.ai-response .copy-btn { display: block; margin-top: 0.85rem; }

/* Info / error boxes (action widgets) */
.info-box {
  margin-bottom: 0.75rem;
  padding: 0.8rem 0.95rem;
  background: var(--blue-tint);
  border: 1px solid color-mix(in srgb, var(--blue) 30%, transparent);
  border-radius: 3px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.info-box strong { color: var(--blue-deep); }
.error-box {
  margin-top: 0.75rem;
  padding: 0.8rem 0.95rem;
  background: var(--red-tint);
  border: 1px solid color-mix(in srgb, var(--red) 30%, transparent);
  border-radius: 3px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--red-deep);
}

.loading-indicator {
  display: none;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  margin-top: 0.65rem;
}
.loading-indicator.visible { display: flex; }
.spinner {
  width: 15px; height: 15px;
  border: 2px solid var(--line-2);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.widget-row { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.widget-row select { flex: 1; min-width: 170px; }

/* ============================================================
   FARMER CAROUSEL
   ============================================================ */
.farmer-carousel {
  background: var(--navy);
  color: #fff;
  border-radius: 4px;
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}
.farmer-carousel .carousel-progress { height: 2px; background: var(--navy-line); }
.farmer-carousel .carousel-progress-fill {
  height: 100%; background: var(--red); width: 0%;
  transition: width 0.1s linear;
}
.farmer-carousel .carousel-inner { padding: 2rem 2.25rem 1.75rem; }
.farmer-carousel .carousel-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.farmer-carousel .carousel-eyebrow a {
  color: var(--on-navy-mut);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}
.farmer-carousel .carousel-eyebrow a:hover { color: #fff; }
.farmer-carousel .carousel-track {
  display: grid;
}
.farmer-carousel .carousel-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.farmer-carousel .carousel-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.farmer-carousel .slide-stat {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum" 1;
}
.farmer-carousel .slide-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.7rem;
  line-height: 1.25;
  max-width: 40ch;
}
.farmer-carousel .slide-body {
  font-size: 0.95rem;
  color: var(--on-navy-mut);
  line-height: 1.62;
  max-width: 64ch;
}
.farmer-carousel .carousel-footer {
  border-top: 1px solid var(--navy-line);
  padding: 0.9rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.farmer-carousel .carousel-dots { display: flex; gap: 7px; align-items: center; }
.farmer-carousel .carousel-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--navy-line); border: none; cursor: pointer; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.farmer-carousel .carousel-dot.active { background: var(--red); transform: scale(1.25); }
.farmer-carousel .carousel-nav { display: flex; gap: 0.5rem; }
.farmer-carousel .carousel-nav button {
  background: none;
  border: 1px solid var(--navy-line);
  color: var(--on-navy-mut);
  border-radius: 2px;
  padding: 0.35rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.farmer-carousel .carousel-nav button:hover { border-color: var(--on-navy-mut); color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: var(--on-navy-mut);
  padding: 3rem 0 2rem;
  margin-top: 5rem;
  font-size: 0.86rem;
  border-top: 2px solid var(--red);
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer .footer-brand .site-logo { font-size: 1.5rem; margin-bottom: 0.7rem; }
.site-footer .footer-brand p { max-width: 34ch; line-height: 1.6; color: var(--on-navy-mut); }
.site-footer h4 {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 0.85rem;
  font-weight: 500;
}
.site-footer a { color: var(--on-navy-mut); }
.site-footer a:hover { color: #fff; }
.site-footer .footer-links { display: flex; flex-direction: column; gap: 0.45rem; line-height: 1.4; }
.site-footer .footer-bottom {
  border-top: 1px solid var(--navy-line);
  padding-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  line-height: 1.6;
  color: var(--on-navy-mut);
  letter-spacing: 0.02em;
}
@media (max-width: 760px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.2,0.7,0.2,1), transform 0.6s cubic-bezier(0.2,0.7,0.2,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}

/* ============================================================
   TWEAKS PANEL
   ============================================================ */
#tweaks-root { position: fixed; inset: 0; pointer-events: none; z-index: 9999; display: none; }
#tweaks-root.show { display: block; }
.tweaks-panel {
  position: absolute;
  top: 16px; right: 16px;
  width: 280px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
  font-family: var(--font-sans);
  overflow: hidden;
}
.tweaks-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 0.9rem;
  background: var(--navy);
  color: #fff;
  cursor: grab;
}
.tweaks-head .tt {
  font-family: var(--font-mono);
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.tweaks-head button {
  background: none; border: none; color: var(--on-navy-mut);
  cursor: pointer; font-size: 1.1rem; line-height: 1; padding: 0 0.2rem;
}
.tweaks-head button:hover { color: #fff; }
.tweaks-body { padding: 0.9rem; display: flex; flex-direction: column; gap: 1rem; max-height: 70vh; overflow-y: auto; }
.tweak-sec-label {
  font-family: var(--font-mono);
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 0.55rem;
}
.tweak-swatches { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tweak-sw {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--line-2); cursor: pointer; padding: 0;
  position: relative; transition: transform 0.15s;
}
.tweak-sw:hover { transform: scale(1.08); }
.tweak-sw.sel { border-color: var(--ink); box-shadow: 0 0 0 2px var(--card), 0 0 0 4px var(--ink); }
.tweak-opts { display: flex; flex-direction: column; gap: 0.4rem; }
.tweak-opt {
  text-align: left;
  border: 1px solid var(--line-2);
  background: var(--paper);
  border-radius: 4px;
  padding: 0.55rem 0.7rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.tweak-opt:hover { border-color: var(--ink); }
.tweak-opt.sel { border-color: var(--ink); background: var(--card); }
.tweak-opt .o-name { font-size: 0.82rem; font-weight: 600; color: var(--ink); }
.tweak-opt .o-pair { font-size: 0.68rem; color: var(--faint); margin-top: 0.1rem; }
.tweak-opt .o-name.serif { font-family: var(--font-display); }

/* ============================================================
   UTILITIES
   ============================================================ */
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.text-muted { color: var(--muted); }
.text-sm { font-size: 0.875rem; }
.lead-list { padding-left: 1.3rem; line-height: 1.9; }
.lead-list li::marker { color: var(--red); }
.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;
}
