/* LANDING — public homepage. Tokens only; reuses .btn/.eyebrow/.display from styles.css.
   Rules honored: no gradients, no rainbow stripes, no emoji, sentence-case headlines,
   subtle hover lift + one-time scroll fade, prefers-reduced-motion respected. */

.lwrap{max-width:var(--maxw-wide);margin:0 auto;padding:0 var(--gutter)}   /* Q205 — the global page-frame width (1040px, --maxw-wide). Every page's outer wrapper matches this. */

/* Broad-daylight reskin — the marketing page ground is WHITE (--surface); --paper is
   reserved for section wells only. Sections that want a well opt in with --surface-2/--paper. */
body.mktg{background:var(--surface)}

/* skip link — visible only on keyboard focus */
.skip{position:absolute;left:-9999px;top:0;z-index:50;background:var(--ink);color:#fff;
  padding:10px 16px;border-radius:0 0 var(--r-sm) 0;font-size:14px;font-weight:600;text-decoration:none}
.skip:focus{left:0}

/* nav */
.lnav{border-bottom:1px solid var(--line);background:var(--paper);position:sticky;top:0;z-index:10}
.lnav-in{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:18px;padding:18px var(--gutter)}
.lnav .wordmark{font-family:var(--font-display);font-weight:700;font-size:20px;letter-spacing:-.01em;
  text-decoration:none;color:var(--ink)}
.lnav-links{display:flex;align-items:center;flex-wrap:wrap;gap:22px}
.lnav-links > a:not(.btn-outline){font-size:14.5px;font-weight:500;color:var(--ink-2);text-decoration:none}
.lnav-links > a:not(.btn-outline):hover{color:var(--accent)}
.lnav-cta{padding:9px 16px;font-size:14px}
/* Support pill — a warm, distinct "give/help" chip (verified contrast var(--secondary-strong) on var(--secondary-soft) = 4.89:1) */
.lnav-links a.support-pill{padding:7px 15px;border-radius:var(--r-pill);background:var(--secondary-soft);color:var(--secondary-strong);
  font-size:14px;font-weight:600;border:1.5px solid transparent}
.lnav-links a.support-pill:hover{color:var(--secondary-strong);background:var(--secondary-hover);border-color:var(--secondary-strong)}
.lnav-links a.support-pill:focus-visible{outline:var(--focus-ring);outline-offset:var(--focus-offset)}
@media(max-width:560px){
  .lnav-links{gap:14px}
  .lnav-links > a:not(.btn-outline):not(.support-pill):first-child{display:none}
}

/* hero — Broad-daylight reskin: ONE centered axis. spark → mega headline (--accent
   key phrase) → lede → search bar → utility links → counters caption → photo card. */
.hero{border-bottom:0;background:var(--surface)}
.hero-in{display:flex;flex-direction:column;align-items:center;text-align:center;gap:0;
  padding:88px var(--gutter) 80px}
.hero-copy{display:flex;flex-direction:column;align-items:center;text-align:center;width:100%;max-width:920px}
/* the spark opens the hero as a mark (a decorative ::before on the copy block) */
.hero-copy::before{content:"";display:block;width:56px;height:56px;margin:0 auto 30px;
  background:url("assets/spark-pride.svg") center/contain no-repeat}
.hero-copy .eyebrow{margin:0 0 0;order:-1;display:none}   /* the ANC eyebrow is superseded by the spark mark on the reskinned hero */
.hero-copy h1.display{font-weight:var(--fw-display);font-size:var(--fs-mega);line-height:var(--lh-mega);
  letter-spacing:var(--ls-mega);margin:0}
/* the --accent key phrase in the mega headline (reskin §3 hero) */
.hero-copy h1.display .hl-accent{color:var(--accent)}
.hero-copy .sub{font-size:19px;line-height:1.55;color:var(--muted);max-width:560px;margin:26px auto 0}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap;justify-content:center;margin-top:30px}
/* the photo card — wide cinematic card inside the hero, rests at --shadow-soft-lg */
/* NB: the generic .photo{margin:0} below wins on source-order at equal specificity, so the hero-photo top gap must
   be raised in specificity (.hero .hero-photo) — otherwise the copy/bands sit flush on the image. */
.hero .hero-photo{width:100%;max-width:920px;margin:56px auto 0}
@media(max-width:760px){
  .hero-in{padding:56px var(--gutter) 60px}
  .hero-copy h1.display{font-size:clamp(48px,12vw,60px)}
}

/* photo slots — a real labelled slot (drop a DC photo in here), not a flat color block.
   No gradient: a plain surface with a thin inner frame and a caption pill. */
/* Q248 — framed photos share the card's border weight + radius (they keep their own inner-mat line + centered
   layout, and no drop-shadow since some are nested inside a card, so they don't take the full .card class). */
/* photo card — Broad-daylight reskin: the .card frame at --shadow-soft-lg, --r-xl,
   1px --line; the print-stamp/mat overlay is retired on marketing. */
.photo{margin:0;border:1px solid var(--line);border-radius:var(--r-xl);background:var(--surface);
  min-height:300px;display:grid;place-items:center;position:relative;overflow:hidden;box-shadow:var(--shadow-soft-lg)}
.photo .photo-note{font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:var(--muted);
  font-weight:600;background:var(--surface-2);padding:6px 12px;border:1px solid var(--line);border-radius:999px;
  position:relative;z-index:1}
.hero-photo{min-height:340px}
/* Q30 — the real hero photo fills the framed figure (no mat overlay); dimensions set on the <img> = no layout shift */
.hero-photo:has(img){min-height:0;padding:0}
.hero-photo img{display:block;width:100%;height:auto;border-radius:var(--r-xl)}
/* the spark pins to the top-right of the hero photo card (reskin §3 hero) */
.hero-photo{position:relative;overflow:visible}
.hero-photo-spark{position:absolute;top:-28px;right:-26px;width:64px;height:64px;z-index:2;
  background:url("assets/spark-pride.svg") center/contain no-repeat;pointer-events:none}
@media(max-width:560px){.hero-photo-spark{width:52px;height:52px;top:-22px;right:-8px}}

/* sections — Broad-daylight reskin: generous rhythm; centered single-axis composition
   on the teaser/checklist/table/close sections (2-col prose grids keep their own layout). */
.section-pad{padding:84px 0}
/* section wells alternate on --surface-2 (the --paper role is wells-only now) */
.receive-wrap,.rep-wrap,.backup-wrap{background:var(--surface-2)}
.receive-wrap,.backup-wrap{text-align:center}
.receive-wrap .eyebrow,.backup-wrap>.lwrap>.eyebrow{display:block}
.receive-wrap .display,.backup-wrap .display{font-weight:var(--fw-display);font-size:clamp(30px,4vw,46px);letter-spacing:-.015em;margin:16px 0 0}
.backup-wrap .lead{margin-left:auto;margin-right:auto}
.backup-note{margin-left:auto;margin-right:auto}
.anc-head{max-width:60ch}
.anc-head .display{font-weight:700;font-size:clamp(28px,4.4vw,40px);margin:6px 0 18px}
.anc-head .lead{font-size:18px;line-height:1.6;color:var(--ink-2)}

/* stats — Broad-daylight reskin: naked centered numerals, 1px --line vertical
   separators, no container (the boxes are retired). */
