/* ============================================================
   No on ACC — Pflugerville · November 2026
   Implements the "No on ACC" Design System handoff:
   loud civic poster work — flat, blocky, high-contrast.
   Anton (display) · Barlow Condensed (subheads/buttons) · Barlow (body)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Base palette */
  --red-700:  #B81E24;
  --red-600:  #D8262C;   /* PRIMARY brand red */
  --red-500:  #E5454A;
  --red-100:  #FBE3E3;

  --ink-900:  #141414;   /* primary ink / dark bands */
  --ink-700:  #2B2B2E;
  --ink-500:  #57575C;
  --ink-300:  #8B8B91;

  --yellow-500: #FFD400; /* accent / highlight */
  --yellow-600: #E6BF00;

  --paper:     #F5F1E8;  /* warm page background */
  --paper-200: #EAE4D6;
  --white:     #FFFFFF;

  --gray-100:  #F2F2F0;
  --gray-200:  #E4E3DF;
  --gray-300:  #D2D1CC;
  --gray-500:  #9A9A95;
  --green-600: #2E7D46;

  /* Semantic */
  --color-primary: var(--red-600);
  --color-accent:  var(--yellow-500);
  --text-strong:   var(--ink-900);
  --text-body:     var(--ink-700);
  --text-muted:    var(--ink-500);
  --text-inverse:  var(--white);
  --surface-page:  var(--paper);
  --surface-card:  var(--white);
  --surface-ink:   var(--ink-900);
  --focus-ring:    var(--red-600);

  /* Type */
  --font-display:   'Anton', 'Arial Narrow', sans-serif;
  --font-condensed: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:      'Barlow', system-ui, sans-serif;

  --fs-mega:    clamp(64px, 12vw, 150px);
  --fs-display: clamp(44px, 7vw, 88px);
  --fs-h1:      40px;
  --fs-h2:      30px;
  --fs-h3:      23px;
  --fs-lead:    19px;
  --fs-body:    16px;
  --fs-small:   14px;
  --fs-eyebrow: 17px;
  --fs-fine:    11px;

  --ls-eyebrow: 0.16em;
  --ls-button:  0.08em;

  /* Spacing / layout */
  --container:        1120px;
  --container-narrow: 760px;
  --gutter:           24px;
  --section-y:        clamp(56px, 9vw, 112px);

  /* Effects */
  --radius-sm: 2px;
  --radius-md: 4px;
  --border-bold:  2px;
  --border-heavy: 4px;
  --border-frame: 7px;

  --shadow-block:     4px 4px 0 var(--ink-900);
  --shadow-block-red: 4px 4px 0 var(--red-600);
  --shadow-card:      0 1px 2px rgba(20,20,20,.10), 0 10px 28px rgba(20,20,20,.12);

  --ease-out: cubic-bezier(.2,.7,.3,1);
  --dur-fast: 120ms;
  --dur-base: 180ms;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body); background: var(--paper); color: var(--text-body);
  line-height: 1.55; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
a { color: var(--ink-900); text-underline-offset: 3px; text-decoration-color: var(--red-600); -webkit-tap-highlight-color: transparent; }

/* ---------- Brand mark: NoACC! lockup ---------- */
.nomark {
  display: inline-flex; align-items: baseline; white-space: nowrap;
  font-family: var(--font-display); font-weight: 400; line-height: 0.8;
  letter-spacing: -0.035em; text-shadow: 0 2px 0 rgba(0,0,0,.14);
}
.nomark .nm-no  { color: var(--red-600); }
.nomark .nm-acc { color: var(--ink-900); }
.nomark .nm-tax { color: var(--red-600); }
.nomark .nm-bang { color: var(--red-600); font-size: 1.16em; font-style: italic; margin-left: 0.06em; transform: translateY(0.02em); }
.nomark.on-ink .nm-acc { color: var(--white); }
.nomark.on-red .nm-no  { color: var(--ink-900); }
.nomark.on-red .nm-acc { color: var(--white); }
.nomark.on-red .nm-tax { color: var(--ink-900); }
.nomark.on-red .nm-bang { color: var(--ink-900); }

