:root {
  --navy: #051b33;
  --navy-2: #082744;
  --navy-3: #031120;
  --yellow: #f3b414;
  --yellow-2: #ffd15a;
  --paper: #f7efe1;
  --paper-2: #fff7e8;
  --ink: #06182d;
  --red: #a9362b;
  --green: #6fb782;
  --muted: #655d52;
  --line: rgba(6,24,45,.22);
  --max: 1180px;
  --header-h: 76px;
  --shadow-soft: 0 18px 55px rgba(0,0,0,.16);
  --shadow-hard: 0 28px 90px rgba(0,0,0,.42);
  --ease: 180ms ease;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 64px)); margin-inline: auto; }
.skip-link { position:absolute; left:-999px; top:0; background:#fff; padding:10px; z-index:1000; }
.skip-link:focus { left:12px; top:12px; }
.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; }

.site-header {
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 48px);
  background: rgba(5, 25, 48, .98);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 35px rgba(0,0,0,.28);
}
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }
.brand-mark { width: 48px; height: 48px; border-radius: 8px; flex: 0 0 auto; object-fit: contain; }
.brand-name { font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; letter-spacing: .01em; font-size: 20px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav-links { display: flex; align-items: center; gap: 30px; font-weight: 700; }
.nav-links a { opacity: .92; }
.nav-links a:hover { color: var(--yellow-2); opacity: 1; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 5px;
  border: 2px solid var(--yellow);
  background: linear-gradient(180deg, var(--yellow-2), var(--yellow));
  color: #061a31;
  font-weight: 900;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  letter-spacing: .025em;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  cursor: pointer;
}
.button:hover { transform: translateY(-1px); filter: brightness(1.03); }
.button-small { min-height: 44px; padding: 0 20px; font-size: 15px; }
.button-compact { min-height: 46px; padding: 0 22px; font-size: 15px; }
.button-outline { color: var(--yellow); background: rgba(3, 16, 31, .55); box-shadow: none; }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: #fff;
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.menu-button span:not(.sr-only) { display: block; height: 3px; background:#fff; margin: 5px 0; border-radius: 5px; }
.mobile-menu {
  display: none;
  position: absolute;
  right: 18px;
  top: calc(var(--header-h) - 4px);
  width: min(360px, calc(100vw - 36px));
  background: #071a31;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  box-shadow: 0 26px 60px rgba(0,0,0,.5);
  padding: 12px;
}
.mobile-menu a { display: block; padding: 14px 14px; border-radius: 8px; font-weight: 800; }
.mobile-menu a:hover { background: rgba(255,255,255,.07); color: var(--yellow); }
.mobile-menu.open { display: block; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 55% 18%, rgba(242,181,22,.23), transparent 32%),
    linear-gradient(90deg, var(--navy-3) 0%, #081c34 42%, #06111f 100%);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(243,180,20,.22), transparent 30%),
    linear-gradient(115deg, rgba(255,255,255,.06), transparent 44%);
  opacity: .42;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,12,24,.95) 0%, rgba(4,18,34,.80) 43%, rgba(4,18,34,.32) 67%, rgba(4,18,34,.18) 100%);
}
.hero-grain,
.principles::before,
.related-law::before,
.signup::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .14;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,.12) 0 1px, transparent 1px),
    radial-gradient(circle at 85% 75%, rgba(255,255,255,.10) 0 1px, transparent 1px);
  background-size: 7px 7px, 11px 11px;
  mix-blend-mode: screen;
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 530px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: 72px 0 64px;
}
.hero-copy { min-width: 0; }

.eyebrow, .section-kicker {
  margin: 0 0 12px;
  color: var(--yellow);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .14em;
  font-size: 12px;
}
.hero h1 {
  margin: 0;
  max-width: 620px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: clamp(54px, 7vw, 86px);
  line-height: .98;
  letter-spacing: .01em;
  text-wrap: balance;
  color: #fbf5e8;
  text-shadow: 0 3px 18px rgba(0,0,0,.5);
}
.gold-rule { display:block; width: 70px; height: 4px; background: var(--yellow); margin: 24px 0 24px; }
.lede, .supporting { max-width: 560px; color: rgba(255,255,255,.92); }
.lede { font-size: clamp(18px, 2vw, 21px); }
.supporting { font-size: 17px; color: rgba(255,255,255,.86); }
.hero-buttons { display:flex; gap:18px; flex-wrap: wrap; margin-top: 32px; }
.hero-poster-card {
  justify-self: end;
  width: min(390px, 100%);
  margin: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.58);
  transform: rotate(.6deg);
  background: #000;
}
.hero-poster-card img { width:100%; height:auto; max-height: 610px; object-fit: contain; object-position: center center; }

