/* ── Choropleth ──────────────────────────────────────────────────────────────
   ⭐ Six QUANTILE bands, not a linear ramp. California alone is 15% of all US
   Form D filings, so a linear scale paints 45 states the same pale colour and
   the map communicates nothing but "California is big", which the reader already
   knew. Equal-count bands make the middle of the distribution legible.
   The ramp is Signal Blue only. ⛔ Node Cyan is a different brand colour and the
   two are not interchangeable, so it never appears as the top band.           */
:root{
  --m0:#E6EEFF; --m1:#C6DAFF; --m2:#9CBEFF; --m3:#679BFB; --m4:#2E72EE; --m5:#0247C4;
  --m-line:#FFFFFF; --tip-bg:#141A24; --tip-ink:#F5F6F8;
}
@media (prefers-color-scheme:dark){:root:not([data-theme="light"]){
  --m0:#141D2E; --m1:#18294B; --m2:#1E3B78; --m3:#2653AC; --m4:#316FD9; --m5:#5B93FF;
  --m-line:#0E1218; --tip-bg:#F5F6F8; --tip-ink:#141A24;
}}
:root[data-theme="dark"]{
  --m0:#141D2E; --m1:#18294B; --m2:#1E3B78; --m3:#2653AC; --m4:#316FD9; --m5:#5B93FF;
  --m-line:#0E1218; --tip-bg:#F5F6F8; --tip-ink:#141A24;
}
.mapsec{margin:38px 0 0}
.mhead{border-bottom:2px solid var(--ink);padding-bottom:11px}
.mhead h1{font-family:Newsreader,Georgia,serif;font-size:36px;font-weight:600;margin:0;
  letter-spacing:-.015em;text-wrap:balance}
.mrule{margin:6px 0 0;font-size:15px;color:var(--mute)}
.mstats{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:1px;
  background:var(--line);border:1px solid var(--line);border-top:0;margin-bottom:26px}
.mstats div{background:var(--card);padding:16px 18px;display:flex;flex-direction:column;gap:2px}
.mstats strong{font-size:25px;font-weight:700;font-variant-numeric:tabular-nums;letter-spacing:-.015em}
.mstats span{font-size:14px;color:var(--mute);letter-spacing:.05em;text-transform:uppercase;font-weight:600}
.mapwrap{margin:0;position:relative}
.mapwrap svg{display:block;width:100%;height:auto}
.st{stroke:var(--m-line);stroke-width:.75;transition:opacity .12s}
.st:hover,.st:focus{opacity:.72;outline:none;stroke:var(--ink);stroke-width:1.5}
.b0{fill:var(--m0)}.b1{fill:var(--m1)}.b2{fill:var(--m2)}
.b3{fill:var(--m3)}.b4{fill:var(--m4)}.b5{fill:var(--m5)}
.tip{position:absolute;pointer-events:none;background:var(--tip-bg);color:var(--tip-ink);
  padding:11px 14px;border-radius:4px;font-size:14.5px;line-height:1.5;z-index:5;
  box-shadow:0 6px 20px rgba(0,0,0,.3);min-width:186px}
.tip b{display:block;font-family:Newsreader,Georgia,serif;font-size:17px;font-weight:600;margin-bottom:4px}
.tip .tr{display:flex;justify-content:space-between;gap:16px;font-variant-numeric:tabular-nums}
.tip .tk{opacity:.72}
.legend{display:flex;align-items:center;gap:0;flex-wrap:wrap;margin:16px 0 0;font-size:14px}
.lgl{font-size:14px;color:var(--mute);letter-spacing:.06em;text-transform:uppercase;
  font-weight:700;margin-right:14px}
.lg{display:flex;align-items:center;gap:7px;margin-right:16px;color:var(--ink-2);
  font-variant-numeric:tabular-nums}
.lg i{width:17px;height:17px;border-radius:2px;border:1px solid var(--line);display:inline-block}
.mnote{margin:26px 0 0;font-size:14.5px;color:var(--ink-2);line-height:1.6;max-width:88ch;
  background:var(--card);border:1px solid var(--line);border-left:3px solid var(--brass);
  padding:18px 20px;border-radius:3px}
.tablesec{margin:46px 0 0}
.tablesec h2{font-family:Newsreader,Georgia,serif;font-size:28px;font-weight:600;margin:0 0 14px;
  padding-bottom:10px;border-bottom:2px solid var(--ink)}
.tscroll{overflow-x:auto}
.mtable{width:100%;border-collapse:collapse;font-size:15px;font-variant-numeric:tabular-nums}
.mtable th{text-align:left;font-size:14px;letter-spacing:.06em;text-transform:uppercase;
  color:var(--mute);font-weight:700;padding:9px 12px;border-bottom:1px solid var(--line);white-space:nowrap}
.mtable td{padding:9px 12px;border-bottom:1px solid var(--line-2)}
.mtable tbody tr:hover{background:var(--card)}
.mtable .n{text-align:right}
.mtable .r{color:var(--brass);font-weight:700;width:44px}
.mtable .ab{color:var(--mute);font-weight:600;width:42px}
@media (max-width:640px){.mhead h1{font-size:27px}.mstats strong{font-size:21px}}
@media (prefers-reduced-motion:reduce){.st{transition:none}}
