/* =============================================
   National Popular Vote — Modernized
   ============================================= */

:root {
  --bg: #fbfaf7;
  --bg-alt: #f1ede5;
  --ink: #0a1226;
  --ink-soft: #2c3548;
  --ink-mute: #6b7384;
  --rule: rgba(10, 18, 38, 0.09);

  --accent: #a3142a;
  --accent-deep: #780f1f;
  --accent-soft: #fae8eb;

  --navy: #0a1428;
  --navy-2: #11203c;
  --gold: #c89a37;

  --shadow-sm: 0 1px 2px rgba(12, 20, 36, 0.06), 0 4px 12px rgba(12, 20, 36, 0.04);
  --shadow-md: 0 8px 30px rgba(12, 20, 36, 0.08);
  --shadow-lg: 0 30px 60px rgba(12, 20, 36, 0.12);

  --radius: 14px;
  --radius-lg: 20px;

  --serif: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.skip-link {
  position: absolute; top: -40px; left: 8px;
  background: var(--ink); color: var(--bg);
  padding: 8px 12px; border-radius: 8px; z-index: 999;
}
.skip-link:focus { top: 8px; }

/* =========== Buttons =========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--accent); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }
.nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active::after { transform: scaleX(1); }
.myths__more { margin-top: 24px; font-size: 14px; font-weight: 500; }
.myths__more a { color: var(--gold); border-bottom: 1px solid rgba(217,177,74,0.4); padding-bottom: 1px; }
.myths__more a:hover { border-bottom-color: var(--gold); }

/* =========== Nav =========== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--ink); color: var(--bg);
  display: grid; place-items: center;
}
.nav__name { display: flex; flex-direction: column; line-height: 1.1; }
.nav__name strong { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }
.nav__name em { font-style: normal; font-size: 11px; color: var(--ink-mute); letter-spacing: 0.02em; }

.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft);
  position: relative;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__toggle { display: none; width: 40px; height: 40px; flex-direction: column; gap: 4px; align-items: center; justify-content: center; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

.nav__progress { height: 2px; background: var(--accent); width: 0%; transition: width .1s linear; }

/* =========== Hero =========== */
.hero {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(12,20,36,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12,20,36,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 0%, transparent 75%);
}
.hero__glow {
  position: absolute; top: -200px; right: -200px; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(178, 30, 53, 0.15), transparent 60%);
  filter: blur(40px);
}

.hero__content { position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--ink-soft);
  background: #fff; border: 1px solid var(--rule);
  padding: 8px 14px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

.hero__title {
  margin: 32px 0 24px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(44px, 7.2vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 144;
  max-width: 16ch;
}
.hero__title .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.hero__lede {
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.45;
}
.hero__cta {
  margin-top: 36px;
  display: flex; gap: 12px; flex-wrap: wrap;
}

.hero__counter { margin-top: 64px; }

.counter {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  max-width: 720px;
}
.counter__row { display: flex; align-items: baseline; gap: 24px; flex-wrap: wrap; margin-bottom: 18px; }
.counter__big { font-family: var(--serif); font-size: clamp(56px, 7vw, 84px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.counter__total { color: var(--ink-mute); font-weight: 500; font-size: 0.45em; margin-left: 6px; }
.counter__label { color: var(--ink-soft); max-width: 30ch; font-size: 14px; line-height: 1.4; }

.counter__bar {
  position: relative;
  height: 12px; border-radius: 999px;
  background: var(--bg-alt);
  overflow: visible;
  margin-bottom: 14px;
}
.counter__fill {
  height: 100%; width: var(--pct);
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  border-radius: 999px;
  position: relative;
  animation: fillIn 1.6s cubic-bezier(.4,0,.2,1) both;
}
@keyframes fillIn { from { width: 0; } }
.counter__threshold { position: absolute; top: -6px; bottom: -6px; width: 2px; background: var(--ink); border-radius: 1px; }
.counter__threshold span { position: absolute; top: -22px; left: 50%; transform: translateX(-50%); font-size: 11px; font-weight: 700; letter-spacing: 0.05em; }
.counter__legend { display: flex; gap: 20px; font-size: 13px; color: var(--ink-soft); }
.swatch { display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin-right: 6px; vertical-align: middle; }
.swatch--enacted { background: var(--accent); }
.swatch--needed { background: var(--bg-alt); border: 1px solid var(--rule); }

/* =========== Stats =========== */
.stats {
  background: var(--ink);
  color: #fff;
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.stat {
  position: relative;
  padding: 8px 24px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
  color: #fff;
}
.stat__sep { color: rgba(255,255,255,0.35); padding: 0 4px; }
.stat p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.5; }

/* =========== Sections =========== */
.section { padding: 120px 0; position: relative; }
.section--dark { background: var(--bg-alt); }

.section__header { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding: 6px 12px;
  background: var(--accent-soft);
  border-radius: 999px;
  margin-bottom: 20px;
}
.section__header h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.section__header p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto;
}

/* =========== Principles =========== */
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 80px; }
.principle {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.principle:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(12,20,36,0.15); }
.principle__num {
  font-family: var(--mono); font-size: 13px; color: var(--accent);
  font-weight: 500; letter-spacing: 0.1em; margin-bottom: 24px;
}
.principle h3 {
  font-family: var(--serif);
  font-size: 24px; font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.principle p { color: var(--ink-soft); font-size: 15px; }

/* =========== Mechanism =========== */
.mechanism {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center;
  background: var(--ink); color: #fff;
  border-radius: var(--radius-lg);
  padding: 64px;
  position: relative; overflow: hidden;
}
.mechanism::before {
  content: ""; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(217,177,74,0.18), transparent 65%);
  pointer-events: none;
}
.mechanism .kicker { background: rgba(255,255,255,0.08); color: var(--gold); }
.mechanism h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
  line-height: 1.1;
}
.mechanism p { color: rgba(255,255,255,0.78); font-size: 16px; max-width: 50ch; margin-bottom: 24px; }
.mechanism em { color: var(--gold); font-style: italic; }
.checklist li {
  position: relative;
  padding-left: 28px; margin-bottom: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
}
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 14px; height: 14px;
  background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(217, 177, 74, 0.18);
}
.checklist strong { color: #fff; }

.mechanism__visual { display: grid; place-items: center; }
.dial { width: 100%; max-width: 320px; color: #fff; }

/* =========== Problems =========== */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column;
}
.problem__head { margin-bottom: 16px; }
.problem__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.problem h3 {
  font-family: var(--serif);
  font-size: 22px; font-weight: 600; line-height: 1.18;
  letter-spacing: -0.02em;
}
.problem > p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-bottom: 24px;
  flex: 1;
}
.problem__chart {
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}
.problem__caption {
  font-size: 12px; color: var(--ink-mute); margin-top: 12px;
  font-family: var(--mono); letter-spacing: 0.02em;
}