/* Wordmark: VOTENOACC.com! */
.wordmark {
  display: inline-flex; align-items: baseline; white-space: nowrap;
  font-family: var(--font-display); font-weight: 400; line-height: 0.8;
  letter-spacing: -0.035em; text-shadow: 0 2px 0 rgba(0,0,0,.28);
}
.wordmark .wm-t { color: #fff; }
.wordmark .wm-no { color: var(--red-600); }
.wordmark .wm-dom { color: #cfd4d8; font-size: 0.62em; letter-spacing: -0.01em; margin-left: 0.04em; }
.wordmark .wm-bang { color: var(--red-600); font-size: 1.16em; font-style: italic; margin-left: 0.06em; }

/* ---------- Promo bar ---------- */
.promo-bar { background: var(--yellow-500); color: var(--ink-900); border-bottom: 2px solid var(--ink-900); }
.promo-inner { max-width: var(--container); margin: 0 auto; padding: 10px 24px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 16px; text-align: center; }
.promo-text { font-family: var(--font-condensed); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: 19px; color: var(--ink-900); }
.promo-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; }
.promo-btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-condensed); font-weight: 700; text-transform: uppercase; letter-spacing: var(--ls-button); font-size: 16px; padding: 6px 16px; border: 2px solid var(--ink-900); border-radius: var(--radius-sm); background: var(--white); color: var(--ink-900); text-decoration: none; }
.promo-btn:hover { filter: brightness(.93); }
.promo-btn-accent { background: var(--red-600); border-color: var(--ink-900); color: var(--white); box-shadow: 3px 3px 0 var(--ink-900); transition: transform .06s ease, box-shadow .06s ease; }
.promo-btn-accent:hover { filter: none; transform: translate(1px,1px); box-shadow: 2px 2px 0 var(--ink-900); }
.promo-btn-accent:active { transform: translate(3px,3px); box-shadow: 0 0 0 var(--ink-900); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--white); border-bottom: 2px solid var(--ink-900); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand .nomark { font-size: 34px; }
.brand .brand-word { font-family: var(--font-condensed); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 18px; color: var(--ink-900); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-family: var(--font-condensed); font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; text-decoration: none; color: var(--ink-700); }
.nav-links a:hover, .nav-links a.active { color: var(--red-600); }
.nav-cta { display: inline-flex; align-items: center; justify-content: center; background: var(--red-600) !important; color: var(--white) !important; font-family: var(--font-condensed); font-weight: 700; text-transform: uppercase; letter-spacing: var(--ls-button); padding: 8px 18px; border: 2px solid var(--red-600); border-radius: var(--radius-sm); }
.nav-cta:hover { color: var(--white) !important; filter: brightness(.93); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink-900); margin: 5px 0; }
@media (max-width: 1000px) {
  .nav-toggle { display: block; }
  .nav-links { position: absolute; top: 66px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--white); padding: 8px 20px 18px; display: none; border-bottom: 2px solid var(--ink-900); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 4px; border-bottom: 1px solid var(--gray-200); }
  .nav-cta { margin-top: 12px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-condensed); font-weight: 700; font-size: 16px; text-transform: uppercase;
  letter-spacing: var(--ls-button); text-decoration: none; cursor: pointer;
  padding: 13px 26px; border: 2px solid transparent; border-radius: var(--radius-sm);
  transition: transform var(--dur-fast) var(--ease-out), filter var(--dur-fast) var(--ease-out);
}
.btn:hover { filter: brightness(0.93); }
.btn:active { transform: translateY(1px); }
.btn-lg { font-size: 19px; padding: 17px 34px; }
.btn-primary { background: var(--red-600); color: var(--white); border-color: var(--red-600); }
.btn-ghost { background: transparent; color: var(--ink-900); border-color: var(--ink-900); }
.btn-ghost:hover { background: var(--ink-900); color: var(--white); filter: none; }
.btn-ink { background: var(--ink-900); color: var(--white); border-color: var(--ink-900); }
.btn-accent { background: var(--yellow-500); color: var(--ink-900); border-color: var(--yellow-500); }
.btn-light { background: var(--white); color: var(--ink-900); border-color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--ink-900); filter: none; }