.bill-strip { background: linear-gradient(180deg, var(--paper-2), #f0e8da); padding: 28px 0 34px; border-bottom: 1px solid rgba(0,0,0,.08); }
.section-kicker {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 12px;
  color: var(--red);
  margin-bottom: 18px;
}
.section-kicker::after { content:""; display:block; height: 1px; background: rgba(168,50,39,.45); }
.bill-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.bill-card { display:grid; grid-template-columns: 82px 1fr; gap: 18px; align-items:center; padding: 8px 32px 0 12px; }
.bill-card + .bill-card { border-left: 1px solid var(--line); padding-left: 36px; }
.bill-icon { width: 72px; height:72px; border-radius:50%; display:grid; place-items:center; background: var(--navy); color:#fff; font-size:32px; }
.bill-card h2 { margin: 0; font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; font-size: 32px; line-height:1; color: var(--navy); letter-spacing:.015em; }
.bill-card p { margin: 7px 0 10px; font-size: 16px; }
.status { display:inline-flex; align-items:center; min-height: 25px; border-radius: 4px; padding: 0 13px; font-size: 13px; font-weight:900; color:#071a31; }
.status-yellow { background: var(--yellow); }
.status-green { background: #7fc58d; }

.principles { position:relative; background: linear-gradient(115deg, #031427, #092644 80%); color:#fff; padding: 34px 0 38px; }
.principles h2 { margin:0 0 30px; text-align:center; font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; font-size: clamp(30px, 3.5vw, 42px); line-height:1.05; letter-spacing:.012em; color:#fbf5e8; }
.principle-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.principle { display:grid; grid-template-columns: 86px 1fr; gap: 20px; align-items:center; min-height: 120px; padding: 0 22px; border-right: 1px solid rgba(255,255,255,.32); }
.principle:last-child { border-right:0; }
.line-icon { color: var(--yellow); border: 3px solid var(--yellow); width: 64px; height: 64px; display:grid; place-items:center; border-radius: 14px; font-size: 34px; line-height: 1; font-family: Arial, Helvetica, sans-serif; }
.line-icon.shield { border-radius: 50% 50% 46% 46%; }
.principle h3 { margin:0 0 6px; font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; font-size: 25px; letter-spacing:.01em; color:#fff; }
.principle p { margin:0; font-size: 14px; color: rgba(255,255,255,.84); }

.two-column-section { background: var(--paper-2); padding: 54px 0; }
.two-column-content { display:grid; grid-template-columns: 1.05fr 180px 1fr; gap: 44px; align-items: start; }
.bill-summary h2, .timeline-card h2, .related-law h2 { margin:0 0 20px; font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; font-size: clamp(40px, 4vw, 56px); line-height:1.02; color: var(--navy); letter-spacing:.01em; }
.bill-summary p, .related-law p { margin:0 0 28px; font-size: 18px; max-width: 520px; color: #182c42; }
.poster-tile { margin:0; align-self:center; }
.poster-tile img { width: 180px; height: 260px; object-fit: cover; border: 6px solid #171717; box-shadow: 0 14px 40px rgba(0,0,0,.24); }
.timeline-card { padding-left: 28px; border-left: 1px solid var(--line); }
.timeline { position:relative; list-style:none; padding: 2px 0 0 24px; margin:0; }
.timeline::before { content:""; position:absolute; left:5px; top:12px; bottom:12px; width:1px; background: var(--red); }
.timeline li { position:relative; padding-bottom: 26px; }
.timeline li::before { content:""; position:absolute; left:-24px; top:5px; width:12px; height:12px; border-radius:50%; background: var(--red); box-shadow: 0 0 0 4px var(--paper-2); }
.timeline time { display:block; color: var(--red); font-weight:900; margin-bottom: 2px; }
.timeline strong { display:block; color: var(--navy); font-size:18px; }
.timeline span { display:block; color:#20344b; }

.related-law { position:relative; background: #efe4d3; padding: 44px 0; border-top: 1px solid rgba(0,0,0,.08); border-bottom: 1px solid rgba(0,0,0,.08); }
.related-grid { display:grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
.related-law h2 { font-size: clamp(36px, 4vw, 52px); }
.related-card { background:#fff9ee; border: 1px solid rgba(10,27,47,.18); padding: 28px; box-shadow: 0 18px 45px rgba(0,0,0,.08); }
.related-card strong { display:block; font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; font-size: 26px; color:var(--red); margin-bottom:8px; }
.related-card p { margin:0; font-size: 16px; }
.red { color: var(--red); }



.leadership-context {
  position: relative;
  background:
    radial-gradient(circle at 84% 14%, rgba(242,181,22,.18), transparent 28%),
    linear-gradient(115deg, #031427, #08213f 76%);
  color: #fff;
  padding: 58px 0 62px;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(0,0,0,.18);
}
.leadership-context::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.12) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.08) 0 1px, transparent 1px);
  background-size: 8px 8px, 13px 13px;
}
.leadership-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}
.leadership-copy h2 {
  margin: 0 0 18px;
  max-width: 680px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: clamp(40px, 5.4vw, 66px);
  line-height: .98;
  letter-spacing: .01em;
  color: #fbf5e8;
}
.leadership-copy p {
  margin: 0 0 22px;
  max-width: 650px;
  color: rgba(255,255,255,.86);
  font-size: 18px;
}
.rail-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--yellow-2);
  border-bottom: 2px solid rgba(242,181,22,.7);
  font-weight: 900;
}
.leader-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.leader-card {
  min-height: 250px;
  padding: 28px;
  background: rgba(255,248,234,.96);
  color: var(--navy);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 22px 60px rgba(0,0,0,.24);
}
.leader-card-alt {
  background: rgba(242,181,22,.96);
}
.leader-label {
  display: block;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: 11px;
  margin-bottom: 12px;
}
.leader-card-alt .leader-label { color: #061a31; }
.leader-card h3 {
  margin: 0 0 12px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: .98;
  letter-spacing: .01em;
}
.leader-card p {
  margin: 0;
  color: #20344b;
  font-size: 16px;
}
.source-caution {
  grid-column: 1 / -1;
  margin: -20px 0 0;
  padding-top: 18px;
  color: rgba(255,255,255,.74);
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: 13px;
}


.candidate-alert {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.candidate-alert.is-hidden { display: none; }
.candidate-alert-inner {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px 14px 20px;
  color: #061a31;
  background: linear-gradient(180deg, var(--yellow-2), var(--yellow));
  border: 1px solid rgba(6,26,49,.22);
  box-shadow: 0 18px 48px rgba(0,0,0,.35);
  pointer-events: auto;
}
.candidate-alert p { margin: 0; font-size: 15px; line-height: 1.35; }
.candidate-alert a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border-bottom: 2px solid rgba(6,26,49,.65);
  font-weight: 900;
  white-space: nowrap;
}
.candidate-alert-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(6,26,49,.32);
  background: rgba(255,255,255,.32);
  color: #061a31;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.candidate-announcement {
  background: linear-gradient(180deg, #fbf4e5, #efe4d3);
  border-top: 1px solid rgba(10,27,47,.12);
  border-bottom: 1px solid rgba(10,27,47,.12);
  padding: 50px 0;
}
.candidate-announcement-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}
.candidate-announcement-copy h2 {
  margin: 0 0 16px;
  max-width: 680px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: .98;
  letter-spacing: .01em;
  color: var(--navy);
}
.candidate-announcement-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 620px;
  color: #20344b;
  font-size: 18px;
}
.candidate-site-links {
  display: grid;
  gap: 14px;
}
.candidate-site-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 0 20px;
  background: #061a31;
  color: #fff;
  border: 1px solid rgba(6,26,49,.18);
  box-shadow: 0 18px 45px rgba(0,0,0,.13);
  font-weight: 900;
}
.candidate-site-link:hover { color: var(--yellow-2); transform: translateY(-1px); }
.candidate-site-link strong { color: var(--yellow); font-size: 24px; }
.candidate-announcement-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(10,27,47,.14);
  color: var(--muted);
  font-size: 13px;
}

.signup { position:relative; background: linear-gradient(115deg, #031427, #092644 80%); color:#fff; padding: 36px 0; }
.signup-grid { display:grid; grid-template-columns: .95fr 1.25fr; gap: 36px; align-items:center; }
.signup-heading { display:grid; grid-template-columns: 78px 1fr; gap: 18px; align-items:center; }
.mail-icon { width:64px; height:64px; border-radius:50%; border: 2px solid var(--yellow); color:var(--yellow); display:grid; place-items:center; font-size:30px; }
.signup h2 { margin:0 0 4px; font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; font-size: 34px; letter-spacing:.01em; }
.signup p { margin:0; color:rgba(255,255,255,.85); }
.signup-form { display:grid; grid-template-columns: 1fr 1.2fr .8fr auto; gap: 12px; align-items:end; }
.signup-form label span { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
.signup-form input { width:100%; height:54px; border:1px solid rgba(255,255,255,.18); border-radius:4px; padding:0 16px; font-size:16px; background:#fff; color:var(--ink); }
.signup-form .button { width: 130px; min-height:54px; border:0; }
.update-mail-fallback { display:flex; align-items:center; justify-content:flex-end; margin-top: 10px; color: rgba(255,255,255,.86); font-size: 13px; }
.update-mail-fallback a { color: var(--yellow-2); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.form-note { grid-column: 1 / -1; margin: 0; color: rgba(255,255,255,.74); font-size: 13px; }


.site-footer { background: var(--paper-2); padding: 28px 0; border-top: 1px solid rgba(0,0,0,.08); font-size: 14px; color:#1b2d40; }
.footer-grid { display:grid; grid-template-columns: 1.2fr auto; gap: 30px; align-items:center; }
.site-footer p { margin: 3px 0 0; }
.footer-note { max-width: 650px; color: var(--muted); font-size: 12px; }
.site-footer nav { display:flex; gap:24px; align-items:center; flex-wrap:wrap; justify-content:flex-end; }
.site-footer a { font-weight:700; }
.site-footer a:hover { color: var(--red); }

@media (max-width: 980px) {
  .container { width: min(100% - 36px, var(--max)); }
  .nav-links { display:none; }
  .menu-button { display:block; }
  .site-header { grid-template-columns: 1fr auto; gap: 12px; padding-inline: 18px; }
  .brand-name { font-size: 16px; max-width: 190px; white-space: normal; line-height: 1.05; }
  .brand-mark { width: 42px; height: 42px; }
  .button-small { min-height: 40px; padding: 0 14px; font-size: 13px; }
  .hero-content { grid-template-columns: 1fr; min-height: unset; padding: 36px 0 0; gap: 24px; }
  .hero::before { opacity:.24; }
  .hero::after { background: linear-gradient(180deg, rgba(2,12,24,.96) 0%, rgba(4,18,34,.86) 48%, rgba(4,18,34,.60) 100%); }
  .hero h1 { font-size: clamp(48px, 13vw, 68px); max-width: 560px; }
  .hero-poster-card { justify-self:center; width: min(100%, 520px); border:0; border-radius:0; box-shadow: none; transform:none; margin-top: 4px; }
  .hero-poster-card img { width: 100%; height: auto; max-height: none; object-fit: contain; object-position: center center; }
  .hero-buttons { flex-direction: column; gap:12px; }
  .hero-buttons .button { width:100%; }
  .bill-grid { grid-template-columns: 1fr; }
  .bill-card { grid-template-columns: 64px 1fr; padding: 16px 0; border-bottom: 1px solid rgba(10,27,47,.16); }
  .bill-card + .bill-card { border-left:0; padding-left:0; }
  .bill-icon { width:56px; height:56px; font-size: 25px; }
  .bill-card h2 { font-size: 26px; }
  .principle-grid { grid-template-columns: 1fr; gap: 0; }
  .principle { grid-template-columns: 72px 1fr auto; border-right:0; border-bottom: 1px solid rgba(255,255,255,.22); padding: 16px 0; min-height: 0; }
  .principle::after { content: "›"; font-size: 32px; color: rgba(255,255,255,.7); }
  .line-icon { width: 56px; height:56px; font-size: 28px; }
  .two-column-content { grid-template-columns: 130px 1fr; gap: 20px; align-items: start; }
  .bill-summary { grid-column: 2; }
  .poster-tile { grid-column: 1; grid-row: 1; }
  .poster-tile img { width: 130px; height: 180px; }
  .timeline-card { grid-column: 1 / -1; border-left:0; padding: 24px; border:1px solid rgba(10,27,47,.18); background:rgba(255,255,255,.34); }
  .related-grid { grid-template-columns: 1fr; }
  .signup-grid { grid-template-columns: 1fr; gap: 22px; }
  .candidate-announcement-shell { grid-template-columns: 1fr; }
  .candidate-alert-inner { grid-template-columns: 1fr auto; gap: 10px 14px; }
  .candidate-alert a { grid-column: 1; justify-self: start; }
  .candidate-alert-close { grid-column: 2; grid-row: 1 / span 2; }

  .leadership-shell { grid-template-columns: 1fr; }
  .leader-grid { grid-template-columns: 1fr; }
  .leader-card { min-height: 0; }
  .source-caution { margin-top: 0; }

  .signup-form { grid-template-columns: 1fr 1fr; }
  .signup-form .button { width:100%; }
  .footer-grid { grid-template-columns: 1fr; text-align:center; }
  .site-footer nav { justify-content:center; gap:14px 22px; }
}
@media (max-width: 560px) {
  :root { --header-h: 68px; }
  .container { width: min(100% - 28px, var(--max)); }
  .site-header { padding-inline: 14px; }
  .brand-name { max-width: 128px; font-size: 14px; }
  .brand-mark { width: 38px; height: 38px; }
  .header-actions { gap: 8px; }
  .button-small { padding: 0 12px; }
  .hero h1 { font-size: 43px; }
  .lede { font-size: 16px; }
  .supporting { font-size: 15px; }
  .bill-card h2 { font-size: 24px; }
  .principles h2 { font-size: 28px; text-align:left; }
  .two-column-section { padding: 34px 0; }
  .two-column-content { grid-template-columns: 100px 1fr; gap: 14px; }
  .poster-tile img { width:100px; height:140px; border-width:4px; }
  .bill-summary h2, .timeline-card h2, .related-law h2 { font-size: 34px; }
  .bill-summary p, .related-law p { font-size: 16px; }
  .signup-heading { grid-template-columns: 58px 1fr; }
  .mail-icon { width:50px; height:50px; font-size:24px; }
  .signup h2 { font-size: 28px; }
  .signup-form { grid-template-columns: 1fr; }
  .signup-form .button { width:100%; }
  .candidate-alert { left: 10px; right: 10px; bottom: 10px; }
  .candidate-alert-inner { padding: 12px; }
  .candidate-alert p { font-size: 14px; }
  .candidate-announcement { padding: 34px 0; }
  .candidate-announcement-copy h2 { font-size: 36px; }
  .candidate-site-link { min-height: 62px; padding: 0 16px; }
  .site-footer { padding-bottom: 20px; }
}


a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--yellow-2);
  outline-offset: 3px;
}
.policy-hero {
  background: linear-gradient(115deg, #031427, #092644 80%);
  color: #fff;
  padding: 74px 0 48px;
  border-bottom: 1px solid rgba(0,0,0,.12);
}
.policy-hero h1 {
  margin: 0;
  max-width: 840px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
  color: #fbf5e8;
}
.policy-hero p { max-width: 760px; color: rgba(255,255,255,.88); font-size: 18px; }
.policy-content { padding: 48px 0 68px; }
.policy-card {
  background: var(--paper-2);
  border: 1px solid rgba(10,27,47,.18);
  box-shadow: 0 18px 45px rgba(0,0,0,.07);
  padding: clamp(24px, 4vw, 44px);
  margin-bottom: 22px;
}
.policy-card h2 {
  margin: 0 0 12px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  color: var(--navy);
  line-height: 1.05;
}
.policy-card h3 { margin: 24px 0 8px; color: var(--navy); font-size: 20px; }
.policy-card p, .policy-card li { color: #20344b; font-size: 17px; }
.policy-card a { color: var(--red); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.source-list { display: grid; gap: 14px; }
.source-link {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid rgba(10,27,47,.18);
  background: #fffaf0;
}
.source-link strong { color: var(--navy); font-size: 20px; }
.source-link span { color: #3d4d61; }
@media (max-width: 560px) {
  .policy-hero { padding: 42px 0 32px; }
  .policy-card { padding: 22px; }
}

.contact-list { display: grid; gap: 0.7rem; margin-top: 1rem; }
.contact-list p { margin: 0; }
.footer-contact { margin-top: 0.35rem; }
.footer-contact a { color: inherit; text-decoration: underline; text-underline-offset: 0.18em; }


/* V10 Premium Finish — tokenized color, containment, and interaction polish */
html { scroll-padding-top: calc(var(--header-h) + 18px); }
body { background: linear-gradient(180deg, #fff7e8 0%, var(--paper) 18%, var(--paper) 100%); }
body::selection { background: var(--yellow-2); color: var(--ink); }

.site-header {
  background: rgba(4, 23, 43, .985);
  border-bottom-color: rgba(255, 209, 90, .13);
  box-shadow: 0 12px 38px rgba(0,0,0,.32);
  backdrop-filter: saturate(1.1) blur(10px);
}
.brand-mark { box-shadow: 0 0 0 1px rgba(255,209,90,.22), 0 10px 24px rgba(0,0,0,.26); }
.nav-links a, .rail-link, .candidate-site-link, .site-footer a, .mobile-menu a { transition: color var(--ease), background-color var(--ease), border-color var(--ease), transform var(--ease), opacity var(--ease); }
.button { border-radius: 8px; transition: transform var(--ease), filter var(--ease), box-shadow var(--ease), border-color var(--ease); box-shadow: 0 12px 30px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.35); }
.button:hover { box-shadow: 0 16px 38px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.38); }
.button-outline { border-color: rgba(255,209,90,.8); background: rgba(3, 17, 32, .62); color: var(--yellow-2); box-shadow: inset 0 0 0 1px rgba(255,209,90,.08); }
.button-outline:hover { background: rgba(255,209,90,.10); }

.hero { min-height: 640px; }
.hero::before { opacity: .26; background-position: center right; }
.hero::after { background: linear-gradient(90deg, rgba(2,12,24,.96) 0%, rgba(4,18,34,.86) 43%, rgba(4,18,34,.42) 66%, rgba(4,18,34,.24) 100%); }
.hero-content { min-height: 640px; padding-block: 76px 66px; }
.hero-poster-card { width: min(360px, 100%); border: 1px solid rgba(255,248,234,.22); box-shadow: var(--shadow-hard); }
.hero-poster-card img { max-height: 570px; }
.gold-rule { box-shadow: 0 0 0 1px rgba(255,209,90,.12), 0 0 24px rgba(243,180,20,.22); }

.bill-strip, .two-column-section, .candidate-announcement, .site-footer { background-color: var(--paper-2); }
.bill-card { min-width: 0; }
.bill-card h2, .bill-summary h2, .timeline-card h2, .related-law h2, .leadership-copy h2, .candidate-announcement-copy h2, .policy-hero h1, .policy-card h2 { text-wrap: balance; }
.status { border-radius: 5px; box-shadow: inset 0 1px 0 rgba(255,255,255,.28); }
.principles { background: radial-gradient(circle at 78% 10%, rgba(243,180,20,.10), transparent 32%), linear-gradient(115deg, #031120, #082744 80%); }
.principle { min-width: 0; }
.line-icon { border-radius: 12px; box-shadow: inset 0 0 0 1px rgba(255,209,90,.18); }

.related-law { background: linear-gradient(180deg, #f4ebdc, #efe2d0); }
.related-card, .policy-card, .timeline-card { box-shadow: var(--shadow-soft); }
.leadership-context { background: radial-gradient(circle at 84% 14%, rgba(243,180,20,.14), transparent 30%), linear-gradient(115deg, #031120, #082744 78%); }
.leader-card { border-radius: 10px; box-shadow: 0 20px 55px rgba(0,0,0,.22); }
.leader-card-alt { background: linear-gradient(180deg, #ffd15a, #f3b414); }

.candidate-alert { bottom: 22px; }
.candidate-alert-inner {
  width: min(100%, 920px);
  border-radius: 10px;
  background: linear-gradient(180deg, #ffd15a, #f3b414);
  box-shadow: 0 20px 58px rgba(0,0,0,.36);
}
.candidate-alert a { border-bottom-color: rgba(6,24,45,.55); }
.candidate-alert a:hover { transform: translateX(2px); }
.candidate-alert-close { border-radius: 8px; }
.candidate-announcement {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(243,180,20,.20), transparent 30%),
    linear-gradient(180deg, #fff7e8, #f4ebdc);
}
.candidate-announcement::before {
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--yellow), transparent 72%);
}
.candidate-announcement-shell {
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, .72fr);
  align-items: stretch;
}
.candidate-announcement-copy { align-self: center; min-width: 0; }
.candidate-announcement-copy h2 { max-width: 760px; }
.candidate-site-links { min-width: 0; align-self: center; }
.candidate-site-link {
  min-width: 0;
  min-height: 68px;
  border-radius: 10px;
  background: linear-gradient(180deg, #061b33, #031120);
  border-color: rgba(255,209,90,.16);
  box-shadow: 0 16px 40px rgba(0,0,0,.15);
}
.candidate-site-link span { min-width: 0; overflow-wrap: anywhere; }
.candidate-site-link strong { color: var(--yellow-2); }
.candidate-site-link:hover { transform: translateY(-1px); border-color: rgba(255,209,90,.36); }
.candidate-announcement-note { color: #564f46; }

.signup { background: radial-gradient(circle at 86% 12%, rgba(243,180,20,.10), transparent 28%), linear-gradient(115deg, #031120, #082744 80%); }
.signup-form input { border-radius: 8px; border-color: rgba(255,255,255,.28); box-shadow: inset 0 1px 0 rgba(0,0,0,.04); }
.signup-form input::placeholder { color: #6d7480; }
.signup-form input:focus { border-color: var(--yellow-2); }
.site-footer { background: #fff8ea; }
.footer-grid { align-items: start; }

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-content { min-height: auto; padding-block: 38px 0; }
  .hero-poster-card { width: min(100%, 500px); }
  .candidate-announcement-shell { grid-template-columns: 1fr; }
  .candidate-site-links { max-width: 680px; }
}
@media (max-width: 560px) {
  .candidate-alert { left: 8px; right: 8px; bottom: 8px; }
  .candidate-alert-inner { border-radius: 9px; }
  .candidate-announcement-copy h2 { font-size: 34px; }
  .candidate-site-link { min-height: 60px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* V11 Editorial Typography Pass — Newsreader + Libre Franklin */
:root {
  --font-editorial: "Newsreader", Georgia, "Times New Roman", serif;
  --font-system: "Libre Franklin", Arial, Helvetica, sans-serif;
  --letter-tight: -0.052em;
  --letter-body: -0.012em;
}
body {
  font-family: var(--font-system);
  font-size: 16.5px;
  line-height: 1.56;
  letter-spacing: var(--letter-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.brand-name,
.nav-links,
.button,
.status,
.eyebrow,
.section-kicker,
.mobile-menu a,
.rail-link,
.candidate-site-link,
.candidate-alert,
.leader-label,
.signup-form input,
.site-footer,
.source-link,
.policy-card h3,
.line-icon {
  font-family: var(--font-system);
}
.brand-name {
  font-weight: 800;
  letter-spacing: -0.035em;
  font-size: 18px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,247,232,.04);
}
.nav-links { font-size: 14px; letter-spacing: -0.02em; }
.button {
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: none;
}
.hero h1,
.principles h2,
.bill-summary h2,
.timeline-card h2,
.related-law h2,
.leadership-copy h2,
.candidate-announcement-copy h2,
.policy-hero h1,
.policy-card h2 {
  font-family: var(--font-editorial);
  font-weight: 800;
  letter-spacing: var(--letter-tight);
  font-optical-sizing: auto;
}
.hero h1 {
  max-width: 720px;
  font-size: clamp(58px, 7.4vw, 100px);
  line-height: .90;
}
.lede {
  font-family: var(--font-editorial);
  font-size: clamp(20px, 2.05vw, 24px);
  line-height: 1.34;
  letter-spacing: -0.028em;
}
.supporting {
  font-size: 16.5px;
  line-height: 1.58;
  letter-spacing: -0.015em;
}
.bill-card h2,
.principle h3,
.related-card strong,
.leader-card h3,
.signup h2 {
  font-family: var(--font-editorial);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: .96;
}
.bill-card h2 { font-size: 34px; }
.principles h2 { font-size: clamp(34px, 3.7vw, 48px); }
.principle h3 { font-size: 27px; }
.bill-summary h2,
.timeline-card h2,
.related-law h2 { font-size: clamp(44px, 4.4vw, 62px); }
.policy-card h2 { font-size: clamp(34px, 4.2vw, 48px); }
.policy-card p,
.policy-card li,
.bill-summary p,
.related-law p,
.candidate-announcement-copy p:not(.eyebrow),
.leadership-copy p {
  line-height: 1.58;
  letter-spacing: -0.018em;
}
.candidate-announcement-copy h2 {
  font-size: clamp(48px, 5.8vw, 78px);
  line-height: .89;
  max-width: 820px;
}
.candidate-announcement .eyebrow {
  letter-spacing: .18em;
}
.candidate-site-link span {
  font-size: 15px;
  letter-spacing: -0.02em;
}
.candidate-site-link strong {
  font-family: var(--font-editorial);
  font-weight: 800;
}
.site-footer { letter-spacing: -0.01em; }
.source-link strong { font-family: var(--font-editorial); letter-spacing: -0.035em; }

@media (max-width: 980px) {
  .brand-name { font-size: 15px; line-height: 1.03; }
  .hero h1 { font-size: clamp(50px, 13vw, 76px); line-height: .91; }
  .candidate-announcement-copy h2 { font-size: clamp(40px, 10vw, 62px); }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-name { max-width: 132px; font-size: 13.5px; }
  .hero h1 { font-size: 44px; line-height: .93; letter-spacing: -0.05em; }
  .lede { font-size: 18px; }
  .bill-card h2 { font-size: 27px; }
  .principles h2 { font-size: 31px; }
  .bill-summary h2,
  .timeline-card h2,
  .related-law h2 { font-size: 37px; }
  .candidate-announcement-copy h2 { font-size: 39px; }
}


/* V12 Surface Repair — Lucide inline icons, true lazyload attributes, cleaner paper */
:root {
  --paper: #fbfaf6;
  --paper-2: #ffffff;
  --paper-soft: #f7f5ee;
  --line: rgba(6,24,45,.16);
  --muted: #4e5863;
}
body {
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 22%, var(--paper) 100%);
}
.bill-strip,
.two-column-section,
.candidate-announcement,
.site-footer,
.policy-card,
.related-card,
.source-link {
  background-color: var(--paper-2);
}
.bill-strip {
  background: linear-gradient(180deg, #ffffff, #fbfaf6);
}
.related-law,
.related-law.v12-clean,
.candidate-announcement {
  background: linear-gradient(180deg, #ffffff, #fbfaf6);
}
.site-footer {
  background: #ffffff;
}
.timeline li::before {
  box-shadow: 0 0 0 4px #ffffff;
}

.principles {
  padding: clamp(34px, 4.8vw, 54px) 0;
  background:
    radial-gradient(circle at 86% 8%, rgba(243,180,20,.08), transparent 30%),
    linear-gradient(115deg, #031120, #082744 78%);
}
.principles h2 {
  max-width: 900px;
  margin: 0 auto clamp(24px, 3vw, 34px);
  color: #fffdf8;
  text-align: center;
  letter-spacing: -0.052em;
}
.principle-grid {
  gap: clamp(20px, 3vw, 42px);
}
.principle {
  grid-template-columns: 52px 1fr;
  gap: 18px;
  min-height: 0;
  padding: 4px clamp(18px, 2.5vw, 32px);
  align-items: start;
  border-right: 1px solid rgba(255,255,255,.18);
}
.principle:last-child { border-right: 0; }
.line-icon {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  display: block;
  color: var(--yellow-2);
  box-shadow: none;
  transform: translateY(2px);
}
.line-icon svg {
  display: block;
  width: 44px;
  height: 44px;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.line-icon svg rect { fill: none; }
.principle h3 {
  margin-bottom: 8px;
  font-family: var(--font-system);
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #fffdf8;
}
.principle p {
  max-width: 310px;
  font-size: 15px;
  line-height: 1.48;
  color: rgba(255,255,255,.80);
}

/* Keep the candidate and policy pages crisp white, not khaki. */
.policy-content,
.two-column-section,
.candidate-announcement {
  background: #ffffff;
}
.policy-card,
.timeline-card {
  background: #ffffff;
}
.poster-tile img {
  background: #071a31;
}

@media (max-width: 980px) {
  .principles {
    padding: 30px 0 28px;
  }
  .principles h2 {
    text-align: left;
    margin-bottom: 18px;
    font-size: clamp(29px, 7vw, 40px);
  }
  .principle-grid {
    gap: 0;
  }
  .principle {
    grid-template-columns: 40px 1fr;
    gap: 15px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }
  .principle::after { content: none; }
  .line-icon,
  .line-icon svg {
    width: 34px;
    height: 34px;
  }
  .principle h3 {
    font-size: 20px;
  }
  .principle p {
    max-width: 100%;
    font-size: 14px;
  }
}
@media (max-width: 560px) {
  .principles {
    padding: 26px 0 24px;
  }
  .principles h2 {
    font-size: 28px;
    line-height: 1.04;
  }
  .principle {
    padding: 12px 0;
  }
  .line-icon,
  .line-icon svg {
    width: 30px;
    height: 30px;
  }
  .principle h3 {
    font-size: 19px;
    margin-bottom: 3px;
  }
  .principle p {
    font-size: 13.5px;
    line-height: 1.42;
  }
}


/* V13 Weight/Dedup Audit — removed unused public assets, replaced heavy header badge, CSS-only hero texture. */


/* V15 Performance + indexability patch: async font stylesheet, smaller image variants, no Google @import render chain. */
.poster-tile picture { display: block; }
.hero-poster-card img { aspect-ratio: 4 / 5; }
.poster-tile img { aspect-ratio: 420 / 747; }
@media (max-width: 560px) {
  .hero-poster-card img { content-visibility: auto; }
}


/* V16 Email endpoint lock: accessible status and honeypot field. */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.signup-form button[disabled] {
  cursor: wait;
  opacity: .72;
}
.form-status {
  grid-column: 1 / -1;
  min-height: 1.2em;
  margin: -2px 0 0;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
  color: rgba(255,255,255,.82);
}
.form-status[data-state="success"] { color: #ffffff; }
.form-status[data-state="error"] { color: #ffd66b; }
.form-status[data-state="pending"] { color: rgba(255,255,255,.74); }


/* V19 Candidate Slate Banner — red/white/blue vote-for-two campaign treatment. */
:root {
  --flag-blue: #082a52;
  --flag-blue-deep: #041a33;
  --flag-red: #b31942;
  --flag-red-deep: #8f1736;
  --flag-white: #fffaf1;
}
.candidate-alert-vote { bottom: 20px; }
.candidate-alert-vote .candidate-alert-inner {
  width: min(100%, 1040px);
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: clamp(12px, 2vw, 22px);
  padding: 14px 18px;
  color: var(--flag-white);
  background:
    linear-gradient(90deg, rgba(255,255,255,.20) 0 1px, transparent 1px 100%),
    linear-gradient(135deg, var(--flag-blue-deep) 0%, var(--flag-blue) 52%, var(--flag-red) 52%, var(--flag-red-deep) 100%);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 14px;
  box-shadow: 0 22px 64px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.22);
}
.candidate-alert-vote .candidate-alert-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.10), transparent 42%);
}
.candidate-alert-kicker {
  position: relative;
  z-index: 1;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  background: var(--flag-white);
  color: var(--flag-blue-deep);
  border-left: 6px solid var(--flag-red);
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}
.candidate-alert-vote p {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.22;
  letter-spacing: -0.035em;
}
.candidate-alert-vote p strong {
  color: #fff;
  font-family: var(--font-editorial);
  font-size: clamp(22px, 2.35vw, 32px);
  line-height: .95;
  letter-spacing: -0.052em;
}
.candidate-alert-vote .candidate-alert-cta {
  position: relative;
  z-index: 1;
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--flag-blue-deep);
  background: var(--flag-white);
  border: 0;
  border-bottom: 4px solid var(--flag-red);
  font-weight: 1000;
  letter-spacing: -0.035em;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}
.candidate-alert-vote .candidate-alert-cta:hover {
  transform: translateY(-1px);
  color: var(--flag-red-deep);
}
.candidate-alert-vote .candidate-alert-close {
  position: relative;
  z-index: 1;
  border-color: rgba(255,255,255,.40);
  background: rgba(255,255,255,.10);
  color: #fff;
}
.candidate-alert-vote .candidate-alert-close:hover { background: rgba(255,255,255,.18); }
.candidate-announcement {
  background:
    linear-gradient(90deg, rgba(179,25,66,.08), transparent 25%, rgba(8,42,82,.08)),
    linear-gradient(180deg, #ffffff, #f7f9fc);
}
.candidate-announcement::before {
  height: 7px;
  background: linear-gradient(90deg, var(--flag-red) 0 33%, #fff 33% 36%, var(--flag-blue) 36% 66%, #fff 66% 69%, var(--flag-red) 69% 100%);
}
.candidate-announcement .eyebrow { color: var(--flag-red); }
.candidate-slate-panel {
  padding: 14px;
  background: linear-gradient(180deg, var(--flag-blue-deep), var(--flag-blue));
  border: 1px solid rgba(8,42,82,.18);
  border-top: 7px solid var(--flag-red);
  box-shadow: 0 18px 48px rgba(8,42,82,.18);
}
.candidate-slate-card {
  min-height: 74px;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 16px 18px;
  background: #fff;
  color: var(--flag-blue-deep);
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.70);
  box-shadow: none;
  transform: none !important;
}
.candidate-slate-card span {
  font-family: var(--font-editorial);
  font-size: clamp(27px, 3vw, 38px);
  line-height: .92;
  letter-spacing: -0.055em;
  font-weight: 900;
}
.candidate-slate-card strong {
  font-family: var(--font-system);
  color: var(--flag-red);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.candidate-announcement-note { color: #35455a; }
@media (max-width: 760px) {
  .candidate-alert-vote .candidate-alert-inner {
    grid-template-columns: 1fr auto;
    padding: 14px;
  }
  .candidate-alert-kicker { grid-column: 1 / 2; width: fit-content; min-height: 34px; }
  .candidate-alert-vote p { grid-column: 1 / -1; }
  .candidate-alert-vote .candidate-alert-cta { grid-column: 1 / 2; width: 100%; justify-content: center; }
  .candidate-alert-vote .candidate-alert-close { grid-column: 2 / 3; grid-row: 1 / 2; }
}
@media (max-width: 460px) {
  .candidate-alert-vote { left: 8px; right: 8px; bottom: 8px; }
  .candidate-alert-vote .candidate-alert-inner { gap: 10px; }
  .candidate-alert-vote p strong { display: block; margin-bottom: 2px; }
  .candidate-alert-vote .candidate-alert-cta { min-height: 44px; font-size: 14px; }
}


/* V21 FAQ terminology lock */
.related-single { max-width: 860px; }
.related-single h2 { max-width: 760px; }
.related-single p { max-width: 760px; }
.faq-section { padding: clamp(64px, 8vw, 108px) 0; background: #fff; border-top: 1px solid rgba(6, 26, 49, .1); }
.faq-shell { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(320px, 1.35fr); gap: clamp(32px, 6vw, 92px); align-items: start; }
.faq-intro h2 { margin: 0 0 18px; font-family: Newsreader, Georgia, serif; font-size: clamp(44px, 5.8vw, 84px); line-height: .9; letter-spacing: -.055em; color: var(--navy); text-wrap: balance; }
.faq-intro p { margin: 0; max-width: 420px; color: #3a5068; font-size: 17px; line-height: 1.65; }
.faq-list { border-top: 1px solid rgba(6, 26, 49, .18); }
.faq-item { border-bottom: 1px solid rgba(6, 26, 49, .18); padding: 22px 0; }
.faq-item summary { cursor: pointer; list-style: none; font-family: 'Libre Franklin', Arial, sans-serif; font-size: clamp(18px, 2.1vw, 24px); font-weight: 900; line-height: 1.25; color: var(--navy); display: flex; justify-content: space-between; gap: 20px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; flex: 0 0 auto; color: var(--red); font-weight: 900; }
.faq-item[open] summary::after { content: '–'; }
.faq-item p { margin: 16px 0 0; max-width: 760px; font-size: 17px; line-height: 1.7; color: #2b4058; }
@media (max-width: 820px) {
  .faq-shell { grid-template-columns: 1fr; gap: 28px; }
  .faq-item { padding: 18px 0; }
  .faq-item p { font-size: 16px; }
}

/* V23 Mobile Render Lock — compact slate, no horizontal overflow, mobile-safe fixed CTA. */
@media (max-width: 820px) {
  .candidate-announcement {
    padding: 42px 0 44px;
  }
  .candidate-announcement-shell {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .candidate-announcement-copy h2 {
    max-width: 100%;
    font-size: clamp(38px, 11.5vw, 58px);
    line-height: .91;
    letter-spacing: -0.058em;
    text-wrap: balance;
    overflow-wrap: normal;
  }
  .candidate-announcement-copy p:not(.eyebrow) {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.55;
  }
  .candidate-slate-panel {
    width: 100%;
    padding: 10px;
    border-top-width: 5px;
  }
  .candidate-slate-card {
    min-height: 66px;
    padding: 14px 16px;
  }
  .candidate-slate-card span {
    font-size: clamp(29px, 8.7vw, 42px);
    line-height: .94;
    overflow-wrap: break-word;
  }
  .candidate-slate-card strong {
    font-size: 11px;
    letter-spacing: .105em;
  }
  .candidate-announcement-note {
    padding-top: 14px;
    font-size: 13.5px;
    line-height: 1.5;
  }
}
@media (max-width: 560px) {
  .candidate-alert-vote {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
  .candidate-alert-vote .candidate-alert-inner {
    max-width: calc(100vw - 16px);
    grid-template-columns: 1fr 38px;
    gap: 8px;
    padding: 10px;
    border-radius: 12px;
    overflow: hidden;
  }
  .candidate-alert-kicker {
    min-height: 30px;
    padding: 0 10px;
    border-left-width: 4px;
    font-size: 10.5px;
    letter-spacing: .07em;
  }
  .candidate-alert-vote p {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 13.5px;
    line-height: 1.28;
    letter-spacing: -0.02em;
  }
  .candidate-alert-vote p strong {
    display: block;
    margin-bottom: 2px;
    font-size: 23px;
    line-height: .95;
  }
  .candidate-alert-vote .candidate-alert-cta {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 42px;
    justify-content: center;
    white-space: normal;
    text-align: center;
    font-size: 14px;
    line-height: 1.1;
  }
  .candidate-alert-vote .candidate-alert-close {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
  .candidate-announcement {
    padding: 36px 0 38px;
  }
  .candidate-announcement-copy h2 {
    font-size: clamp(36px, 12vw, 44px);
    line-height: .92;
  }
  .candidate-announcement-copy p:not(.eyebrow) {
    font-size: 15.5px;
  }
  .candidate-slate-panel {
    box-shadow: 0 14px 34px rgba(8,42,82,.14);
  }
  .candidate-slate-card {
    min-height: 60px;
    padding: 13px 14px;
  }
  .candidate-slate-card span {
    font-size: clamp(28px, 9.5vw, 36px);
  }
  .faq-section {
    padding: 46px 0 56px;
  }
  .faq-intro h2 {
    font-size: 40px;
    line-height: .94;
  }
  .faq-item summary {
    font-size: 17px;
    gap: 14px;
  }
}

/* V24 public media rail */
.media-record {
  position: relative;
  background: linear-gradient(180deg, #fbfaf6 0%, #ffffff 100%);
  border-top: 1px solid rgba(6, 26, 49, .10);
  border-bottom: 1px solid rgba(6, 26, 49, .10);
  padding: clamp(48px, 6vw, 82px) 0;
}
.media-record-shell {
  display: grid;
  grid-template-columns: minmax(260px, .86fr) minmax(0, 1.8fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: start;
}
.media-record-copy h2 {
  margin: 0 0 16px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  color: var(--navy);
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: .98;
  letter-spacing: .006em;
  text-wrap: balance;
}
.media-record-copy p:not(.eyebrow) {
  margin: 0;
  color: #24374d;
  font-size: 17px;
  line-height: 1.55;
  max-width: 34rem;
}
.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, .72fr);
  gap: 16px;
}
.media-card {
  background: #fff;
  border: 1px solid rgba(6, 26, 49, .16);
  box-shadow: 0 18px 44px rgba(6, 26, 49, .10);
  padding: 16px;
}
.media-card-wide { grid-row: span 2; }
.media-card-audio {
  grid-column: 2;
  display: grid;
  gap: 14px;
  align-content: start;
}
.media-card-square { grid-column: 2; }
.media-card-meta span {
  display: inline-block;
  margin: 0 0 8px;
  color: var(--red);
  font-family: 'Libre Franklin', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 900;
}
.media-card-meta h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: 'Libre Franklin', system-ui, sans-serif;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.05;
}
.media-card-meta p {
  margin: 0;
  color: #263a4f;
  font-size: 14px;
  line-height: 1.48;
}
.media-card audio {
  width: 100%;
  min-height: 42px;
}
.media-frame {
  background: #061a31;
  border: 1px solid rgba(6, 26, 49, .22);
  overflow: hidden;
  margin-bottom: 14px;
}
.media-frame video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  background: #061a31;
}
.media-frame-square video { max-height: 220px; object-fit: contain; }
.media-transcript {
  margin-top: 12px;
  border-top: 1px solid rgba(6, 26, 49, .12);
  padding-top: 10px;
}
.media-transcript summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
  font-size: 13px;
}
.media-transcript p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #33485e;
}
@media (max-width: 900px) {
  .media-record-shell { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .media-card,
  .media-card-audio,
  .media-card-square,
  .media-card-wide { grid-column: auto; grid-row: auto; }
  .media-frame video { max-height: 240px; }
  .media-frame-square video { max-height: 220px; }
}
@media (max-width: 520px) {
  .media-record { padding: 34px 0 42px; }
  .media-record-copy h2 { font-size: 32px; }
  .media-record-copy p:not(.eyebrow) { font-size: 15px; }
  .media-card { padding: 12px; box-shadow: 0 10px 28px rgba(6, 26, 49, .10); }
  .media-frame video { max-height: 210px; }
}


/* V25 media archive and symmetrical record rail */
.media-record-v25 { background: linear-gradient(180deg, #fbfaf6 0%, #ffffff 100%); }
.media-record-v25-shell { display: grid; grid-template-columns: minmax(240px, .72fr) minmax(0, 1.88fr); gap: clamp(24px, 3.8vw, 52px); align-items: start; }
.media-record-copy-v25 { position: sticky; top: 96px; }
.media-feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.media-feature-card, .archive-media-card { background: #fff; border: 1px solid rgba(6, 26, 49, .15); box-shadow: 0 16px 38px rgba(6, 26, 49, .09); padding: 14px; display: grid; gap: 12px; min-width: 0; }
.media-frame-compact { margin: 0; aspect-ratio: 16 / 10; display: flex; align-items: center; justify-content: center; }
.media-frame-compact video { width: 100%; height: 100%; max-height: none; object-fit: contain; }
.media-feature-card-audio audio, .archive-media-card audio { width: 100%; }
.media-poster, .archive-media-poster { background: #061a31; border: 1px solid rgba(6, 26, 49, .18); overflow: hidden; aspect-ratio: 16 / 10; }
.media-poster img, .archive-media-poster img { display: block; width: 100%; height: 100%; object-fit: cover; }
.media-archive-callout { grid-column: 2; margin-top: 18px; border: 1px solid rgba(6, 26, 49, .14); background: linear-gradient(90deg, rgba(6, 26, 49, .04), rgba(191, 42, 58, .06)); padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.media-archive-callout p { margin: 0; color: #24374d; line-height: 1.4; }
.media-archive-section { padding: clamp(46px, 6vw, 82px) 0; background: #fbfaf6; }
.archive-section-head { max-width: 760px; margin-bottom: 24px; }
.archive-section-head h2 { margin: 0 0 10px; font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; color: var(--navy); font-size: clamp(36px, 4vw, 58px); line-height: .95; }
.archive-section-head p { margin: 0; color: #31465a; line-height: 1.55; }
.archive-media-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.media-archive-callout-bottom { grid-column: auto; margin-top: 24px; }
@media (max-width: 1040px) { .media-record-v25-shell { grid-template-columns: 1fr; } .media-record-copy-v25 { position: static; } .media-archive-callout { grid-column: auto; } .archive-media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px) { .media-feature-grid, .archive-media-grid { grid-template-columns: 1fr; } .media-archive-callout { align-items: stretch; flex-direction: column; } .media-feature-card, .archive-media-card { padding: 12px; } .media-frame-compact, .media-poster, .archive-media-poster { aspect-ratio: 16 / 9; } }


/* V26 Lighthouse media stability lock */
.media-frame,
.media-frame-compact,
.media-poster,
.archive-media-poster {
  aspect-ratio: 16 / 9;
  min-height: 0;
  contain: layout paint;
}
.media-frame video,
.media-frame-compact video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  background: #061a31;
}
.media-feature-card audio,
.archive-media-card audio {
  min-height: 42px;
  display: block;
}
.archive-media-card,
.media-feature-card {
  align-content: start;
}
.media-transcript {
  overflow-anchor: none;
}
@media (max-width: 680px) {
  .archive-section-head { margin-bottom: 18px; }
  .archive-media-grid { gap: 14px; }
  .archive-media-card { min-height: auto; }
}