.stats{list-style:none;margin:40px 0 0;padding:0;display:grid;grid-template-columns:repeat(4,1fr);gap:0}
.stats li{border:0;background:transparent;padding:8px 24px;text-align:center;position:relative}
.stats li + li::before{content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);width:1px;height:56px;background:var(--line)}
.stats b{display:block;font-family:var(--font-display);font-weight:var(--fw-display);font-size:44px;line-height:1;
  letter-spacing:-.02em;color:var(--accent);margin-bottom:8px;font-variant-numeric:tabular-nums}
.stats span{font-size:13.5px;color:var(--muted);line-height:1.4}
@media(max-width:760px){.stats{grid-template-columns:1fr 1fr;gap:24px 0}.stats li:nth-child(odd)+li::before{display:none}}
@media(max-width:560px){.stats{grid-template-columns:1fr;gap:20px}.stats li + li::before{display:none}}

/* path — Broad-daylight reskin: calm hairline cards, quiet-blur hover (no stamp). */
.path-wrap{border-top:1px solid var(--line);background:var(--surface)}
.path-wrap .display{font-weight:var(--fw-display);font-size:clamp(28px,4.4vw,40px);letter-spacing:-.015em;margin:6px 0 0}
.path{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:34px}
.pcard{display:block;border:1px solid var(--line);border-radius:var(--r-xl);background:var(--surface);
  padding:26px;text-decoration:none;color:inherit;box-shadow:var(--shadow-soft);
  transition:box-shadow var(--dur-fast) var(--ease),border-color var(--dur-fast) var(--ease)}
.pcard:hover{box-shadow:var(--shadow-soft-lg);border-color:var(--line-strong)}
.pcard .pnum{display:inline-grid;place-items:center;width:38px;height:38px;
  border-radius:999px;font-family:var(--font-display);font-weight:var(--fw-display);font-size:18px;
  background:var(--accent-soft);color:var(--accent-strong);margin-bottom:16px}
.pcard h3{font-family:var(--font-display);font-weight:var(--fw-display);font-size:21px;margin:0 0 10px}
.pcard p{font-size:15.5px;line-height:1.55;color:var(--muted);margin:0 0 16px}
.pcard .plink{font-size:14.5px;font-weight:600;color:var(--accent)}
.pcard .plink .ar{display:inline-block;transition:transform var(--dur-fast) ease}
.pcard:hover .plink .ar{transform:translateX(4px)}
@media(max-width:760px){.path{grid-template-columns:1fr}}

/* ============================================================================
   "Three parts, one run" — the additive product-teaser section (reskin §3). Three
   .cards at --shadow-soft-lg with a caption block beneath each; in-card UI is
   illustrative (no live-data claims). FPO copy — flagged for the voice pass.
   ========================================================================== */
.pillars-wrap{background:var(--surface-2);text-align:center}
.pillars-wrap .eyebrow{display:block;color:var(--accent-strong)}
.pillars-head{font-family:var(--font-display);font-weight:var(--fw-display);font-size:clamp(30px,4vw,46px);letter-spacing:-.015em;margin:16px 0 44px}
.pillars{display:grid;grid-template-columns:1fr 1fr 1fr;gap:24px;text-align:left}
.pillar{display:flex;flex-direction:column;gap:18px}
.pillar-card{position:relative;flex:1;background:var(--surface);border:1px solid var(--line);border-radius:var(--r-xl);
  box-shadow:var(--shadow-soft-lg);padding:22px}
.pillar-cap{text-align:center;padding:0 12px}
.pillar-cap b{display:block;font-family:var(--font-display);font-weight:var(--fw-display);font-size:19px;color:var(--ink)}
.pillar-cap p{font-size:14.5px;line-height:1.55;color:var(--muted);margin:6px 0 0}
/* the spark pins top-right of ONE card per group (the Copilot pillar) */
.pillar--spark .pillar-card::after{content:"";position:absolute;top:-22px;right:-16px;width:48px;height:48px;
  background:url("assets/spark-pride.svg") center/contain no-repeat;z-index:2}
/* in-card chrome */
.pcard-top{display:flex;align-items:center;justify-content:space-between}
.pcard-title{font-weight:var(--fw-semibold);font-size:13.5px;color:var(--ink)}
.pcard-tag{font-weight:var(--fw-semibold);font-size:12px;color:var(--muted);border:1px solid var(--line);border-radius:var(--r-pill);padding:4px 10px;font-variant-numeric:tabular-nums}
.pcard-body{border-top:1px solid var(--line);margin:14px 0 0;padding:14px 0 0}
.pcard-q{font-weight:var(--fw-semibold);font-size:15px;line-height:1.45;color:var(--ink)}
.pcard-opts{display:flex;flex-direction:column;gap:8px;margin:14px 0 0}
.pcard-opt{display:block;padding:11px 14px;border:1px solid var(--line-strong);border-radius:var(--r);font-size:14px;color:var(--ink-2)}
.pcard-opt--on{border:1.5px solid var(--accent);background:var(--accent-wash);font-weight:var(--fw-semibold);color:var(--accent-strong)}
.pcard-progress{display:flex;align-items:center;gap:12px;margin:16px 0 0}
.pcard-trk{flex:1;height:6px;border-radius:var(--r-pill);background:var(--line);overflow:hidden}
.pcard-trk--tall{height:8px}
.pcard-fill{height:100%;background:var(--accent)}
.pcard-step{font-weight:var(--fw-medium);font-size:12.5px;color:var(--muted);font-variant-numeric:tabular-nums}
.pcard-label{font-weight:var(--fw-bold);font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:var(--muted)}
.pcard-num{font-family:var(--font-display);font-weight:var(--fw-display);font-size:30px;color:var(--ink);margin:8px 0 10px;font-variant-numeric:tabular-nums}
.pcard-num span{color:var(--muted);font-weight:var(--fw-medium)}
.pcard-row{border-top:1px solid var(--line);margin:14px 0 0;padding:12px 0 0}
.pcard-rowval{font-weight:var(--fw-medium);font-size:14px;line-height:1.5;color:var(--ink);margin:6px 0 0}
.pcard-crew{border-top:1px solid var(--line);margin:14px 0 0;padding:16px 0 0;display:flex;flex-direction:column;gap:14px}
.pcard-avatar{display:flex;gap:12px;align-items:center}
.pcard-avatar i{display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:50%;
  background:var(--accent-soft);font-weight:var(--fw-semibold);font-size:12px;font-style:normal;color:var(--accent-strong);flex:none}
.pcard-avatar span{font-weight:var(--fw-medium);font-size:14px;line-height:1.4;color:var(--ink)}
.pcard-crewbtns{border-top:1px solid var(--line);padding-top:12px;display:flex;gap:8px;flex-wrap:wrap}
.pcard-chip{display:inline-flex;align-items:center;height:36px;padding:0 14px;border:1px solid var(--line-strong);
  border-radius:var(--r-pill);font-weight:var(--fw-semibold);font-size:13px;color:var(--ink);white-space:nowrap}
.pcard-chip--on{background:var(--accent);color:var(--on-accent);border-color:var(--accent)}
@media(max-width:760px){.pillars{grid-template-columns:1fr;gap:32px}}

/* deadline band (punch) — Broad-daylight reskin: full-bleed --accent, ONE centered
   axis. H2 700 white ~72px, dates lede #DCE1FF, white pill CTA, seat map centered figure. */