/* ---------- Eyebrows / badges ---------- */
.eyebrow, .section-eyebrow, .math-eyebrow {
  font-family: var(--font-condensed); font-weight: 700; font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--red-600);
  margin-bottom: 14px; display: block;
}
.section-eyebrow.step { color: var(--ink-900); font-size: 15px; letter-spacing: 0.08em; }
.section.dark .section-eyebrow, .section.dark .eyebrow { color: var(--yellow-600); }
.ribbon { display: inline-block; font-family: var(--font-condensed); font-weight: 700; font-size: var(--fs-small); letter-spacing: 0.08em; text-transform: uppercase; background: var(--yellow-500); color: var(--ink-900); padding: 5px 12px; border-radius: var(--radius-sm); }

/* ---------- Hero ---------- */
.hero { background: var(--paper); padding: clamp(40px,6vw,72px) 0; border-bottom: 2px solid var(--ink-900); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px,4vw,56px); align-items: center; }
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; gap: 32px; } }
.hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px,8vw,104px); line-height: 0.95; letter-spacing: 0.01em; color: var(--ink-900); text-transform: uppercase; margin-top: 14px; overflow-wrap: break-word; }
.hero h1 .red { color: var(--red-600); }
.numbers-page .hero h1 { font-size: clamp(34px, 5vw, 58px); line-height: 0.94; }
.hero-sub { font-size: var(--fs-lead); line-height: 1.5; color: var(--ink-700); max-width: 520px; margin-top: 20px; }
.hero-sub strong { color: var(--ink-900); }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* ---------- Cost / benefit bars (signature device) ---------- */
.costbenefit { background: var(--white); border: 2px solid var(--ink-900); box-shadow: var(--shadow-block); padding: 24px; }
.cb-bar + .cb-bar { margin-top: 14px; }
.cb-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.cb-label { font-family: var(--font-condensed); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 16px; color: var(--ink-500); }
.cb-num { font-family: var(--font-display); line-height: 0.9; }
.cb-bar--cost .cb-num { font-size: clamp(34px,5vw,52px); color: var(--red-600); }
.cb-bar--benefit .cb-num { font-size: clamp(26px,4vw,40px); color: var(--ink-900); }
.cb-track { height: 22px; background: rgba(0,0,0,.06); border-radius: 2px; overflow: hidden; }
.cb-bar--cost .cb-track { height: 30px; }
.cb-fill { height: 100%; border-radius: 2px; }
.cb-bar--cost .cb-fill { background: var(--red-600); }
.cb-bar--benefit .cb-fill { background: var(--ink-300); }
.cb-verdict { background: var(--yellow-500); color: var(--ink-900); font-family: var(--font-display); font-size: clamp(20px,3vw,30px); letter-spacing: 0.01em; text-align: center; padding: 12px 16px; margin-top: 20px; }