.bars { display: flex; align-items: flex-end; gap: 6px; height: 80px; }
.bar { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.bar span {
  display: block; width: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  border-radius: 4px 4px 0 0;
  min-height: 30px;
}
.bar label { font-family: var(--mono); font-size: 10px; color: var(--ink-mute); }

.split-bar { display: flex; height: 40px; border-radius: 8px; overflow: hidden; background: var(--bg-alt); }
.split-bar__a { background: linear-gradient(90deg, var(--accent), var(--accent-deep)); display: flex; align-items: center; padding: 0 14px; color: #fff; font-size: 12px; font-weight: 600; }
.split-bar__b { background: var(--ink); display: flex; align-items: center; justify-content: flex-end; padding: 0 8px; color: #fff; font-size: 11px; font-weight: 600; }
.split-bar__b span { white-space: nowrap; }

.weight { display: grid; gap: 14px; padding: 8px 0; }
.weight__row { display: grid; grid-template-columns: 110px 1fr 50px; align-items: center; gap: 12px; }
.weight__label { font-size: 13px; color: var(--ink-soft); }
.weight__dot { color: var(--accent); font-size: 14px; text-align: center; }
.weight__dot--big { font-size: 36px; line-height: 1; color: var(--accent); }
.weight__val { font-family: var(--mono); font-weight: 600; font-size: 14px; color: var(--ink); text-align: right; }

/* =========== Status =========== */
.enacted {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 64px;
}
.enacted__group {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px;
}
.enacted__group h3 {
  font-family: var(--sans); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink); margin-bottom: 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.enacted__meta {
  font-family: var(--mono); font-size: 11px; color: var(--accent);
  background: var(--accent-soft); padding: 4px 10px; border-radius: 999px;
  text-transform: none; letter-spacing: 0.04em; font-weight: 500;
}
.state-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
}
.state-list li:last-child { border-bottom: 0; }
.state-list em {
  font-family: var(--mono); font-style: normal; font-weight: 500; font-size: 13px; color: var(--ink-mute);
  background: var(--bg-alt); padding: 2px 8px; border-radius: 6px;
}

.passed {
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius); padding: 36px;
}
.passed h3 { font-family: var(--serif); font-size: 26px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.passed__lede { color: var(--ink-soft); margin-bottom: 22px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  background: var(--bg);
  transition: border-color .2s, transform .2s;
}
.chip:hover { border-color: var(--accent); transform: translateY(-1px); }
.chip small { font-family: var(--mono); font-size: 11px; color: var(--ink-mute); font-weight: 400; }

/* =========== Myths =========== */
.myth-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 80px; }
.myth {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.myth:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.myth h3 {
  font-family: var(--serif);
  font-size: 19px; font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--accent-deep);
}
.myth p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

.myths__videos h3 {
  font-family: var(--serif); font-size: 28px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 24px;
}
.video-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.vidcard {
  display: block;
  background: var(--ink); color: #fff;
  border-radius: var(--radius);
  padding: 24px;
  aspect-ratio: 1.35;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease;
}
.vidcard::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(178,30,53,0.4), transparent 50%);
  opacity: 0.6;
}
.vidcard:hover { transform: translateY(-3px); }
.vidcard:hover::before { opacity: 1; }
.vidcard__play {
  position: relative;
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%; background: rgba(255,255,255,0.12);
  font-size: 12px; padding-left: 3px;
  margin-bottom: 16px;
}
.vidcard__title {
  position: relative;
  display: block;
  font-family: var(--serif);
  font-size: 16px; font-weight: 500; letter-spacing: -0.01em;
  line-height: 1.2;
}

