:root {
  --ink: #172033;
  --paper: #f7f8fa;
  --surface: #ffffff;
  --line: #cbd5e1;
  --ballot: #a62c2b;
  --reps: #087e73;
  --quiz: #4338ca;
  --accent: #f2c14e;
  --muted: #526072;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image: radial-gradient(#cbd5e1 0.75px, transparent 0.75px);
  background-size: 18px 18px;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.shell { width: min(1100px, calc(100% - 32px)); margin: 0 auto; }
.site-header { background: var(--surface); border-bottom: 3px solid var(--ink); }
.site-header .shell { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { font: 800 19px/1.1 "Playfair Display", serif; text-decoration: none; }
nav { display: flex; flex-wrap: wrap; gap: 16px; font-size: 12px; font-weight: 800; }
nav a { text-underline-offset: 4px; }
.hero { padding: 64px 0 44px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.88); }
.eyebrow { margin: 0 0 10px; color: var(--theme); font-size: 12px; font-weight: 800; text-transform: uppercase; }
h1, h2 { font-family: "Playfair Display", serif; letter-spacing: 0; }
h1 { max-width: 850px; margin: 0; font-size: clamp(42px, 8vw, 82px); line-height: .98; }
.dek { max-width: 760px; margin: 22px 0 0; color: var(--muted); font: 500 19px/1.65 Lora, serif; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 28px; }
.button { display: inline-flex; min-height: 50px; align-items: center; padding: 12px 20px; background: var(--theme); color: #fff; font-size: 12px; font-weight: 800; text-decoration: none; text-transform: uppercase; }
.text-link { font-size: 13px; font-weight: 800; text-underline-offset: 4px; }
.proof { padding: 42px 0 72px; }
.grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr); gap: 28px; align-items: start; }
.panel { background: var(--surface); border: 1px solid var(--line); border-top: 5px solid var(--theme); padding: 28px; }
.panel h2 { margin: 0 0 14px; font-size: 30px; line-height: 1.12; }
.panel p { color: var(--muted); }
.steps { display: grid; gap: 1px; margin: 22px 0 0; padding: 1px; background: var(--line); list-style: none; counter-reset: steps; }
.steps li { counter-increment: steps; background: #fff; padding: 18px; }
.steps li::before { content: "0" counter(steps); display: block; margin-bottom: 4px; color: var(--theme); font-size: 11px; font-weight: 800; }
.steps strong { display: block; }
.note { background: var(--ink); color: #fff; padding: 24px; }
.note h2 { color: var(--accent); font-size: 22px; }
.note p { color: #dbe3ee; font-size: 14px; }
.faq { margin-top: 28px; }
.faq details { border-top: 1px solid var(--line); background: rgba(255,255,255,.9); padding: 17px 20px; }
.faq summary { cursor: pointer; font-weight: 800; }
.faq p { color: var(--muted); }
footer { border-top: 3px solid var(--ink); background: #fff; padding: 28px 0; font-size: 12px; }
footer .shell { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; }
.ballot { --theme: var(--ballot); }
.representatives { --theme: var(--reps); }
.quiz { --theme: var(--quiz); }

@media (max-width: 760px) {
  .site-header .shell { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  .hero { padding-top: 44px; }
  .grid { grid-template-columns: 1fr; }
  .panel { padding: 22px; }
}