.punch{background:var(--accent);color:#fff}
/* the host band answers in the second brand pigment — deep-pink (--secondary-strong = 5.9:1 on white). */
.punch--host{background:var(--secondary-strong)}
.punch-in{padding:92px var(--gutter);display:flex;flex-direction:column;align-items:center;text-align:center}
.punch-copy{display:flex;flex-direction:column;align-items:center;text-align:center}
.punch-title{font-family:var(--font-display);font-weight:var(--fw-display-heavy);font-size:clamp(40px,7.4vw,72px);
  line-height:1.02;letter-spacing:-.025em;margin:0;max-width:14ch;color:#fff}
.punch-sub{font-size:19px;line-height:1.55;color:var(--on-accent-lede);max-width:52ch;margin:20px auto 0}
.punch--host .punch-sub{color:rgba(255,255,255,.9)}
.punch .punch-btn{margin-top:32px}
/* Q392 — the host band's "what's in the kit" proof list (reversed white on the cobalt band, not a card) */
/* Centered block, left-aligned items: the punch band is text-align:center, so the checklist inherited it
   and the checkbox+label pairs sat ragged. width:fit-content + margin-inline:auto centers the whole list
   while text-align:left keeps the checkboxes in one clean column. */
.punch-kit{list-style:none;padding:0;margin:26px auto 0;width:fit-content;text-align:left;display:grid;gap:12px;align-self:center}
@media (min-width:900px){ .punch-kit{margin:40px auto 0} }
.punch-kit li{position:relative;padding-left:24px;color:rgba(255,255,255,.92);font-size:15.5px;line-height:1.4;font-weight:600}
.punch-kit li::before{content:"";position:absolute;left:0;top:.3em;width:10px;height:10px;border:2px solid #fff;border-radius:3px}

/* faq — native details/summary, no motion beyond the marker */
/* the home FAQ section is centered — the heading AND the accordion card both center in the section */
.faq-wrap{border-top:1px solid var(--line);text-align:center}
.faq-wrap .display{font-weight:700;font-size:clamp(28px,4.4vw,40px);margin:6px 0 0}
.faq{margin-top:28px;max-width:760px}
/* Q490 — the homepage FAQ uses the canonical `details.disclosure` (chevron/marker/44px/focus/reduced-motion from
   styles.css); the bespoke `+`/`–` marker + frame are gone. Only the display-face summary type stays a hook. */
.faq details.disclosure > summary{font-family:var(--font-display);font-size:18px}
.faq p{margin:0 0 18px;font-size:16px;line-height:1.6;color:var(--ink-2);max-width:64ch}

/* impact widget strip — Q248: shares the .card frame; only its flex layout lives here */
.impact-strip{display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}
.impact-strip__stats{display:flex;gap:32px;flex-wrap:wrap}
.impact-strip__stat b{display:block;font-family:var(--font-display);font-weight:var(--fw-display-heavy,700);
  font-size:34px;line-height:1;letter-spacing:-.02em;color:var(--accent);font-variant-numeric:tabular-nums}
.impact-strip__stat span{display:block;font-size:13px;color:var(--muted);margin-top:5px;max-width:18ch}
@media(max-width:560px){.impact-strip{flex-direction:column;align-items:flex-start}.impact-strip__stats{gap:20px}}

/* nominate a neighbor */
/* Q248 — ONE homepage card frame. Every boxed panel (nominate, donate, join-the-club, the "with us" table)
   shares this EXACT border weight, radius, padding, background, and drop-shadow via `class="card"` — no more
   per-box border/shadow/padding drift. Layout-only rules (grid/flex/gap) stay on each box's own class. */
/* Broad-daylight reskin — ONE marketing card frame: --surface, 1px --line, --r-xl,
   --shadow-soft (quiet blur; the 2px ink + print-stamp is retired on marketing). */
.card{background:var(--surface);border:1px solid var(--line);border-radius:var(--r-xl);padding:28px 32px;box-shadow:var(--shadow-soft)}

/* NOMINATE / recruit module — Broad-daylight 10a (RECRUIT-REDLINE.md): centered header lifted OUT of the card,
   then ONE 880px two-act card — nudge act (left) | personal-link rail (right) — split by a 1px --line divider,
   the section's one spark pinned top-right. (Q438: still no photo; the two acts are form + link rail, not an
   image grid.) */
.nominate-head{max-width:640px;margin:0 auto 40px;text-align:center}
.nominate-title{font-family:var(--font-display);font-weight:var(--fw-display);font-size:clamp(30px,4.4vw,44px);line-height:1.08;letter-spacing:-.015em;margin:0 0 16px;color:var(--ink)}
.nominate-adopt{margin:0 auto;max-width:52ch;color:var(--muted);font-size:16.5px;line-height:1.6}
.nominate-adopt .link{color:var(--accent-strong);text-decoration:none;font-weight:var(--fw-medium)}
.nominate-adopt .link:hover{text-decoration:underline}

.nominate.card{max-width:880px;margin-inline:auto;padding:32px;position:relative;box-shadow:var(--shadow-soft-lg)}
/* the section's ONE spark (max one per surface), pinned top-right of the card */
.nominate.card::after{content:"";position:absolute;top:-22px;right:-16px;width:48px;height:48px;
  background:url("assets/spark-pride.svg") center/contain no-repeat;z-index:2;pointer-events:none}
.nominate-body{display:grid;grid-template-columns:1.15fr .85fr;column-gap:32px;align-items:start;min-width:0}
.nominate-act{display:flex;flex-direction:column;gap:14px;min-width:0}
.nominate-eyebrow{margin:0}
.nominate-sub{margin:0;color:var(--muted);font-size:14px;line-height:1.6}
.nominate-rail{position:relative;padding-left:32px;min-width:0}
/* the 1px divider sits centered in the 32px column gap (16px into the rail's left pad) */
.nominate-rail::before{content:"";position:absolute;left:-16px;top:0;bottom:0;width:1px;background:var(--line)}

/* Q128 — the canned-nudge form: two first names → a ready-to-send message + share. */
.nominate-form{display:flex;flex-direction:column;gap:12px;min-width:0}
.nominate-form>.btn{width:100%;margin-top:6px}
.nominate-fields{display:flex;gap:12px;flex-wrap:wrap}
.nominate-field{display:flex;flex-direction:column;gap:5px;flex:1 1 130px}
.nominate-field span{font-size:13px;font-weight:var(--fw-semibold);color:var(--ink)}
.nominate-field input{font:inherit;font-size:16px;padding:0 16px;min-height:44px;height:52px;border:1px solid var(--line-strong);border-radius:var(--r);background:var(--surface);color:var(--ink)}
.nominate-field input::placeholder{color:var(--muted)}
.nominate-field input:focus-visible{outline:var(--focus-ring);outline-offset:var(--focus-offset);border-color:var(--accent)}
.nominate-field--wide{flex-basis:100%}
.nominate-note{margin:2px 0 0;font-size:12.5px;color:var(--muted);line-height:1.5}
.nominate-out{display:flex;flex-direction:column;gap:10px}
.nominate-preview{margin:0;padding:13px 15px;border-radius:var(--r);background:var(--accent-wash);color:var(--ink);font-size:15px;line-height:1.5;border:1px solid var(--line)}
.nominate-share{display:flex;gap:8px;flex-wrap:wrap}
.nominate-share .btn-outline{text-decoration:none}
.nominate-done{font-size:13px;color:var(--muted)}

/* link rail (renderShare output) — reskin: pink column eyebrow, hero-search-bar link pill with an inset Copy
   pill, a compact QR tile beside the in-person text + impact link. */
.nominate-rail .nominate-share__h{margin:0 0 8px;font-size:var(--fs-eyebrow);font-weight:700;text-transform:uppercase;letter-spacing:.16em;color:var(--secondary-strong)}
.nominate-rail .nominate-credit{margin:0 0 14px;color:var(--muted);font-size:14px;line-height:1.6}
.nominate-sharelink{display:flex;align-items:center;gap:6px;margin:0;padding:6px 6px 6px 18px;min-height:52px;border:1px solid var(--line-strong);border-radius:var(--r-pill);background:var(--surface)}
.nominate-sharelink .field{flex:1 1 auto;min-width:0;display:block;margin:0;padding:0;border:0;background:transparent;font-size:13.5px;font-weight:var(--fw-medium);color:var(--ink);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.nominate-sharelink .field:focus-visible{outline:none}
.nominate-sharelink .btn-outline{flex:none;min-width:84px;min-height:40px;padding:0 18px;border:0;border-radius:var(--r-pill);background:var(--accent);color:var(--on-accent);font-weight:var(--fw-semibold);font-size:13px}
.nominate-sharelink .btn-outline:hover{background:var(--accent-strong)}
.nominate-qrrow{display:flex;align-items:flex-start;gap:16px;margin:20px 0 0}
.nominate-qrrow .nominate-qr{flex:none;margin:0;padding:8px;border:1px solid var(--line);border-radius:var(--r)}
.nominate-qrrow .nominate-qr canvas{display:block;width:92px;height:92px;border:0;border-radius:6px}
.nominate-qrtext{min-width:0}
.nominate-qr-cap{margin:0;font-size:14px;font-weight:var(--fw-medium);color:var(--ink);line-height:1.45}
.nominate-tally{margin:4px 0 0;font-size:13px;color:var(--muted);line-height:1.55}
.nominate-youlink{margin:6px 0 0;font-size:13.5px}
.nominate-youlink .link{color:var(--accent-strong);text-decoration:none;font-weight:var(--fw-medium)}
.nominate-youlink .link:hover{text-decoration:underline}

@media(max-width:760px){
  .nominate-head{margin-bottom:32px}
  .nominate.card{padding:24px}
  .nominate.card::after{width:44px;height:44px;top:-20px;right:-6px}
  .nominate-body{grid-template-columns:1fr;row-gap:22px}
  .nominate-rail{padding-left:0;padding-top:22px}
  .nominate-rail::before{left:0;right:0;top:0;bottom:auto;width:auto;height:1px}
}

/* MEMBERSHIP CLOSE — 5a: the CSD-membership + donate close band. --paper well, centered on the page axis:
   spark 44 → pink "Capital Stonewall Democrats" eyebrow → H2 → caption → primary "Become a member" + outline
   "Donate". Full-width stacked pills ≤560. (Not a .card — the well is the frame.) */
.membership-close{background:var(--paper)}
.membership-in{max-width:640px;margin:0 auto;text-align:center;display:flex;flex-direction:column;align-items:center}
.membership-spark{width:44px;height:44px;background:url("assets/spark-pride.svg") center/contain no-repeat;margin:0 0 18px}
.membership-eyebrow{margin:0 0 12px}
.membership-title{font-family:var(--font-display);font-weight:var(--fw-display);font-size:clamp(32px,4.6vw,46px);line-height:1.1;letter-spacing:-.015em;margin:0 0 14px;color:var(--ink)}
.membership-caption{margin:0 0 26px;color:var(--muted);font-size:16px;line-height:1.6;max-width:52ch}
.membership-cta{display:flex;gap:14px;flex-wrap:wrap;justify-content:center}
@media(max-width:560px){
  .membership-cta{width:100%;flex-direction:column}
  .membership-cta .btn,.membership-cta .btn-outline{width:100%}
}

/* COMMUNITY — "Bring your neighbors together." (COMMUNITY-BRIEF.md + mock 5a). White ground, two-column:
   house-party photo (left, 430x360) · eyebrow/H2/para/three-pill stack (right). Photo-first single column ≤760.
   Tokens only; no spark, no pigment band, no card wrapper, no offset shadow. */
.community-wrap{background:var(--surface);padding:var(--space-11) 0}
.community-in{display:grid;grid-template-columns:430px 1fr;gap:56px;align-items:center}
.community-photo{margin:0;min-width:0}
.community-photo img{display:block;width:100%;height:360px;object-fit:cover;border-radius:var(--r-xl);box-shadow:var(--shadow-soft-lg)}
.community-copy{min-width:0}
.community-eyebrow{margin:0;font-weight:700;font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:var(--secondary-strong)}
.community-title{margin:16px 0 0;font-family:var(--font-display);font-weight:600;font-size:44px;line-height:1.08;letter-spacing:-.015em;color:var(--ink)}
.community-para{margin:18px 0 0;font-size:16.5px;line-height:1.6;color:var(--muted);max-width:460px}
.community-cta{display:flex;flex-wrap:wrap;gap:12px;margin:28px 0 0}
.community-btn{display:inline-flex;align-items:center;justify-content:center;height:52px;padding:0 26px;border-radius:var(--r-pill);font-weight:600;font-size:15.5px;line-height:1;text-decoration:none;border:1px solid transparent;transition:background-color var(--dur-fast) var(--ease-out),border-color var(--dur-fast) var(--ease-out),color var(--dur-fast) var(--ease-out)}
.community-btn--primary{background:var(--accent);color:var(--on-accent)}
.community-btn--primary:hover{background:var(--accent-strong)}
.community-btn--outline{background:var(--surface);color:var(--ink);border-color:var(--line-strong)}
.community-btn--outline:hover{border-color:var(--muted)}
.community-btn:focus-visible{outline:3px solid var(--accent);outline-offset:2px}
@media(max-width:760px){
  .community-in{grid-template-columns:1fr;gap:0;text-align:center;justify-items:center}
  .community-photo{width:100%}
  .community-photo img{height:280px}
  .community-eyebrow{margin-top:28px;letter-spacing:.14em}
  .community-title{font-size:34px;margin-top:14px}
  .community-para{font-size:15.5px;margin-top:16px;max-width:100%}
  .community-cta{margin-top:24px;flex-direction:column;width:100%}
  .community-btn{width:100%;font-size:16px}
}
@media(max-width:560px){
  .nominate-title{font-size:34px}
  .nominate-adopt{font-size:15px}
  .nominate-field{flex-basis:100%}
  .nominate-qrrow .nominate-qr canvas{width:68px;height:68px}
}

/* Q130 — Host a night: an actionable "what's in the kit" overview above the form so the page reads as a KIT. */
.host-overview{margin:26px 0 8px;padding:22px 24px;background:var(--surface-2);border:1px solid var(--line);border-radius:var(--r-lg)}
.host-overview__h{font-family:var(--font-display);font-weight:var(--fw-display);font-size:clamp(18px,2.4vw,22px);margin:0 0 12px}
.host-overview__list{margin:0 0 18px;padding-left:20px;display:grid;gap:7px;font-size:15px;line-height:1.5;color:var(--ink-2)}
.host-overview__links{display:flex;gap:10px;flex-wrap:wrap;margin:0 0 12px}
.host-overview__links .btn-outline{text-decoration:none}
.host-overview__cta{margin:0;font-size:14px}

/* become a CSD member — connect card */
.connect-card{display:flex;align-items:center;justify-content:space-between;gap:28px;flex-wrap:wrap}
.connect-card__copy{max-width:56ch}
.connect-title{font-family:var(--font-display);font-weight:var(--fw-display);font-size:clamp(20px,2.6vw,26px);margin:0 0 6px;letter-spacing:-.01em}
.connect-sub{margin:0;color:var(--ink-2);font-size:15.5px;line-height:1.5}

/* partners (logos, consent) + sources (plain text credits) */
/* Q603 — a confident v1.3 COALITION BAND (supersedes the Q502 bordered logo-soup grid). A tinted section well
   (--surface-2, hairline top+bottom), centered + capped, with a spark motif + an on-voice frame. Logos are
   borderless + LARGER, laid out as a centered wrap so 1 partner or 12 both read intentional (no empty grid
   cells). Any shape/size still normalizes via object-fit:contain. Tokens only; no rainbow; scales mobile-first. */
/* partners — the guarded v1.3 COALITION BAND (Q603): a subtle --surface-2 well with a
   hairline border-block; retained as-is (a published, tested credibility surface). */
.partner-band{background:var(--surface-2);border-block:1px solid var(--line);padding-block:var(--space-8);margin-top:var(--space-9)}
.partner-band__in{text-align:center}
.partner-band .sparkrule{max-width:min(520px,100%);margin:0 auto var(--space-4)}
.partner-band__title{font-family:var(--font-display);font-weight:var(--fw-display);font-size:clamp(24px,3.2vw,34px);letter-spacing:-.01em;margin:0 auto;max-width:20ch}
.partner-band__sub{margin:8px auto 0;color:var(--ink-2);font-size:16px;line-height:1.5;max-width:44ch}
.partner-logos{list-style:none;display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:clamp(28px,5vw,56px);margin:var(--space-6) auto 0;padding:0;max-width:880px}
.partner-item{margin:0}
.partner-cell{display:flex;align-items:center;justify-content:center;min-height:144px;padding:0;text-decoration:none}
.partner-cell img{max-height:128px;max-width:360px;width:auto;height:auto;object-fit:contain;display:block;opacity:.85;transition:opacity var(--dur-fast) var(--ease)}
a.partner-cell:hover img{opacity:1}
.sources-line{font-size:13px;color:var(--muted);margin:var(--space-9) 0 0;line-height:1.6}

/* IN THE PRESS — home naked strip (HOME-PRESS-STRIP.md). Partners-strip grammar: 1px --line top rule, white
   ground, everything centered, padding 60/40 (44/24 ≤560). NO cards/borders/images inside — the top rule is the
   only line; the wall treatment lives on /press only. Hidden-when-empty (#press-strip, press-strip.js). */
.press-strip-sec{border-top:1px solid var(--line);padding:60px 0}
.press-strip-in{text-align:center}
.press-strip__head{margin:0;font-family:var(--font-ui);font-weight:700;font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:var(--muted)}
.press-strip__items{max-width:760px;margin:26px auto 0;display:flex;flex-direction:column;gap:22px}
.press-item{text-align:center}
.press-item__headline{display:inline-flex;align-items:baseline;gap:9px;font-family:var(--font-display);font-weight:600;font-size:18px;line-height:1.4;color:var(--ink);text-decoration:none;transition:color var(--dur-fast) var(--ease-out)}
.press-item__headline:hover{color:var(--accent-strong)}
.press-item__ne{flex:none;color:var(--accent-strong)}
.press-item__meta{margin:6px 0 0;font-size:13.5px;line-height:1.5;color:var(--muted)}
.press-strip__all{margin:28px 0 0}
.press-strip__all .link{font-size:15px;font-weight:var(--fw-medium);color:var(--accent-strong);text-decoration:none}
.press-strip__all .link:hover{text-decoration:underline}
@media (max-width:560px){ .press-strip-sec{padding:44px 0} }

/* footer — Broad-daylight reskin: white ground, 1px --line top rule (retire the 2px ink keyline) */
.lfoot{border-top:1px solid var(--line);background:var(--surface)}
/* §3 footer — brand block (logo + program line, stacked) LEFT · the three link columns RIGHT, on one row.
   The marketing footer matches the GLOBAL 1040 page frame (.lwrap) so it aligns with the nav + content on every
   page (ACCEPTANCE §2.14); only the app footer widens to the 1280 tool frame. */
.lfoot .lwrap.lfoot--app{max-width:var(--maxw-app)}
.lfoot-in{display:flex;align-items:flex-start;gap:56px;padding:64px var(--gutter) 40px}
.powered{font-family:var(--font-display);font-weight:600;font-size:15px;color:var(--ink-2);margin:0 0 8px}
.foot-note{font-size:13px;color:var(--muted);max-width:46ch;margin:0;line-height:1.5}
/* §3 footer — wordmark lockup + program line (left brand block; ONLY these two, nothing below) */
.foot-brand{flex:0 0 auto;max-width:260px}
.foot-wordmark{display:inline-flex;align-items:center;gap:8px;font-family:var(--font-display);font-weight:700;font-size:20px;letter-spacing:-.01em;color:var(--ink);text-decoration:none}
.foot-wordmark .spark{width:22px;height:22px}
.foot-wordmark:hover{color:var(--accent-strong)}
.foot-program{margin:14px 0 0;font-size:15px;color:var(--muted);line-height:1.5;max-width:24ch}
.foot-feedback{margin:14px 0 0}
/* §3 footer — legal disclaimer + © line, muted, on a hairline rule below the columns */
.foot-legal{display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;border-top:1px solid var(--line);margin-top:8px;padding:20px var(--gutter) 8px}
.foot-legal p{margin:0;font-size:13px;color:var(--muted);line-height:1.5}
/* Q100 — product-planning credit line, footer type + tokens */
.foot-credit{font-size:13px;color:var(--muted);margin:8px 0 0;line-height:1.5;display:none}   /* Q121 — OFF until the credit flag is flipped */
.footer-credit-on .foot-credit{display:block}   /* Q121 — window.QA_FOOTER_CREDIT_SHOW=true reveals it everywhere */
.foot-links{display:flex;gap:20px;align-items:flex-start}
.foot-links a{font-size:14px;font-weight:500;color:var(--ink-2);text-decoration:none}
.foot-links a:hover{color:var(--accent-strong)}
.lfoot .foot-col .link:hover{color:var(--accent-strong)}

/* one-time scroll fade */
.fade{opacity:0;transform:translateY(14px);transition:opacity .6s ease,transform .6s ease}
.fade.in{opacity:1;transform:none}
@media (prefers-reduced-motion: reduce){
  .fade{opacity:1;transform:none;transition:none}
  .pcard,.btn,.btn-outline{transition:none}
}

/* A1: one primary path — a compact numbered sequence; secondary link stays quiet */
.hero-secondary{align-self:center;font-weight:600;color:var(--ink-2);text-decoration:underline;text-underline-offset:3px}
.hero-steps{list-style:none;margin:24px 0 0;padding:0;display:grid;gap:9px;max-width:36ch}
.hero-steps li{display:flex;align-items:center;gap:11px;font-size:15px;line-height:1.3;color:var(--ink-2);font-weight:500}
/* Q484 — only the leading number is a circled step badge (NOT the banned dotted pill); the text span is plain */
.hero-steps li>span:first-child{flex:none;width:26px;height:26px;border-radius:50%;display:grid;place-items:center;font-family:var(--font-display);font-weight:var(--fw-display);font-size:13px;background:var(--accent-soft);color:var(--accent-strong)}
/* Q484 — "How it works" section moved below the hero: steps + the two exploratory links, quiet and uncrowded */
.howto-wrap h2.display{font-size:clamp(26px,4vw,34px);margin:0 0 20px}
.howto-steps{margin:0;max-width:44ch}
.howto-links{display:flex;flex-wrap:wrap;gap:14px;margin:24px 0 0}
/* Q484 — one tidy secondary row under the front-door (re-election fork + "New here?" trigger), quiet + inline */
/* both secondary-row items (re-election fork + "New here?" trigger) share ONE size + baseline so neither
   looks smaller or nudged up next to the other */
.hero-secondary-row{display:flex;flex-wrap:wrap;align-items:baseline;gap:8px 18px;margin:16px 0 0;font-size:14px;line-height:1.5}
.hero-secondary-row>*{margin:0;font-size:14px;line-height:1.5}

/* "What you'll receive" — Broad-daylight reskin: ONE 720px card, rows divided by --line,
   a 20px --accent check + Inter 500 16.5 label, 44px+ rows. */
.receive{list-style:none;margin:40px auto 0;padding:0;max-width:720px;width:100%;
  background:var(--surface);border:1px solid var(--line);border-radius:var(--r-xl);box-shadow:var(--shadow-soft);
  text-align:left}
.receive li{position:relative;display:flex;align-items:center;gap:16px;min-height:44px;
  padding:19px 28px 19px 56px;font-weight:var(--fw-medium);font-size:16.5px;line-height:1.35;color:var(--ink)}
.receive li + li{border-top:1px solid var(--line)}
.receive li::before{content:"";position:absolute;left:28px;top:50%;margin-top:-4px;width:13px;height:8px;
  border-left:2.5px solid var(--accent);border-bottom:2.5px solid var(--accent);transform:rotate(-45deg)}

/* SUPPORT JOURNEY — JOURNEY-REDLINE 12a. --paper well, centered: H2 + a filled --accent track carrying the
   stage nodes (Interest → Petition → Campaign → Election Day) to the spark terminus ("Elected."). Each stage's
   locked support line sits beneath its node. Static by construction (reduced-motion safe). Tokens only. */
.journey-wrap{background:var(--paper);padding:var(--space-11) 0;text-align:center}
.journey-title{font-family:var(--font-display);font-weight:var(--fw-display);font-size:clamp(30px,4.4vw,44px);line-height:1.08;letter-spacing:-.015em;color:var(--ink);margin:0}
.journey{position:relative;max-width:940px;margin:64px auto 0}
/* the filled track — anchored first-node-center (10%) to terminus-center (90%), at the 48px node-cell center */
.journey-track{position:absolute;top:22.5px;left:10%;right:10%;height:3px;background:var(--accent);border-radius:var(--r-pill)}
.journey-stages{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(5,1fr)}
.journey-stage{display:flex;flex-direction:column;align-items:center;padding:0 8px;min-width:0}
.journey-nodecell{position:relative;z-index:1;height:48px;display:grid;place-items:center}
.journey-node{width:40px;height:40px;border-radius:50%;background:var(--surface);border:1.5px solid var(--accent);display:grid;place-items:center}
.journey-check{width:16px;height:16px;stroke:var(--accent);fill:none}
.journey-spark{width:48px;height:48px;background:url("assets/spark-pride.svg") center/contain no-repeat}
.journey-label{font-family:var(--font-display);font-weight:var(--fw-display);font-size:17px;line-height:1.2;color:var(--ink);margin:14px 0 0}
.journey-support{font-size:13.5px;line-height:1.5;color:var(--muted);margin:6px 0 0;max-width:190px}
.journey-elected{font-family:var(--font-display);font-weight:var(--fw-display);font-size:16px;color:var(--accent-strong);margin:14px 0 0}
/* ≤760 — the 560 mock: a vertical rail, node + stacked stage/support rows, spark terminus (JOURNEY §4) */
@media(max-width:760px){
  .journey{max-width:360px;margin:40px auto 0}
  .journey-track{top:18px;bottom:18px;left:18px;right:auto;width:3px;height:auto}
  .journey-stages{grid-template-columns:1fr;gap:26px;text-align:left}
  .journey-stage{flex-direction:row;align-items:flex-start;gap:16px;padding:0}
  .journey-nodecell{height:auto;flex:none}
  .journey-node{width:36px;height:36px}
  .journey-check{width:14px;height:14px}
  .journey-spark{width:40px;height:40px;margin-left:-2px}
  .journey-label{font-size:16px;margin:0}
  .journey-support{margin:2px 0 0;max-width:none}
  .journey-elected{font-size:17px;margin:8px 0 0}
}

/* Q515 — /nominate/ "who asks" list. Moved here from a bespoke inline <style> so the design guards audit it;
   the marker reuses the CANONICAL checkmark (same rotated-corner pattern as .receive li::before), not a stray · */
.nom-page{max-width:640px}
.nom-page .nominate-form{margin-top:22px}
.nom-who{list-style:none;padding:0;margin:10px 0 0;display:grid;gap:8px}
.nom-who li{position:relative;padding-left:26px;line-height:1.5;color:var(--ink-2)}
.nom-who li::before{content:"";position:absolute;left:4px;top:8px;width:10px;height:6px;border-left:3px solid var(--accent);border-bottom:3px solid var(--accent);transform:rotate(-45deg)}

/* Q238: "You won't be out there alone" — on-your-own vs with-us contrast (protection, not threat) */
.backup-wrap .lead{max-width:60ch;margin-top:14px}
/* Q248 — the "with us" contrast table shares the .card frame; it only keeps table-specific rules here
   (padding:0 so the card frame hugs the cells, overflow:hidden so the cell fills clip to the card radius). */
/* comparison table — Broad-daylight reskin: ONE 880px card, left column --muted on white,
   right column --accent-strong header + 500 ink cells on --accent-wash; --line row rules. */
.backup-table{width:100%;max-width:880px;margin:26px auto 0;border-collapse:separate;border-spacing:0;padding:0;
  overflow:hidden;font-size:14.5px;line-height:1.5;background:var(--surface);border:1px solid var(--line);
  border-radius:var(--r-xl);box-shadow:var(--shadow-soft)}
.backup-table th,.backup-table td{text-align:left;padding:17px 28px;vertical-align:top;border-top:1px solid var(--line)}
.backup-table thead th{border-top:0;font-family:var(--font-ui);font-weight:var(--fw-semibold);font-size:14.5px}
.backup-head--alone{background:var(--surface);color:var(--muted)}
.backup-head--us{background:var(--accent-wash);color:var(--accent-strong)}
.backup-table td:first-child{width:44%;background:var(--surface);color:var(--muted)}
.backup-table td:last-child{background:var(--accent-wash);color:var(--ink);font-weight:var(--fw-medium)}
.backup-note{margin:16px auto 0;font-size:13.5px;line-height:1.5;color:var(--muted);max-width:60ch}
@media(max-width:560px){
  .backup-table{font-size:13.5px}
  .backup-table th,.backup-table td{padding:11px 12px}
}
/* A8: representation block — Broad-daylight reskin: centered display para, then 2-col body|quote */
.rep{max-width:64ch;display:grid;gap:14px}
.rep-wrap{background:var(--surface-2)}   /* section well (--paper alternate) */
.rep-grid{display:block}
.rep-head{max-width:880px;margin:0 auto;text-align:center}
.rep-head .eyebrow.pink{margin:0 0 22px;color:var(--secondary-strong)}
.rep-head .lead--tenor{margin:0}
.rep-cols{display:grid;grid-template-columns:1fr 1fr;gap:56px;max-width:880px;margin:48px auto 0;text-align:left;align-items:start}
.rep-body{margin:0;font-size:15.5px;line-height:1.65;color:var(--muted)}
@media(max-width:760px){.rep-cols{grid-template-columns:1fr;gap:26px}}

/* Two-column prose sections (HOMEPAGE_CONSISTENCY "Prose sections") — readable copy on the left,
   a supporting element on the right; stacks on mobile (copy first). */
.anc-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:48px;align-items:center}
.anc-grid .stats{margin:0;grid-template-columns:1fr 1fr}
.rep-quote{margin:0;border-left:3px solid var(--accent);padding:0 0 0 24px;font-family:var(--font-display);
  font-weight:var(--fw-display);font-size:clamp(19px,2.3vw,21px);line-height:1.5;color:var(--ink)}
.rep-quote__em{color:var(--accent-strong)}
@media(max-width:760px){
  .anc-grid{grid-template-columns:1fr;gap:26px}
}
@media(max-width:560px){.anc-grid .stats{grid-template-columns:1fr}}

/* seat map (QUIZ_BANNER_MOMENT) — Broad-daylight reskin: a centered figure beneath the
   deadline copy (no side-by-side grid); the empty seats do the asking. */
.punch-map{display:block;text-decoration:none;color:inherit;max-width:380px;margin:48px auto 0;border-radius:var(--r-lg);transition:transform .18s var(--ease,ease-out)}
.punch-map:hover,.punch-map:focus-visible{transform:translateY(-3px)}
.punch-map:focus-visible{outline:2px solid #fff;outline-offset:5px}
.punch-map__svg{width:100%;height:auto;display:block;aspect-ratio:112/142;overflow:visible}   /* Q123 — padded viewBox (-6 -6 112 142) + overflow visible so the DC diamond's north & south points (dots at y=0/130) aren't clipped */
.punch-map__count{margin:14px 0 0;text-align:center;font-size:15px;color:var(--on-accent-lede);line-height:1.4}
.punch-map__count b{font-family:var(--font-display);font-variant-numeric:tabular-nums;font-size:26px;font-weight:var(--fw-display);color:#fff}
@media(max-width:560px){.punch-map{max-width:300px}}
@keyframes punchPulse{0%,100%{transform:scale(1);opacity:.85}50%{transform:scale(1.25);opacity:1}}
.punch-pulse{animation:punchPulse 4s ease-in-out infinite}
@media (prefers-reduced-motion:reduce){ .punch-pulse{animation:none!important} }

/* Power messaging (POWER_MESSAGING) — one high tenor beat + the ownership claim band */
.lead--tenor{font-family:var(--font-display);font-size:clamp(24px,3vw,31px);line-height:1.42;letter-spacing:-.01em;color:var(--ink)}
.lead--tenor strong{font-weight:var(--fw-display)}
/* Brand-pink band (Aubrey 2026-07-02: "why can't it be that pink — fun, modern, pops").
   --secondary-strong, NOT --pink: white on the bright pink is 3.5:1 and fails AA for body
   copy; white on the deep pink is 5.8:1 (the v1.1-audited on-white/on-pink pair). Yellow
   strong on it is 4.0:1 -> passes as LARGE text, so the claim's floor is 19px (bold display
   >=18.66px = WCAG large). Tokens only — no hex fallbacks (theme.css always loads first). */
/* mission band — Broad-daylight reskin: full-bleed --secondary-strong, ONE centered
   display para 600 (~33px, max 880px), --highlight lead-in phrase, ghost white pill link.
   The page's second and last full-bleed color field. */
.ownership-wrap{background:var(--secondary-strong);color:var(--on-secondary);padding-block:var(--space-11)}
.ownership-claim{max-width:880px;margin:0 auto;font-family:var(--font-display);font-weight:var(--fw-display);
  font-size:clamp(23px,3vw,33px);line-height:1.42;letter-spacing:-.01em;text-align:center}
/* the yellow lead-in is text-only at display size on --secondary-strong (4.05:1, large-text AA) */
.ownership-claim strong{color:var(--highlight);font-weight:inherit}
.ownership-more{text-align:center;margin:36px 0 0}
.ownership-more .link{display:inline-flex;align-items:center;height:52px;padding:0 30px;
  border:1.5px solid rgba(255,255,255,.9);border-radius:var(--r-pill);
  color:var(--on-secondary);text-decoration:none;font-weight:var(--fw-semibold);font-size:15.5px;
  transition:background var(--dur-fast) var(--ease)}
.ownership-more .link:hover{background:rgba(255,255,255,.1);color:var(--on-secondary)}

/* Footer columns — three columns to the RIGHT of the brand block (mock 5a). flex:1 fills the space beside the
   brand so they never wrap below it; min-width:0 lets the long email column shrink. Stack under the brand ≤760. */
.foot-cols{flex:1 1 0;min-width:0;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:26px 40px}
@media (max-width:760px){ .lfoot-in{flex-direction:column;gap:32px} .foot-cols{width:100%;grid-template-columns:repeat(2,minmax(0,1fr))} }
@media (max-width:560px){ .foot-cols{grid-template-columns:1fr} }
.foot-colhead{margin:0 0 8px;opacity:.85}
.foot-col ul{list-style:none;margin:0;padding:0;display:grid;gap:9px}
.foot-col li{line-height:1.25}
.foot-col .link{display:inline-block;padding:3px 0;min-height:24px;overflow-wrap:anywhere}

/* The 60-second front door (FRONT_DOOR_SPEC) — Broad-daylight reskin: a Google-style
   search bar as the hero's single action. 640×64 pill, 1px --line-strong, --shadow-soft-lg,
   with the submit as a primary pill inset right. */
.fd-form{margin:38px auto 0;width:100%;max-width:640px}
.fd-label{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}   /* the seat-finder label is visually the placeholder; keep it for a11y */
.fd-row{display:flex;align-items:center;height:64px;background:var(--surface);
  border:1px solid var(--line-strong);border-radius:var(--r-pill);box-shadow:var(--shadow-soft-lg);
  padding:0 8px 0 26px;box-sizing:border-box;gap:0}
/* Fill the pill's cross-axis with align-self:stretch (NOT height:100%, which Safari fails to resolve on a flex
   child — it collapses the input to ~half height and reads scrunched). min-height is a floor so the field can
   never collapse in any browser; the mobile rule below re-sets an explicit height for the stacked layout. */
.fd-row input{flex:1;min-width:0;font:inherit;font-size:16px;color:var(--ink);
  border:0;background:transparent;padding:0;align-self:stretch;min-height:44px;box-sizing:border-box;text-align:left}
.fd-row input::placeholder{color:var(--muted)}
.fd-row input:focus{outline:none;box-shadow:none}
.fd-row:focus-within{border-color:var(--accent)}
body.mktg .fd-row .btn{flex:none;height:48px;min-height:48px;padding:0 26px}
/* Q108 P1-3 — the search bar STACKS on a phone: input pill + full-width submit below.
   The first rule is the guarded contract (test-mobile.js); the reskin styling follows. */
@media(max-width:560px){.fd-row input{min-width:0;flex:1 1 100%}.fd-row .btn{width:100%}}
@media(max-width:560px){
  .fd-row{flex-direction:column;height:auto;background:transparent;border:0;box-shadow:none;padding:0;gap:12px}
  /* Q815 — reset the row's flex:1 1 100% (line 593, for the desktop pill) so the explicit height applies in the
     stacked column layout; without this, flex-basis:100% collapses the input to content height (~22px). Match the
     52px submit below it so the field + button read as one consistent pair. */
  .fd-row input{flex:none;height:52px;padding:0 22px;background:var(--surface);border:1px solid var(--line-strong);border-radius:var(--r-pill);box-shadow:var(--shadow-soft-lg);box-sizing:border-box}
  body.mktg .fd-row .btn{width:100%;height:52px;min-height:52px}
}
.fd-msg{font-size:14px;color:var(--ink-2);margin:8px 0 0;min-height:1em}
.fd-result{border:1px solid var(--line);border-radius:var(--r-xl);background:var(--surface);box-shadow:var(--shadow-soft-lg);padding:20px 22px;margin:14px 0 0;text-align:left}
.fd-seat{font-family:var(--font-display);font-weight:800;font-size:19px;margin:0 0 4px}
.fd-status{font-weight:700;margin:0 0 8px;color:var(--ink-2)}
.fd-status--opp{color:var(--seat-nocand,#FF2E7E)}
.fd-path{font-size:14px;color:var(--ink-2);line-height:1.5;margin:0 0 14px}
.fd-doors{display:flex;flex-wrap:wrap;gap:10px}
/* Q92 inline widget watch offer (partner-attributed) */
.fd-watch{margin:14px 0 0;display:grid;gap:8px}
.fd-watch__t{margin:0;font-weight:700;font-size:15px}
.fd-watch__row{display:flex;flex-wrap:wrap;gap:8px}
.fd-watch__row input{flex:1 1 180px;min-width:150px;min-height:44px;font-size:16px;padding:8px 12px;border:1.5px solid var(--line-strong);border-radius:var(--r,10px);background:var(--surface,#fff);color:var(--ink)}
.fd-watch__consent{display:flex;gap:8px;align-items:flex-start;font-size:13.5px;color:var(--ink-2)}
.fd-watch__consent input{margin-top:3px;min-width:18px;min-height:18px}
.fd-watch__msg{margin:0;font-size:13px;color:var(--ink-2)}
/* Q485 — k-anon interest count under the inline seat-watch capture (below the floor → warm copy, never a "0") */
.fd-watch__count{margin:0;font-size:13px;color:var(--ink-2)}
.fd-watch__count:empty{display:none}
.fd-watch__ok{margin:14px 0 0;font-weight:600}

/* Q96 — overwhelm fallback banner (front-door CTA swap) */
.fd-overwhelm{margin:8px 0 0;padding:16px 18px;border:1px solid var(--line);border-radius:var(--r-xl);background:var(--surface-2)}
.fd-ow-msg{margin:0 0 12px;font-weight:600}

/* Q88/Q488 citywide petition pulse + the shared momentum bands — a quiet front-door stat LINE during the
   petition window (hidden until the band's JS confirms window + k-anon floor). Clean INLINE text, NO dotted
   lozenge pill (a banned pattern, see docs/areas/DESIGN.md): no chip background, no border, no ●-dot. */
.pulse-band{display:block;margin:14px 0 0;font-size:14px;color:var(--ink-2);line-height:1.4}
.pulse-band__n{font-weight:var(--fw-bold,800);color:var(--accent);font-variant-numeric:tabular-nums}
/* Q411 "the wave" — collective momentum band + a quiet share affordance (reuses the .pulse-band pill look) */
.wave-moment{margin:14px 0 0}
.wave-band__ward{margin-left:8px;padding-left:8px;border-left:1.5px solid var(--line)}
.wave-share-row{margin:8px 0 0}
.wave-share{font-size:14px;color:var(--accent);font-weight:var(--fw-bold,800);background:none;border:none;padding:0;cursor:pointer;text-decoration:underline}
/* Q426/Q476 "What brings you here?" — a SUBTLE trigger under the front-door that opens an accessible modal */
.start-here-trigger{margin:14px 0 0}
.start-here-trigger__btn{font-weight:600;color:var(--accent);cursor:pointer}
/* the modal: one .card frame centered on a dimmed backdrop, tokens only */
.start-here-overlay{position:fixed;inset:0;background:rgba(26,22,34,.5);display:flex;align-items:center;justify-content:center;z-index:1000;padding:20px}
.start-here-modal{max-width:460px;width:100%;padding:24px 26px}
.start-here__row{display:flex;align-items:center;justify-content:space-between;gap:8px}
.start-here__h{margin:0}
.start-here__x{background:none;border:none;font-size:24px;line-height:1;cursor:pointer;color:var(--ink-2);min-width:44px;min-height:44px}
.start-here__chips{display:flex;flex-direction:column;gap:10px;margin:14px 0 0}
.start-here__chip{display:inline-flex;align-items:center;min-height:48px;padding:10px 16px;border:1.5px solid var(--line);border-radius:var(--r-pill,999px);text-decoration:none;color:var(--ink);font-weight:600}
.start-here__chip:hover,.start-here__chip:focus-visible{border-color:var(--accent);color:var(--accent)}
.start-here__never{margin:16px 0 0;text-align:center}
.start-here__never-btn{color:var(--muted);font-size:14px}
@media (prefers-reduced-motion: no-preference){ .start-here-overlay{animation:startHereFade .18s ease} }
@keyframes startHereFade{from{opacity:0}to{opacity:1}}
/* Q425 return-visitor welcome-back — device-local greeting (reuses the .pulse-band pill) */
.welcome-back{margin:14px 0 0}
/* Q423/Q484 deadline momentum band — the Aug-5 clock, gain-framed. Clean INLINE text + link, NO dotted pill
   (a banned pattern, see DESIGN.md): no chip background, no border, no leading ●-dot. */
.deadline-band{display:block;margin:16px 0 0;font-size:14px;color:var(--ink-2);line-height:1.4}
.deadline-band__cta{margin-left:2px;color:var(--accent);font-weight:var(--fw-bold,800);text-decoration:underline}
/* Q484 — the re-election fork rendered on the homepage secondary row (inc-fork's own CSS lives in incumbent.css,
   not loaded here); keep it quiet + inline to match the "New here?" trigger. */
.hero-secondary-row .inc-fork{display:inline-flex;align-items:center;gap:6px;font-size:14px;color:var(--muted)}
.hero-secondary-row .inc-fork a{color:var(--accent);text-decoration:underline}
/* Q420 live momentum ticker — reuses the .pulse-band pill; one line at a time, rotates only when motion allowed */
.momentum-ticker{margin:14px 0 0}
.momentum-ticker__t{transition:opacity .2s ease}
@media (prefers-reduced-motion: reduce){.momentum-ticker__t{transition:none}}