/* =========== Take action =========== */
.act-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.action {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.action:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(12,20,36,0.15); }
.action--primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.action__num {
  font-family: var(--mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 10px;
  background: var(--accent-soft);
  border-radius: 999px;
  align-self: flex-start;
}
.action--primary .action__num { background: rgba(217,177,74,0.15); color: var(--gold); }
.action h3 {
  font-family: var(--serif);
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.18;
}
.action p { font-size: 14px; color: var(--ink-soft); flex: 1; }
.action--primary p { color: rgba(255,255,255,0.75); }
.action__cta { font-size: 14px; font-weight: 600; color: var(--accent); }
.action--primary .action__cta { color: var(--gold); }

/* =========== Resources =========== */
.resources { background: var(--bg-alt); }
.resources__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.resources__copy h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600; letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 18px 0 18px;
}
.resources__copy p { font-size: 17px; color: var(--ink-soft); margin-bottom: 28px; max-width: 50ch; }
.resources__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.book {
  position: relative;
  width: 280px;
  height: 380px;
  margin: 0 auto;
  perspective: 1000px;
  transform: rotateY(-12deg) rotateX(4deg);
  transition: transform .5s ease;
}
.book:hover { transform: rotateY(-4deg) rotateX(2deg); }
.book__cover {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: 4px 8px 8px 4px;
  padding: 32px;
  color: #fff;
  display: flex; flex-direction: column;
  box-shadow:
    -2px 0 0 rgba(0,0,0,0.2),
    -4px 4px 30px rgba(0,0,0,0.3),
    inset -1px 0 0 rgba(255,255,255,0.1);
}
.book__cover::before {
  content: ""; position: absolute; top: 20px; bottom: 20px; left: 8px; width: 1px;
  background: rgba(217, 177, 74, 0.3);
}
.book__kicker { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 16px; }
.book__title {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin-bottom: auto;
}
.book__sub { font-family: var(--serif); font-style: italic; font-size: 14px; color: rgba(255,255,255,0.85); margin-bottom: 16px; line-height: 1.3; }
.book__authors { font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em; color: rgba(255,255,255,0.6); border-top: 1px solid rgba(217, 177, 74, 0.3); padding-top: 12px; }
.book__spine {
  position: absolute; left: -8px; top: 4px; bottom: 4px; width: 8px;
  background: linear-gradient(90deg, rgba(0,0,0,0.4), var(--navy));
  border-radius: 2px 0 0 2px;
}

/* =========== Quote =========== */
.quote {
  padding: 100px 0;
  text-align: center;
  background: var(--ink);
  color: #fff;
}
.quote blockquote { max-width: 800px; margin: 0 auto 32px; }
.quote p {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500; font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 18px;
}
.quote cite {
  font-style: normal;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
}
.quote .btn--primary { background: #fff; color: var(--ink); }
.quote .btn--primary:hover { background: var(--accent); color: #fff; }

/* =========== Footer =========== */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
  padding: 80px 0 30px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}
.footer__brand .nav__brand { margin-bottom: 18px; }
.footer__mission { color: var(--ink-soft); font-size: 14px; max-width: 36ch; margin-bottom: 24px; line-height: 1.5; }
.footer__signup label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.footer__signup-row {
  display: flex;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 4px 4px 4px 18px;
  max-width: 400px;
  align-items: center;
}
.footer__signup-row:focus-within { border-color: var(--ink); }
.footer__signup-row input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font: inherit; font-size: 14px;
  padding: 8px 12px 8px 0;
}
.footer__signup-row .btn { padding: 9px 18px; font-size: 13px; }

.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer__coalition { grid-column: 1 / -1; padding-top: 36px; margin-top: 36px; border-top: 1px solid var(--rule); }
.footer__coalition h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.footer__coalition p { font-size: 14px; color: var(--ink-soft); margin-bottom: 14px; max-width: 60ch; }
.footer__coalition-row { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__coalition-row a { font-size: 14px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--rule); padding-bottom: 2px; transition: border-color .15s; }
.footer__coalition-row a:hover { border-bottom-color: var(--accent); color: var(--accent); }
.footer__cols h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
.footer__cols ul { display: grid; gap: 10px; }
.footer__cols a { font-size: 14px; color: var(--ink-soft); transition: color .15s; }
.footer__cols a:hover { color: var(--accent); }

.footer__bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: var(--ink-mute);
}
.footer__fineprint { font-family: var(--mono); }

/* =============================================
   Subpage shell
   ============================================= */
.page-hero {
  position: relative;
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(178,30,53,0.08), transparent 60%),
    linear-gradient(rgba(12,20,36,0.04) 1px, transparent 1px) 0 0/56px 56px,
    linear-gradient(90deg, rgba(12,20,36,0.04) 1px, transparent 1px) 0 0/56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 0%, #000 0%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 0%, #000 0%, transparent 90%);
  pointer-events: none;
}
.page-hero__inner { position: relative; max-width: 880px; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 22px 0 20px;
  font-variation-settings: "opsz" 144;
}
.page-hero__lede {
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--ink-soft);
  max-width: 64ch;
  line-height: 1.5;
}
.page-hero__meta {
  display: flex; gap: 18px; flex-wrap: wrap;
  margin-top: 26px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--ink-mute);
  text-transform: uppercase;
}
.page-hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.page-hero__meta i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }

