/* Virginia Bill Watch
   Hand-built design system. No frameworks, no templates.
   Ink and parchment, capitol brass, and the roll call in green and red. */

:root {
  /* surfaces */
  --navy:     #0d1420;
  --navy-2:   #131c2a;
  --paper:    #faf8f4;
  --panel:    #ffffff;
  --panel-2:  #f4f1ea;

  /* ink */
  --ink:      #12161d;
  --ink-2:    #333c49;
  --muted:    #5d6672;
  --on-dark:  #eef1f6;
  --muted-d:  #a3adbd;

  /* lines */
  --line:     #e4dfd4;
  --line-2:   #efebe3;
  --line-d:   rgba(255,255,255,0.13);

  /* accent */
  --brass:    #c8a04a;
  --brass-lo: #e9d9ac;
  --brass-ink:#7d5d16;

  /* the vote */
  --yea:      #3a7a5a;
  --nay:      #a8443a;

  --measure:  66ch;
  --maxw:     1160px;
  --r:        14px;
  --r-sm:     8px;
  --ease:     cubic-bezier(.22,.61,.36,1);
  --head-h:   70px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.display, h1, h2, h3, .wordmark, .price, .stat b, .step-n, .pledge-quote {
  font-family: "Instrument Serif", "Source Serif 4", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.012em;
}

h1 { font-size: clamp(2.7rem, 6.1vw, 4.5rem); line-height: 1.02; margin: 0 0 0.32em; }
h2 { font-size: clamp(1.95rem, 3.5vw, 2.7rem); line-height: 1.1;  margin: 0 0 0.5em; }
h3 { font-size: 1.34rem; line-height: 1.25; margin: 0 0 0.4em; }

p, ul, ol { max-width: var(--measure); }
p { margin: 0 0 1.15em; }

a { color: var(--brass-ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color .2s var(--ease); }
a:hover { color: var(--ink); }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 3px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.narrow { max-width: 760px; }

.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: Inter, sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.17em; text-transform: uppercase;
  color: var(--brass-ink);
  margin: 0 0 1.1em;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--brass); flex: none; }
.on-dark .eyebrow, .hero .eyebrow, .pagehead .eyebrow { color: var(--brass); }

.lede { font-size: 1.2rem; line-height: 1.55; color: var(--muted); max-width: 54ch; }
.hero .lede, .pagehead .lede { color: var(--muted-d); }

/* ============ header ============ */