/* ---------- Math band (scoreboard on ink) ---------- */
.math-band { background: var(--ink-900); color: var(--white); padding: clamp(48px,7vw,88px) 0; }
.math-band .wrap { text-align: center; }
.math-eyebrow { color: var(--yellow-600); }
.math-band h2, .math-headline { font-family: var(--font-display); font-weight: 400; font-size: clamp(36px,5vw,64px); line-height: 0.9; color: var(--white); text-transform: uppercase; margin-bottom: 32px; }
.scoreboard { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.scoreboard.two { grid-template-columns: repeat(2,1fr); }
.scoreboard .sb-cell { background: var(--ink-900); padding: 32px 20px; }
.sb-num { font-family: var(--font-display); font-size: clamp(40px,7vw,72px); line-height: 0.85; }
.sb-num.cost { color: var(--red-500); }
.sb-num.plain { color: var(--white); }
.sb-num.accent { color: var(--yellow-500); }
.sb-label { font-family: var(--font-condensed); font-weight: 700; font-size: var(--fs-small); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-300); margin-top: 10px; }
.math-foot { max-width: 640px; margin: 34px auto 0; color: rgba(255,255,255,.72); font-size: var(--fs-body); line-height: 1.6; }
.math-foot a { color: var(--yellow-500); }
/* legacy math-line support (unused after rebuild, kept harmless) */
.math-line { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(14px,4vw,44px); }

/* ---------- Sections ---------- */
.section { padding: var(--section-y) 0; }
.section.alt { background: var(--white); }
.section.dark { background: var(--ink-900); color: var(--white); }
.section h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px,4.4vw,48px); line-height: 1; letter-spacing: 0.01em; text-transform: uppercase; color: var(--ink-900); max-width: 22ch; }
.section.dark h2 { color: var(--white); }
.section .lead { font-size: var(--fs-lead); color: var(--ink-700); max-width: 60ch; margin-top: 16px; }
.section.dark .lead { color: rgba(255,255,255,.8); }

/* ---------- Hook cards ---------- */
.hooks { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 40px; }
.hook { background: var(--white); border: 2px solid var(--ink-900); border-radius: var(--radius-sm); padding: 24px 22px; }
.hook .hook-num { font-family: var(--font-condensed); font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--red-600); margin-bottom: 12px; display: block; }
.hook h3 { font-family: var(--font-condensed); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; font-size: 21px; color: var(--ink-900); margin-bottom: 8px; }
.hook p { font-size: var(--fs-small); line-height: 1.55; color: var(--ink-700); }

/* ---------- Stat strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 1px; background: var(--ink-900); border: 2px solid var(--ink-900); border-radius: var(--radius-sm); overflow: hidden; margin-top: 38px; }
.stat { background: var(--white); padding: 28px 22px; text-align: center; }
.section.dark .stat { background: #1f1f1f; }
.stat .stat-num { font-family: var(--font-display); font-size: clamp(40px,6vw,64px); line-height: 0.85; color: var(--red-600); }
.stat .stat-label { font-family: var(--font-condensed); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: var(--fs-small); color: var(--ink-500); margin-top: 10px; }
.section.dark .stat .stat-label { color: var(--ink-300); }

/* ---------- Tables ---------- */
.data-table { width: 100%; border-collapse: collapse; margin-top: 26px; background: var(--white); border: 2px solid var(--ink-900); border-radius: var(--radius-sm); font-size: var(--fs-body); }
.data-table caption { max-width: 100%; }
.data-table caption { text-align: left; font-family: var(--font-condensed); font-size: 15px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 10px; }
.data-table th, .data-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--gray-200); }
.data-table thead th { background: var(--ink-900); color: var(--white); font-family: var(--font-condensed); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table td.num { font-family: var(--font-condensed); font-weight: 700; text-align: right; white-space: nowrap; }
.data-table td.num.cost { color: var(--red-600); }
.data-table tbody tr:nth-child(even) { background: var(--gray-100); }
.data-table tr.total td { background: var(--ink-900); color: var(--white); font-weight: 700; }
.data-table tr.total td.num { color: var(--yellow-500); }
.source-note { font-size: var(--fs-small); color: var(--ink-500); margin-top: 12px; }
.source-note a { color: var(--ink-700); }

/* ---------- Callout ---------- */
.callout { background: var(--white); border: 2px solid var(--ink-900); border-left-width: 6px; border-left-color: var(--red-600); border-radius: var(--radius-sm); padding: 22px 24px; margin-top: 30px; box-shadow: var(--shadow-block); }
.callout strong { font-family: var(--font-condensed); text-transform: uppercase; letter-spacing: 0.02em; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 34px; border-top: 2px solid var(--ink-900); }
.faq-item { border-bottom: 2px solid var(--ink-900); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-condensed); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; font-size: 22px; color: var(--ink-900); }
.faq-q .chevron { flex: none; width: 22px; height: 22px; position: relative; }
.faq-q .chevron::before, .faq-q .chevron::after { content: ""; position: absolute; top: 50%; left: 50%; width: 13px; height: 2px; background: var(--red-600); transform: translate(-50%,-50%); }
.faq-q .chevron::after { transform: translate(-50%,-50%) rotate(90deg); transition: opacity .2s ease; }
.faq-q[aria-expanded="true"] .chevron::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a-inner { padding: 0 0 24px; color: var(--ink-700); font-size: var(--fs-body); max-width: 66ch; }
.faq-a-inner a { color: var(--red-600); }