/* =============================================
   Article / long-form prose
   ============================================= */
.doc {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  padding: 72px 0 100px;
}
.doc__toc {
  position: sticky; top: 100px;
  align-self: start;
  font-size: 13px;
  border-left: 1px solid var(--rule);
  padding-left: 18px;
}
.doc__toc h4 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  margin-bottom: 14px;
  font-weight: 600;
}
.doc__toc ol { list-style: none; counter-reset: toc; padding: 0; }
.doc__toc li { margin-bottom: 10px; counter-increment: toc; }
.doc__toc a {
  color: var(--ink-soft);
  display: flex; gap: 12px; line-height: 1.4;
  transition: color .2s;
}
.doc__toc a::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--ink-mute);
  font-family: var(--mono); font-size: 11px;
}
.doc__toc a:hover { color: var(--accent); }

.doc__body { max-width: 70ch; font-size: 17px; line-height: 1.7; color: var(--ink-soft); }
.doc__body h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin: 64px 0 18px;
  scroll-margin-top: 100px;
}
.doc__body h2:first-child { margin-top: 0; }
.doc__body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 36px 0 12px;
}
.doc__body p { margin-bottom: 1.1em; }
.doc__body strong { color: var(--ink); }
.doc__body a { color: var(--accent); border-bottom: 1px solid rgba(178,30,53,0.25); transition: border-color .2s; }
.doc__body a:hover { border-color: var(--accent); }
.doc__body ul, .doc__body ol { margin: 0 0 1.2em 0; padding-left: 22px; }
.doc__body ul { list-style: none; padding-left: 0; }
.doc__body ul li { padding-left: 22px; position: relative; margin-bottom: 8px; }
.doc__body ul li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.doc__body ol { list-style: decimal; padding-left: 24px; }
.doc__body ol li { margin-bottom: 8px; padding-left: 4px; }
.doc__body blockquote {
  border-left: 3px solid var(--accent);
  background: var(--bg-alt);
  padding: 18px 24px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
}
.doc__body blockquote p { margin: 0; font-style: italic; font-family: var(--serif); font-size: 18px; color: var(--ink); }
.doc__body blockquote cite { font-style: normal; font-family: var(--mono); font-size: 12px; color: var(--ink-mute); margin-top: 8px; display: block; }

.callout {
  background: var(--ink); color: #fff;
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 32px 0;
}
.callout h4 { font-family: var(--serif); font-size: 22px; margin-bottom: 8px; color: #fff; font-weight: 600; }
.callout p { color: rgba(255,255,255,0.78); margin-bottom: 0; }
.callout--accent { background: linear-gradient(135deg, var(--accent), var(--accent-deep)); }

.statbar {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius);
  margin: 24px 0; overflow: hidden;
}
.statbar > div { padding: 22px; border-right: 1px solid var(--rule); }
.statbar > div:last-child { border-right: 0; }
.statbar strong { display: block; font-family: var(--serif); font-size: 32px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 4px; }
.statbar span { font-size: 13px; color: var(--ink-soft); }

/* =============================================
   Tables
   ============================================= */
.table-wrap { overflow-x: auto; margin: 24px 0; }
table.data {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--rule);
}
table.data th, table.data td {
  text-align: left; padding: 12px 16px;
  border-bottom: 1px solid var(--rule);
}
table.data th {
  background: var(--bg-alt);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); font-weight: 500;
}
table.data tr:last-child td { border-bottom: 0; }
table.data tr:hover td { background: rgba(178,30,53,0.025); }
table.data td.num { font-family: var(--mono); font-size: 13px; text-align: right; }

/* =============================================
   Status — state-by-state
   ============================================= */