.site-head {
  position: sticky; top: 0; z-index: 60;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.site-head .wrap {
  height: var(--head-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.site-head.is-stuck {
  background: rgba(250,248,244,0.88);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -26px rgba(18,22,29,.5);
}

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: #fff; transition: color .35s var(--ease); }
.site-head.is-stuck .brand { color: var(--ink); }
.brand:hover { color: inherit; }
.brand svg { display: block; flex: none; }
.wordmark { margin: 0; font-size: 1.16rem; letter-spacing: 0.055em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 26px; font-size: 0.93rem; }
.site-nav a { color: rgba(255,255,255,0.74); text-decoration: none; position: relative; padding: 4px 0; transition: color .25s var(--ease); }
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--brass); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.site-nav a:hover { color: #fff; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav a[aria-current="page"] { color: #fff; }
.site-head.is-stuck .site-nav a { color: var(--muted); }
.site-head.is-stuck .site-nav a:hover,
.site-head.is-stuck .site-nav a[aria-current="page"] { color: var(--ink); }
.site-nav .nav-cta {
  border: 1px solid rgba(255,255,255,0.28); border-radius: 100px; padding: 7px 16px; color: #fff;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.site-nav .nav-cta::after { display: none; }
.site-nav .nav-cta:hover { background: var(--brass); border-color: var(--brass); color: #1c1406; }
.site-head.is-stuck .nav-cta { border-color: var(--line); color: var(--ink); }
.site-head.is-stuck .nav-cta:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }

/* ============ dark bands ============ */

.hero, .pagehead, .band--dark, .site-foot {
  background: var(--navy);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
}
.hero::before, .pagehead::before, .band--dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 520px at 82% 6%, rgba(200,160,74,0.16), transparent 62%),
    radial-gradient(700px 460px at 6% 96%, rgba(80,120,180,0.14), transparent 66%);
}
.hero::after, .pagehead::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 74px 74px;
  -webkit-mask-image: radial-gradient(80% 70% at 50% 30%, #000, transparent 78%);
  mask-image: radial-gradient(80% 70% at 50% 30%, #000, transparent 78%);
}
.hero .wrap, .pagehead .wrap, .band--dark .wrap { position: relative; z-index: 1; }
.hero h1, .pagehead h1, .band--dark h2 { color: #fff; }

.hero { padding: calc(var(--head-h) + 54px) 0 88px; margin-top: calc(var(--head-h) * -1); }
.pagehead { padding: calc(var(--head-h) + 52px) 0 62px; margin-top: calc(var(--head-h) * -1); }
.pagehead h1 { max-width: 20ch; }

.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 60px; align-items: center; }
.hero h1 { max-width: 15ch; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 22px; }

.button {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brass); color: #1c1406;
  padding: 14px 24px; border-radius: 100px;
  font-size: 0.97rem; font-weight: 600; text-decoration: none;
  border: 1px solid var(--brass);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.button:hover { background: #d9b463; color: #1c1406; transform: translateY(-2px); box-shadow: 0 14px 28px -16px rgba(200,160,74,.75); }
.button svg { transition: transform .25s var(--ease); }
.button:hover svg { transform: translateX(3px); }
.button--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.button--ghost:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.55); box-shadow: none; }
.button--ink { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.button--ink:hover { background: var(--brass-ink); border-color: var(--brass-ink); color: #fff; box-shadow: 0 14px 28px -18px rgba(18,22,29,.8); }

.countdown {
  font-size: 0.9rem; color: var(--muted-d);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.countdown .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brass); flex: none; box-shadow: 0 0 0 4px rgba(200,160,74,.18); }
.countdown b { color: #fff; font-weight: 600; font-variant-numeric: tabular-nums; }
.countdown-days::before { content: "\00B7"; margin-right: 8px; opacity: .55; }

.countdown--big { margin-top: 30px; align-items: center; }
.countdown--big .countdown-days { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.countdown--big .countdown-days::before { display: none; }
.tick-cell { display: flex; flex-direction: column; align-items: center; min-width: 2.1em; }
.tick-cell b {
  font-family: "Instrument Serif", "Source Serif 4", Georgia, "Times New Roman", serif;
  font-weight: 400; font-size: clamp(2rem, 3.4vw, 2.9rem); line-height: 1;
}
.tick-cell i { font-style: normal; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-d); margin-top: 5px; }
.tick-sep { color: var(--brass); opacity: 0.55; font-size: 1.5rem; align-self: flex-start; line-height: 1.6; }
.countdown--big .tick-caption { font-size: 0.88rem; line-height: 1.45; margin-left: 6px; }

/* ============ the vote card (signature) ============ */

.votecard {
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--line-d);
  border-radius: var(--r);
  padding: 24px 24px 20px;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: 0 40px 80px -50px rgba(0,0,0,.9);
}
.votecard-head { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; border-bottom: 1px solid var(--line-d); padding-bottom: 13px; margin-bottom: 20px; }
.votecard-head strong { font-size: 0.98rem; color: #fff; font-weight: 600; white-space: nowrap; }
.votecard-head span { font-size: 0.76rem; color: var(--muted-d); letter-spacing: .04em; }

.vote-block + .vote-block { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-d); }
.vote-block .vb-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 11px; }
.vote-block .vb-where { font-size: 0.82rem; color: var(--muted-d); }
.vote-block .vb-tally { font-size: 1.04rem; font-weight: 600; color: #fff; font-variant-numeric: tabular-nums; letter-spacing: .01em; }
.vote-block.is-decisive .vb-tally { color: var(--brass); }

.wall { --sq: 20px; display: grid; gap: 3px; width: -moz-fit-content; width: fit-content; }
.wall i {
  display: block; width: var(--sq); height: var(--sq); border-radius: 2px;
  opacity: 0; transform: scale(.55);
  transition: opacity .32s var(--ease), transform .32s var(--ease);
  transition-delay: calc(var(--i, 0) * 9ms);
}
.wall.is-in i { opacity: 1; transform: none; }
.wall i.y { background: #45936d; }
.wall i.n { background: #c2564a; }
.wall i.o { background: rgba(255,255,255,0.16); }
.wall--big   { grid-template-columns: repeat(14, var(--sq)); }
.wall--small { grid-template-columns: repeat(15, var(--sq)); }

.vote-note { font-size: 0.83rem; color: var(--muted-d); margin: 16px 0 0; max-width: none; line-height: 1.55; }
.vote-note b { color: var(--brass); font-weight: 600; }

.vote-key { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.74rem; color: var(--muted-d); margin-top: 14px; letter-spacing: .02em; }
.vote-key span { display: flex; align-items: center; gap: 6px; }
.vote-key i { width: 9px; height: 9px; border-radius: 2px; display: block; }

/* ============ bands + sections ============ */

.band { padding: 88px 0; }
.band--paper { background: var(--paper); }
.band--panel { background: var(--panel-2); }
.band--dark { padding: 84px 0; }
.band--tight { padding: 64px 0; }
.band + .band--paper { border-top: 1px solid var(--line); }

.section-head { max-width: 44ch; margin-bottom: 44px; }
.section-head p { color: var(--muted); font-size: 1.06rem; }

/* ============ stats ============ */

.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
}
.stat { background: var(--panel); padding: 26px 24px 24px; }
.stat b { display: block; font-size: 2.7rem; line-height: 1; font-variant-numeric: tabular-nums; color: var(--ink); }
.stat span { display: block; font-size: 0.87rem; color: var(--muted); margin-top: 9px; line-height: 1.45; }
.band--dark .stats, .hero .stats { background: var(--line-d); border-color: var(--line-d); }
.band--dark .stat, .hero .stat { background: rgba(255,255,255,0.035); }
.band--dark .stat b, .hero .stat b { color: #fff; }
.band--dark .stat span, .hero .stat span { color: var(--muted-d); }

/* ============ the ledger ============ */

.ledger {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
  box-shadow: 0 30px 60px -50px rgba(18,22,29,.6);
}
.ledger-head {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 8px 20px;
  padding: 20px 24px; border-bottom: 1px solid var(--line); background: linear-gradient(var(--panel), var(--panel-2));
}
.ledger-head strong { font-size: 1.04rem; }
.ledger-head span { font-size: 0.83rem; color: var(--muted); }

.lrow {
  display: grid; grid-template-columns: 76px minmax(190px, 250px) 1fr 176px; gap: 20px;
  align-items: center; padding: 15px 24px;
  border-bottom: 1px solid var(--line-2);
  transition: background .25s var(--ease);
}
.lrow:last-of-type { border-bottom: 0; }
.lrow--novote { grid-template-columns: 76px minmax(190px, 250px) 1fr; }
.lrow:hover { background: #fcfaf5; }
.lrow .l-date { font-size: 0.85rem; color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
.lrow .l-where { font-size: 0.93rem; font-weight: 500; }
.lrow .l-what { font-size: 0.89rem; color: var(--muted); }
.lrow .l-vote { display: flex; align-items: center; gap: 11px; justify-content: flex-end; }
.l-num { font-size: 0.88rem; font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.bar { width: 92px; height: 7px; border-radius: 4px; background: var(--line-2); display: flex; overflow: hidden; flex: none; }
.bar i { display: block; height: 100%; width: 0; transition: width .9s var(--ease); }
.bar.is-in i { width: var(--w); }
.bar .y { background: var(--yea); }
.bar .n { background: var(--nay); }

.lrow.is-decisive { background: #fdf7ea; box-shadow: inset 3px 0 0 var(--brass); }
.lrow.is-decisive:hover { background: #fcf3df; }
.lrow.is-decisive .l-where { color: var(--brass-ink); }
.lrow.is-decisive .l-num { color: var(--brass-ink); }
.l-flag {
  display: inline-block; margin-left: 8px; font-size: 0.66rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--brass-ink);
  border: 1px solid var(--brass-lo); border-radius: 100px; padding: 2px 8px; background: #fff;
}
.ledger-note {
  font-size: 0.88rem; color: var(--muted); max-width: none;
  border-top: 1px solid var(--line); padding: 18px 24px; margin: 0; background: var(--panel-2);
}

/* ============ steps ============ */

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; }
.step { border-top: 2px solid var(--ink); padding-top: 20px; }
.step:nth-child(2) { border-top-color: var(--brass); }
.step-n { display: block; font-size: 2rem; color: var(--brass-ink); line-height: 1; margin-bottom: 12px; font-variant-numeric: tabular-nums; }
.step p { font-size: 0.97rem; color: var(--muted); margin-bottom: 0; }

/* ============ tiers ============ */

.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 24px; align-items: start; }
.tier {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 28px; position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.tier:hover { transform: translateY(-5px); box-shadow: 0 26px 54px -34px rgba(18,22,29,.5); border-color: #d9d1c1; }
.tier h3 { margin-top: 0; }
.tier .price { display: block; font-size: 2.5rem; line-height: 1; font-variant-numeric: tabular-nums; margin: 6px 0 3px; }
.tier .per { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; }
.tier ul { list-style: none; margin: 0; padding: 0; font-size: 0.95rem; }
.tier li { position: relative; padding-left: 22px; margin-bottom: 0.7em; line-height: 1.55; }
.tier li::before {
  content: ""; position: absolute; left: 2px; top: 0.62em;
  width: 7px; height: 7px; background: var(--brass); transform: rotate(45deg); border-radius: 1px;
}
.tier.feature { border-color: var(--brass); box-shadow: 0 20px 46px -34px rgba(200,160,74,.85); }
.tier.feature::before {
  content: "Most complete"; position: absolute; top: -11px; left: 28px;
  background: var(--brass); color: #1c1406;
  font-family: Inter, sans-serif; font-size: 0.66rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 100px;
}

/* ============ pledge ============ */

.pledge-quote {
  font-size: clamp(1.9rem, 3.9vw, 2.9rem); line-height: 1.16; color: #fff;
  max-width: 20ch; margin: 0 0 0.5em;
}
.band--dark .pledge-body { color: var(--muted-d); max-width: 58ch; }
.band--dark .pledge-body a { color: var(--brass); }
.pledge-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.pledge-rule { width: 44px; height: 2px; background: var(--brass); margin-bottom: 26px; }

/* light-page pledge block */
.pledge {
  border-left: 3px solid var(--brass);
  padding: 6px 0 6px 24px; margin: 30px 0;
}
.pledge p { font-family: "Instrument Serif", Georgia, serif; font-size: 1.5rem; line-height: 1.3; margin-bottom: 0; }

/* ============ panels + tables (interior pages) ============ */

.panel { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 24px 26px 20px; margin: 34px 0; box-shadow: 0 26px 54px -50px rgba(18,22,29,.55); }
.panel-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 8px 20px; border-bottom: 1px solid var(--line); padding-bottom: 13px; margin-bottom: 6px; }
.panel-head strong { font-size: 1.04rem; }
.panel-head span { font-size: 0.83rem; color: var(--muted); }
.panel p { max-width: none; }
.panel .note { font-size: 0.88rem; color: var(--muted); border-top: 1px solid var(--line-2); padding-top: 15px; margin: 16px 0 0; }

table { width: 100%; border-collapse: collapse; font-size: 0.91rem; }
thead th {
  text-align: left; font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  padding: 14px 12px 9px 0; border-bottom: 1px solid var(--line); white-space: nowrap;
}
tbody td { padding: 11px 12px 11px 0; border-bottom: 1px solid var(--line-2); vertical-align: top; }
tbody tr:last-child td { border-bottom: 0; }
td.num { font-variant-numeric: tabular-nums; white-space: nowrap; }
tr.decisive td { background: #fdf7ea; }
tr.decisive td:first-child { box-shadow: inset 3px 0 0 var(--brass); }
.tablescroll { overflow-x: auto; }

.prose h2 { margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 1.15em; }
.prose li { margin-bottom: 0.5em; }
.rule { border: 0; border-top: 1px solid var(--line); margin: 56px 0; }

/* ============ bio ============ */

.bio { display: grid; grid-template-columns: 210px 1fr; gap: 38px; align-items: start; margin: 34px 0; }
.bio img { width: 100%; height: auto; border-radius: var(--r-sm); display: block; }
.portrait-slot {
  aspect-ratio: 4 / 5; border: 1px dashed var(--line); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: 0.8rem; color: var(--muted); padding: 14px; background: var(--panel);
}

/* ============ cta ============ */

.cta-band { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 40px; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; box-shadow: 0 30px 60px -52px rgba(18,22,29,.6); }
.cta-band h2 { margin-bottom: 0.25em; font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.cta-band p { color: var(--muted); margin-bottom: 0; max-width: 52ch; }

/* ============ footer ============ */

.site-foot { padding: 62px 0 40px; font-size: 0.9rem; color: var(--muted-d); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; position: relative; z-index: 1; }
.site-foot .brand { color: #fff; margin-bottom: 14px; }
.site-foot p { margin: 0 0 0.45em; max-width: 40ch; }
.site-foot a { color: var(--muted-d); text-decoration: none; }
.site-foot a:hover { color: var(--brass); text-decoration: underline; text-underline-offset: 3px; }
.foot-title { font-size: 0.72rem; letter-spacing: .15em; text-transform: uppercase; color: #fff; font-weight: 600; margin-bottom: 12px; }
.foot-nav { display: flex; flex-direction: column; gap: 7px; }
.foot-legal { border-top: 1px solid var(--line-d); margin-top: 40px; padding-top: 22px; font-size: 0.82rem; position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 8px 28px; justify-content: space-between; }

/* ============ motion ============ */

[data-reveal] { opacity: 0; transform: translateY(18px); }
[data-reveal].is-in {
  opacity: 1; transform: none;
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}

/* ============ responsive ============ */

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .pledge-grid { grid-template-columns: 1fr; gap: 30px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .lrow { grid-template-columns: 68px 1fr 150px; }
  .lrow .l-what { grid-column: 2 / -1; margin-top: -4px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .site-nav { gap: 16px; font-size: 0.88rem; }
  .site-nav .nav-cta { display: none; }
  .hero { padding: calc(var(--head-h) + 34px) 0 62px; }
  .band { padding: 62px 0; }
  .band--dark { padding: 58px 0; }
  .hero h1 { max-width: none; }
  .wall { --sq: 14px; }
  .lrow { grid-template-columns: 1fr auto; gap: 4px 14px; padding: 14px 18px; }
  .lrow .l-date { grid-column: 1; }
  .lrow .l-vote { grid-row: 1 / span 1; grid-column: 2; }
  .lrow .l-where { grid-column: 1 / -1; }
  .lrow .l-what { grid-column: 1 / -1; margin-top: 0; }
  .ledger-head, .ledger-note { padding-left: 18px; padding-right: 18px; }
  .bio { grid-template-columns: 1fr; }
  .bio > div:first-child { max-width: 190px; }
  .foot-grid { grid-template-columns: 1fr; gap: 26px; }
  .cta-band { padding: 28px 24px; }
  .stat b { font-size: 2.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .wall i { opacity: 1; transform: none; }
  .bar i { width: var(--w); }
}

/* ---- small phones: the header goes to two rows so the wordmark stays whole ---- */
@media (max-width: 580px) {
  :root { --head-h: 104px; }
  .site-head .wrap { height: auto; flex-wrap: wrap; padding: 13px 26px 9px; gap: 9px; }
  .brand { width: 100%; }
  .wordmark { font-size: 1.02rem; white-space: nowrap; }
  .site-nav { width: 100%; justify-content: space-between; gap: 0; font-size: 0.86rem; }
  .site-nav a { white-space: nowrap; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.7rem; }
  .lede { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { justify-content: center; }
  .countdown { display: grid; gap: 3px; }
  .countdown-days::before { display: none; }
  .countdown .dot { display: none; }
  .votecard { padding: 20px 18px 16px; }
  .votecard-head { flex-direction: column; gap: 3px; }
  .step-n { font-size: 1.7rem; }
  .eyebrow { font-size: 0.68rem; letter-spacing: 0.12em; }
  .eyebrow::before { display: none; }
}

/* ============ scorecard price ladder + the comparison ============ */

.block-label {
  font-family: Inter, sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted);
  text-align: center; margin: 0 0 16px;
}

.block-note {
  text-align: center; font-size: 0.92rem; color: var(--muted);
  margin: 0 0 18px;
}

.ladder {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(212px, 1fr));
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
}
.lad { background: var(--panel); padding: 28px 22px 26px; text-align: center; }
.lad b {
  display: block;
  font-family: "Instrument Serif", "Source Serif 4", Georgia, "Times New Roman", serif;
  font-weight: 400; letter-spacing: -0.012em;
  font-size: 2.5rem; line-height: 1; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.lad em {
  display: block; font-style: normal;
  font-family: Inter, sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.11em; text-transform: uppercase; color: var(--brass);
  margin: 11px 0 9px;
}
.lad span { display: block; font-size: 0.87rem; color: var(--muted); line-height: 1.5; }

.lad-foot {
  text-align: center; font-size: 0.92rem; color: var(--muted);
  margin: 15px 0 0;
}

.vs {
  margin-top: 40px; background: var(--panel);
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px 28px 24px;
  box-shadow: 0 30px 60px -50px rgba(18,22,29,.6);
}
.vs-title {
  font-family: Inter, sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted);
  margin: 0 0 20px;
}
.vs-row { margin-bottom: 20px; }
.vs-row:last-of-type { margin-bottom: 0; }
.vs-side {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 8px 18px; flex-wrap: wrap; margin-bottom: 10px;
}
.vs-who { font-size: 0.95rem; font-weight: 600; color: var(--ink); }
.vs-tag {
  display: inline-block; vertical-align: 2px;
  font-family: Inter, sans-serif; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px; margin-left: 7px;
}
.vs-tag--ours { background: var(--brass); color: #1c1406; }
.vs-tag--theirs { background: transparent; color: var(--muted); border: 1px solid var(--line); }
.vs-amt {
  font-family: "Instrument Serif", "Source Serif 4", Georgia, "Times New Roman", serif;
  font-weight: 400; font-size: 1.55rem; line-height: 1;
  font-variant-numeric: tabular-nums; color: var(--ink); white-space: nowrap;
}
.vs-amt--theirs { color: var(--muted); }
.vs-track {
  height: 13px; border-radius: 100px; overflow: hidden;
  background: rgba(18,22,29,0.06);
}
.vs-bar { display: block; height: 100%; width: var(--w); border-radius: 100px; }
.vs-bar--ours { background: var(--brass); }
.vs-bar--theirs { background: rgba(18,22,29,0.24); }
.vs-note {
  font-size: 0.86rem; color: var(--muted); line-height: 1.55;
  margin: 20px 0 0; padding-top: 17px; border-top: 1px solid var(--line);
}

@media (max-width: 580px) {
  .lad b { font-size: 2.1rem; }
  .vs { padding: 22px 19px 20px; }
  .vs-amt { font-size: 1.3rem; }
}