/* ---------- Action / forms ---------- */
.action-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; margin-top: 42px; align-items: start; }
@media (max-width: 820px) { .action-grid { grid-template-columns: 1fr; } }
.form-card { background: var(--white); border: 2px solid var(--ink-900); border-radius: var(--radius-sm); padding: 30px; box-shadow: var(--shadow-block); }
.form-card h3 { font-family: var(--font-condensed); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; font-size: 24px; margin-bottom: 6px; color: var(--ink-900); }
.form-card p.form-sub { color: var(--ink-500); font-size: var(--fs-small); margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-condensed); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: 13px; margin-bottom: 6px; color: var(--ink-700); }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border: 2px solid var(--ink-900); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 16px; background: var(--white); color: var(--ink-900); }
.field textarea { resize: vertical; min-height: 88px; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--red-600); outline-offset: 1px; }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 16px; }
.checkbox-row input { width: auto; margin-top: 4px; }
.checkbox-row label { font-size: var(--fs-small); color: var(--ink-500); font-weight: 400; }
.share-card { background: var(--ink-900); color: var(--white); border-radius: var(--radius-sm); border: 2px solid var(--ink-900); padding: 30px; }
.share-card h3 { font-family: var(--font-condensed); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; font-size: 22px; margin-bottom: 14px; }
.share-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.share-btn { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); padding: 10px 16px; border-radius: var(--radius-sm); text-decoration: none; font-family: var(--font-condensed); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: 14px; }
.share-btn:hover { background: var(--red-600); border-color: var(--red-600); }
.talk-list { list-style: none; margin-top: 14px; display: grid; gap: 13px; }
.talk-list li { padding-left: 24px; position: relative; color: rgba(255,255,255,.85); font-size: var(--fs-small); }
.talk-list li .mk { position: absolute; left: 0; color: var(--red-500); font-weight: 700; }
.talk-list strong { color: var(--white); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: rgba(255,255,255,.8); padding: 48px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 22px; } }
.footer-brand { margin-bottom: 12px; }
.footer-brand .nomark { font-size: 44px; }
.site-footer h4 { font-family: var(--font-condensed); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow-500); margin-bottom: 13px; }
.site-footer p { max-width: 42ch; font-size: var(--fs-small); }
.site-footer a { color: rgba(255,255,255,.8); text-decoration: none; display: block; padding: 5px 0; font-family: var(--font-condensed); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 14px; }
.site-footer a:hover { color: var(--white); }
.footer-disclosure { margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); font-family: var(--font-body); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: var(--fs-fine); color: rgba(255,255,255,.78); max-width: 78ch; }
.footer-legal { margin-top: 12px; font-size: var(--fs-fine); color: rgba(255,255,255,.55); max-width: 78ch; }
.disclaimer-bar { background: var(--red-600); padding: 12px 0; font-family: var(--font-condensed); font-weight: 700; font-size: 13px; color: var(--white); text-align: center; letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- Alternative page: path cards, comparison, limits ---------- */
.paths { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 34px; }
.path-card { background: var(--white); border: 2px solid var(--ink-900); border-radius: var(--radius-sm); padding: 28px; box-shadow: var(--shadow-block); }
.path-tag { display: inline-block; font-family: var(--font-condensed); font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; background: var(--red-600); color: var(--white); padding: 4px 12px; border-radius: var(--radius-sm); margin-bottom: 14px; }
.path-card h3 { font-family: var(--font-condensed); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; font-size: 23px; color: var(--ink-900); margin-bottom: 10px; }
.path-card p { font-size: var(--fs-body); line-height: 1.55; color: var(--ink-700); }
.path-card .path-note { margin-top: 14px; font-size: var(--fs-small); color: var(--ink-500); font-style: italic; }

.data-table td.cmp-bad { font-family: var(--font-condensed); font-weight: 700; color: var(--red-600); }
.data-table td.cmp-good { font-family: var(--font-condensed); font-weight: 700; color: var(--green-600); }

.limits-list { list-style: none; display: grid; gap: 14px; margin-top: 28px; }
.limits-list li { border-left: 3px solid var(--red-600); padding: 4px 0 4px 16px; font-size: var(--fs-body); color: var(--ink-700); }

/* ---------- Donate form ---------- */
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; }
.field-hint { display: block; font-family: var(--font-body); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 12px; color: var(--ink-500); margin: -2px 0 6px; }
.amount-group { border: 0; padding: 0; margin: 6px 0 4px; }
.amount-group legend { padding: 0; font-family: var(--font-condensed); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: 13px; color: var(--ink-700); margin-bottom: 8px; }
.amount-options { display: flex; flex-wrap: wrap; gap: 10px; }
.amount-opt { position: relative; margin: 0; }
.amount-opt input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.amount-opt > span { display: inline-flex; align-items: center; justify-content: center; min-width: 62px; padding: 12px 16px; border: 2px solid var(--ink-900); border-radius: var(--radius-sm); background: var(--white); color: var(--ink-900); font-family: var(--font-condensed); font-weight: 700; font-size: 18px; cursor: pointer; }
.amount-opt input[type="radio"]:checked + span { background: var(--red-600); color: var(--white); border-color: var(--red-600); }
.amount-opt input[type="radio"]:focus-visible + span { outline: 2px solid var(--red-600); outline-offset: 2px; }
.amount-custom-wrap { display: inline-flex; align-items: center; border: 2px solid var(--ink-900); border-radius: var(--radius-sm); background: var(--white); padding: 0 10px; }
.amount-custom-wrap .amount-custom-label { font-family: var(--font-condensed); font-weight: 700; font-size: 18px; color: var(--ink-900); }
.amount-custom-wrap input { width: 100px; border: 0; background: transparent; padding: 12px 6px; font-family: var(--font-body); font-size: 16px; color: var(--ink-900); outline: none; }
.nav-donate { background: var(--yellow-500) !important; color: var(--ink-900) !important; border-color: var(--yellow-500); }
.nav-donate:hover { background: var(--yellow-600) !important; color: var(--ink-900) !important; filter: none; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Small-screen refinements ---------- */
@media (max-width: 600px) {
  /* Bump readable text up a notch on phones */
  :root { --fs-lead: 20px; --fs-body: 17px; --fs-small: 15px; --fs-eyebrow: 16px; }
  body { font-size: 17px; }
  .wrap { padding: 0 16px; }
  .section { padding: 48px 0; }
  .hero { padding: 36px 0; }
  .scoreboard, .scoreboard.two { grid-template-columns: 1fr; }
  .hero-cta-row .btn { flex: 1 1 auto; }
  /* keep the data tables compact so they still fit without a scroll */
  .data-table { font-size: 14px; }
  .data-table th, .data-table td { padding: 10px 11px; }
  /* larger, more legible header + logo */
  .site-header .nav { height: 72px; }
  .brand .nomark { font-size: 40px; }
  .nav-links a { font-size: 17px; }
  .paths { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}