.status-board {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.state-tile {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px;
  transition: transform .15s, border-color .15s;
}
.state-tile:hover { border-color: var(--ink); transform: translateY(-1px); }
.state-tile span:first-child { font-weight: 500; }
.state-tile em { font-family: var(--mono); font-style: normal; font-size: 11px; color: var(--ink-mute); padding: 2px 8px; background: var(--bg-alt); border-radius: 6px; }
.state-tile--enacted { background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff; border-color: transparent; }
.state-tile--enacted em { background: rgba(255,255,255,0.18); color: #fff; }
.state-tile--priority { background: #fff5e0; border-color: #d9b14a; }
.state-tile--priority em { background: rgba(217,177,74,0.2); color: #8a6d22; }
.state-tile--passed { background: #e9eef9; border-color: #4f6dad; }
.state-tile--passed em { background: rgba(79,109,173,0.18); color: #2c4283; }

.legend { display: flex; flex-wrap: wrap; gap: 20px; margin: 24px 0 32px; font-size: 13px; color: var(--ink-soft); }
.legend span { display: inline-flex; align-items: center; gap: 8px; }
.legend i { width: 16px; height: 16px; border-radius: 4px; }
.legend i.l-en { background: linear-gradient(135deg, var(--accent), var(--accent-deep)); }
.legend i.l-pr { background: #fff5e0; border: 1px solid #d9b14a; }
.legend i.l-pa { background: #e9eef9; border: 1px solid #4f6dad; }
.legend i.l-no { background: #fff; border: 1px solid var(--rule); }

/* =============================================
   Timeline (news history)
   ============================================= */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: ""; position: absolute; left: 8px; top: 0; bottom: 0;
  width: 2px; background: var(--rule);
}
.timeline-year {
  font-family: var(--serif);
  font-size: 28px; font-weight: 600; letter-spacing: -0.02em;
  margin: 40px 0 14px;
  position: relative;
}
.timeline-year:first-child { margin-top: 0; }
.timeline-year::before {
  content: ""; position: absolute; left: -28px; top: 12px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent);
  border: 4px solid var(--bg);
  box-shadow: 0 0 0 1px var(--accent);
}
.timeline-item {
  position: relative;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 100px 1fr; gap: 16px;
  align-items: baseline;
}
.timeline-item:last-child { border-bottom: 0; }
.timeline-item time {
  font-family: var(--mono); font-size: 12px; color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.timeline-item .ev { font-size: 15px; color: var(--ink-soft); }
.timeline-item .ev strong { color: var(--ink); }

/* =============================================
   News list
   ============================================= */
.news-list { display: grid; gap: 8px; }
.news-item {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: grid; grid-template-columns: 80px 1fr auto; gap: 20px; align-items: center;
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.news-item:hover { transform: translateY(-2px); border-color: rgba(12,20,36,0.18); box-shadow: var(--shadow-sm); }
.news-item__num { font-family: var(--mono); font-size: 12px; color: var(--ink-mute); letter-spacing: 0.06em; }
.news-item__title { font-family: var(--serif); font-size: 19px; font-weight: 500; letter-spacing: -0.015em; color: var(--ink); line-height: 1.25; }
.news-item__arrow { color: var(--accent); font-weight: 600; }

/* =============================================
   People grid (board / advisory)
   ============================================= */
.people {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.person {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 26px;
}
.person__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ink), var(--accent));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  margin-bottom: 16px;
}
.person h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 4px; }
.person__role { font-size: 13px; font-family: var(--mono); color: var(--accent); letter-spacing: 0.04em; margin-bottom: 12px; }
.person__bio { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* =============================================
   Forms
   ============================================= */
.form {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 720px;
}
.form__row { display: grid; gap: 18px; margin-bottom: 18px; }
.form__row--two { grid-template-columns: 1fr 1fr; }
.form__row--three { grid-template-columns: 2fr 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field label small { color: var(--ink-mute); font-weight: 400; }
.field input,
.field select,
.field textarea {
  font: inherit; font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--ink);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(12,20,36,0.06);
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
.field--full { grid-column: 1 / -1; }
.field__hint { font-size: 12px; color: var(--ink-mute); }
.form__success {
  background: #ecf6ec;
  border: 1px solid #b3d8b3;
  border-radius: 10px;
  padding: 18px 22px;
  color: #2c5b2c;
  margin-bottom: 18px;
}
.form__success strong { color: #1f3f1f; }
.form__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; padding-top: 8px; border-top: 1px solid var(--rule); }

/* =============================================
   Donate / split
   ============================================= */
.split {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px;
  align-items: start;
}
.donate-options { display: grid; gap: 12px; }
.donate-option {
  display: flex; align-items: center; gap: 16px;
  padding: 22px;
  border-radius: var(--radius);
  background: #fff; border: 1px solid var(--rule);
  transition: transform .15s, border-color .15s;
}
.donate-option:hover { transform: translateY(-2px); border-color: var(--ink); }
.donate-option__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg-alt);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 20px; font-weight: 700;
}
.donate-option__copy { flex: 1; }
.donate-option__title { font-weight: 600; font-size: 15px; }
.donate-option__sub { font-size: 13px; color: var(--ink-mute); }
.donate-option__cta { color: var(--accent); font-weight: 600; }

.tax {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 32px;
  border: 1px solid var(--rule);
}
.tax h4 { font-family: var(--serif); font-size: 18px; margin-bottom: 8px; }
.tax p { font-size: 14px; color: var(--ink-soft); }
.tax + .tax { margin-top: 16px; }

/* =============================================
   Newsletter / poll cards
   ============================================= */
.nl-list { display: grid; gap: 8px; }
.nl-item {
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 22px 26px;
  display: flex; gap: 22px; align-items: center; justify-content: space-between;
  transition: border-color .15s, transform .15s;
}
.nl-item:hover { border-color: var(--ink); transform: translateY(-1px); }
.nl-item__date { font-family: var(--mono); font-size: 12px; color: var(--ink-mute); width: 110px; flex-shrink: 0; }
.nl-item__title { font-family: var(--serif); font-size: 18px; font-weight: 500; letter-spacing: -0.01em; flex: 1; }

.poll {
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 26px 28px; margin-bottom: 12px;
  display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center;
}
.poll h3 { font-family: var(--serif); font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 4px; }
.poll__src { font-family: var(--mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.05em; }
.poll__num { font-family: var(--serif); font-size: 38px; font-weight: 700; letter-spacing: -0.03em; color: var(--accent); line-height: 1; }
.poll__num small { font-size: 14px; color: var(--ink-mute); font-weight: 500; margin-left: 4px; }

/* =============================================
   Compact section headers (for sub-pages)
   ============================================= */
.section-tight { padding: 56px 0; }
.section--alt { background: var(--bg-alt); }
.section__header--left { text-align: left; max-width: 720px; margin-left: 0; margin-right: 0; }
.section__header--left p { margin-left: 0; margin-right: 0; }

/* =============================================
   Hero scoreboard
   ============================================= */
.hero--scoreboard { padding: 70px 0 100px; }
.hero__layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__copy h1.hero__title { margin: 24px 0 22px; font-size: clamp(40px, 6vw, 78px); }
.hero__copy .hero__lede { font-size: clamp(17px, 1.5vw, 20px); max-width: 56ch; }

.scoreboard {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.scoreboard::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  pointer-events: none;
  background: linear-gradient(135deg, rgba(178,30,53,0.04), transparent 60%);
}
.scoreboard__head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 18px;
}
.scoreboard__kicker { color: var(--accent); font-weight: 600; }
.scoreboard__date { color: var(--ink-mute); }
.scoreboard__bignum {
  font-family: var(--serif);
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--ink);
}
.scoreboard__total { font-weight: 500; color: var(--ink-mute); font-size: 0.42em; margin-left: 6px; }
.scoreboard__sub { font-size: 16px; color: var(--ink-soft); margin: 8px 0 24px; }
.scoreboard__sub strong { color: var(--accent); }

.scoreboard__bar {
  position: relative;
  height: 14px; border-radius: 999px;
  background: var(--bg-alt);
  overflow: visible;
  margin-bottom: 24px;
}
.scoreboard__fill {
  height: 100%; width: var(--pct);
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  border-radius: 999px;
  position: relative;
  animation: fillIn 1.6s cubic-bezier(.4,0,.2,1) both;
}
.scoreboard__threshold { position: absolute; top: -6px; bottom: -6px; right: -1px; width: 2px; background: var(--ink); }
.scoreboard__threshold span { position: absolute; top: -22px; right: -12px; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.05em; }

.scoreboard__metrics {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: grid; gap: 8px;
  font-size: 14px; color: var(--ink-soft);
}
.scoreboard__metrics li { padding: 8px 0; border-top: 1px solid var(--rule); display: flex; gap: 10px; align-items: baseline; }
.scoreboard__metrics li:first-child { border-top: 0; }
.scoreboard__metrics strong { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; min-width: 56px; }

.scoreboard__cta {
  display: inline-block;
  font-size: 14px; font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid rgba(178,30,53,0.3);
  padding-bottom: 1px;
  transition: border-color .15s;
}
.scoreboard__cta:hover { border-bottom-color: var(--accent); }

@media (max-width: 1024px) {
  .hero__layout { grid-template-columns: 1fr; gap: 40px; }
  .scoreboard { max-width: 520px; }
}

/* =============================================
   Steps mechanism
   ============================================= */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 24px;
}
.step {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px 30px;
  display: flex; flex-direction: column; gap: 10px;
}
.step__num {
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; color: var(--accent);
  margin-bottom: 4px;
}
.step h3 {
  font-family: var(--serif);
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.18;
}
.step p { font-size: 14.5px; color: var(--ink-soft); }
.step__arrow {
  display: grid; place-items: center;
  font-size: 24px; color: var(--ink-mute); font-weight: 300;
}
.mechanism__footnote {
  font-size: 14px; color: var(--ink-soft);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.mechanism__footnote a { color: var(--accent); font-weight: 600; margin-left: 8px; }
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
  .step__arrow { transform: rotate(90deg); padding: 4px 0; }
}

/* =============================================
   Case grid
   ============================================= */
.case { background: var(--ink); color: #fff; }
.case .section__header h2 { color: #fff; }
.case .section__header p { color: rgba(255,255,255,0.7); }
.case .kicker { background: rgba(255,255,255,0.08); color: var(--gold); }

.case-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.case-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background .2s;
}
.case-card:hover { background: rgba(255,255,255,0.07); }
.case-card__num {
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 0.95;
  display: flex; align-items: baseline; gap: 8px;
}
.case-card__sep { font-size: 0.4em; color: rgba(255,255,255,0.5); font-weight: 500; }
.case-card h3 {
  font-family: var(--serif);
  font-size: 20px; font-weight: 600; letter-spacing: -0.015em;
  line-height: 1.22;
  color: #fff;
}
.case-card p { font-size: 14.5px; color: rgba(255,255,255,0.78); flex: 1; }
.case-card__link {
  font-size: 13px; font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid rgba(217,177,74,0.3);
  padding-bottom: 1px;
  align-self: flex-start;
  transition: border-color .15s;
}
.case-card__link:hover { border-bottom-color: var(--gold); }
@media (max-width: 880px) { .case-grid { grid-template-columns: 1fr; } }

/* =============================================
   State buckets
   ============================================= */
.state-buckets {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.state-bucket {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.state-bucket:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(12,20,36,0.18); }
.state-bucket__count {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.state-bucket h3 { font-family: var(--serif); font-size: 18px; font-weight: 600; letter-spacing: -0.015em; }
.state-bucket p { font-size: 14px; color: var(--ink-soft); flex: 1; }
.state-bucket__cta { font-size: 13px; font-weight: 600; color: var(--accent); }
.state-bucket--enacted .state-bucket__count { color: var(--accent); }
.state-bucket--priority .state-bucket__count { color: #b8911e; }
.state-bucket--passed .state-bucket__count { color: #4f6dad; }
@media (max-width: 1024px) { .state-buckets { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .state-buckets { grid-template-columns: 1fr; } }

/* =============================================
   Wins
   ============================================= */
.wins-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.win {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition: transform .2s;
}
.win:hover { transform: translateY(-2px); }
.win time { font-family: var(--mono); font-size: 12px; color: var(--ink-mute); letter-spacing: 0.05em; }
.win h3 { font-family: var(--serif); font-size: 19px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.2; margin: 8px 0; }
.win p { font-size: 14px; color: var(--ink-soft); }
.win__delta {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  color: var(--accent); background: var(--accent-soft);
  padding: 4px 10px; border-radius: 999px;
}
.wins__more { margin-top: 32px; font-size: 14px; }
.wins__more a { color: var(--accent); font-weight: 600; border-bottom: 1px solid rgba(178,30,53,0.25); padding-bottom: 1px; }
@media (max-width: 1024px) { .wins-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .wins-grid { grid-template-columns: 1fr; } }

/* =============================================
   Objections
   ============================================= */
.objection-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.objection {
  background: #fff;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: transform .15s, box-shadow .15s;
}
.objection:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.objection h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  letter-spacing: -0.015em; line-height: 1.2;
  margin-bottom: 10px;
  color: var(--accent-deep);
}
.objection p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 880px) { .objection-grid { grid-template-columns: 1fr; } }

/* =============================================
   Audience routing
   ============================================= */
.routing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* =============================================
   Scoreboard variants
   ============================================= */
.scoreboard--full { padding: 36px 40px; }
.scoreboard--full .scoreboard__row {
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end;
}
.scoreboard--full .scoreboard__metrics li:first-child { border-top: 1px solid var(--rule); }
@media (max-width: 720px) { .scoreboard--full .scoreboard__row { grid-template-columns: 1fr; } }

/* =============================================
   US tilemap
   ============================================= */
.usmap { background: #fff; border: 1px solid var(--rule); border-radius: var(--radius); padding: 24px; overflow-x: auto; }
.usmap__svg { width: 100%; height: auto; min-width: 720px; max-width: 920px; display: block; margin: 0 auto; }

.tile { cursor: pointer; transition: transform .15s; }
.tile:hover { transform: translate(0, -2px); }
.tile rect { transition: filter .15s; }
.tile:hover rect { filter: brightness(1.08); }
.tile__abbr { font-family: var(--mono); font-size: 11px; font-weight: 700; fill: rgba(255,255,255,0.95); letter-spacing: 0.05em; pointer-events: none; }
.tile__ev { font-family: var(--serif); font-size: 13px; font-weight: 600; fill: rgba(255,255,255,0.85); pointer-events: none; }

.tile--enacted rect { fill: var(--accent); }
.tile--priority rect { fill: #d9b14a; }
.tile--priority .tile__abbr, .tile--priority .tile__ev { fill: #4a3a10; }
.tile--passed-one-chamber rect { fill: #4f6dad; }
.tile--no-recent-activity rect { fill: #e6e2d9; stroke: var(--rule); }
.tile--no-recent-activity .tile__abbr { fill: var(--ink-soft); }
.tile--no-recent-activity .tile__ev { fill: var(--ink-mute); }
.tile--introduced rect { fill: #9aa3b3; }

.map-legend { display: flex; flex-wrap: wrap; gap: 24px; margin-bottom: 20px; font-size: 13px; color: var(--ink-soft); }
.map-legend__item { display: inline-flex; align-items: center; gap: 8px; }
.map-legend__item i { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }

.map-detail {
  position: relative;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-top: 24px;
  box-shadow: var(--shadow-sm);
}
.map-detail__close {
  position: absolute; top: 16px; right: 20px;
  font-size: 26px; line-height: 1; color: var(--ink-mute);
  cursor: pointer; padding: 4px 10px; border-radius: 8px;
}
.map-detail__close:hover { background: var(--bg-alt); color: var(--ink); }
.map-detail__kicker { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.map-detail h3 { font-family: var(--serif); font-size: 32px; font-weight: 600; letter-spacing: -0.02em; margin: 6px 0 18px; }
.map-detail__row { display: flex; gap: 32px; flex-wrap: wrap; padding: 16px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); margin-bottom: 18px; }
.map-detail__row > div { display: flex; flex-direction: column; }
.map-detail__row strong { font-family: var(--serif); font-size: 28px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.map-detail__row span { font-size: 13px; color: var(--ink-mute); }
.map-detail__signed { font-style: italic; color: var(--ink-soft); margin-bottom: 12px; }
.map-detail__note { background: var(--bg-alt); padding: 14px 18px; border-radius: 10px; border-left: 3px solid var(--accent); margin: 12px 0; font-size: 14.5px; color: var(--ink-soft); }
.map-detail h4 { font-size: 12px; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-mute); margin: 18px 0 8px; }
.map-detail ul { list-style: none; padding: 0; }
.map-detail li { padding: 6px 0; padding-left: 18px; position: relative; font-size: 14.5px; color: var(--ink-soft); border-bottom: 1px solid var(--rule); }
.map-detail li::before { content: "→"; position: absolute; left: 0; color: var(--accent); }
.map-detail li:last-child { border-bottom: 0; }
.map-detail__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* =============================================
   State search / picker
   ============================================= */
.state-search { max-width: 460px; }
.state-search input {
  width: 100%;
  font: inherit;
  font-size: 18px;
  padding: 16px 22px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.state-search input:focus {
  outline: 0;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(12,20,36,0.06);
}

/* =============================================
   Individual state pages
   ============================================= */
.state__back { display: inline-block; font-size: 13px; font-family: var(--mono); color: var(--ink-mute); margin-bottom: 18px; transition: color .15s; }
.state__back:hover { color: var(--accent); }
.state__hero-stats { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--rule); }
.state__hero-stats > div { display: flex; flex-direction: column; min-width: 100px; }
.state__hero-stats strong { font-family: var(--serif); font-size: 32px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); line-height: 1.1; }
.state__hero-stats span { font-size: 12px; font-family: var(--mono); color: var(--ink-mute); margin-top: 4px; letter-spacing: 0.04em; text-transform: uppercase; }

.state-hero--enacted::after, .state-hero--priority::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
}
.state-hero--enacted::after { background: linear-gradient(90deg, var(--accent), var(--accent-deep)); }
.state-hero--priority::after { background: linear-gradient(90deg, #d9b14a, #b8911e); }
.state-hero--passed-one-chamber::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, #4f6dad, #2c4283); }

.state__signed { font-style: italic; color: var(--ink-soft); font-size: 16px; margin-bottom: 16px; }
.state__note { background: var(--bg-alt); border-left: 3px solid var(--accent); padding: 18px 24px; border-radius: 0 10px 10px 0; margin-bottom: 24px; }
.state__note p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }

.state__poll { background: #fff; border: 1px solid var(--rule); border-radius: var(--radius); padding: 32px; display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; margin: 32px 0; }
.state__poll-num { font-family: var(--serif); font-size: 80px; font-weight: 700; letter-spacing: -0.04em; color: var(--accent); line-height: 0.9; }
.state__poll-num small { font-size: 28px; color: var(--ink-mute); font-weight: 500; }
.state__poll p { font-size: 16px; color: var(--ink-soft); }
.state__poll p strong { color: var(--ink); font-weight: 600; }
.state__poll p span { display: block; font-family: var(--mono); font-size: 11px; color: var(--ink-mute); margin-top: 8px; letter-spacing: 0.04em; }

.state-cross-links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--rule); }

/* =============================================
   Research grid
   ============================================= */
.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.research-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.research-card:hover { transform: translateY(-2px); border-color: rgba(12,20,36,0.18); box-shadow: var(--shadow-sm); }
.research-card__kicker {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}
.research-card h3 { font-family: var(--serif); font-size: 19px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.22; }
.research-card p { font-size: 14px; color: var(--ink-soft); flex: 1; line-height: 1.55; }
.research-card a { font-size: 14px; font-weight: 600; color: var(--accent); align-self: flex-start; border-bottom: 1px solid rgba(178,30,53,0.25); padding-bottom: 1px; }
.research-card a:hover { border-bottom-color: var(--accent); }
.state-cross-links h3 { font-family: var(--serif); font-size: 18px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 16px; }
@media (max-width: 720px) { .state-cross-links { grid-template-columns: 1fr; } }
.route {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.route:hover { transform: translateY(-3px); border-color: rgba(12,20,36,0.18); box-shadow: var(--shadow-md); }
.route h3 {
  font-family: var(--serif); font-size: 24px; font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.route p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.55; }
.route__cta { font-size: 14px; font-weight: 600; color: var(--accent); }
@media (max-width: 880px) { .routing-grid { grid-template-columns: 1fr; } }

/* =============================================
   Reveal animations
   ============================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* =========== Responsive =========== */
@media (max-width: 1024px) {
  .principles, .problem-grid, .myth-grid, .act-grid { grid-template-columns: repeat(2, 1fr); }
  .video-row { grid-template-columns: repeat(3, 1fr); }
  .enacted { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .mechanism { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .resources__inner { grid-template-columns: 1fr; gap: 40px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: 0; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.12); }
  .stat:first-child, .stat:nth-child(2) { border-top: 0; }
}

@media (max-width: 720px) {
  .nav__links, .nav__actions .btn { display: none; }
  .nav__toggle { display: flex; }
  .section { padding: 80px 0; }
  .hero { padding: 60px 0 80px; }
  .principles, .problem-grid, .myth-grid, .act-grid { grid-template-columns: 1fr; }
  .video-row { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .quote p { font-size: 26px; }
  .container { padding: 0 20px; }
  .nav__inner { padding: 12px 20px; }
  .mechanism { padding: 28px; }
}

/* Mobile menu open */
.nav.is-open .nav__links {
  display: flex;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--bg);
  flex-direction: column;
  gap: 0;
  padding: 16px 20px 24px;
  border-bottom: 1px solid var(--rule);
}
.nav.is-open .nav__links a {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 16px;
}
.nav.is-open .nav__links a:last-child { border-bottom: 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}
