/* =========================================================================
   isaigonnatakemyjob — stylesheet
   Palette roles are declared once here and referenced by role everywhere.
   ========================================================================= */

:root {
  color-scheme: light;

  /* surfaces & ink */
  --plane:        #f9f9f7;
  --surface:      #fcfcfb;
  --surface-sunk: #f2f1ec;
  --ink:          #0b0b0b;
  --ink-2:        #52514e;
  --ink-3:        #898781;
  --rule:         #e1e0d9;
  --rule-strong:  #c3c2b7;
  --ring:         rgba(11, 11, 11, .10);

  /* data */
  --series:       #2a78d6;
  --series-soft:  #cde2fb;
  --seq-100:      #cde2fb;
  --seq-250:      #86b6ef;
  --seq-450:      #2a78d6;
  --seq-600:      #184f95;

  /* status (fixed, never themed — always shipped with a text label) */
  --st-dead:      #0b0b0b;
  --st-critical:  #d03b3b;
  --st-serious:   #ec835a;
  --st-warning:   #fab219;
  --st-good:      #0ca30c;

  --shadow: 0 1px 2px rgba(11,11,11,.04), 0 8px 24px -16px rgba(11,11,11,.18);

  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-ui: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --wrap: 1120px;
}

/* dark values live under both scopes: the media query covers the OS setting,
   the [data-theme] scope covers the on-page toggle, which wins either way. */
@media (prefers-color-scheme: dark) {
  :root:where(:not([data-theme="light"])) {
    color-scheme: dark;
    --plane: #0d0d0d;  --surface: #1a1a19;  --surface-sunk: #131312;
    --ink: #ffffff;    --ink-2: #c3c2b7;    --ink-3: #898781;
    --rule: #2c2c2a;   --rule-strong: #383835;
    --ring: rgba(255,255,255,.10);
    --series: #3987e5; --series-soft: #184f95;
    --seq-100: #0d366b; --seq-250: #184f95; --seq-450: #3987e5; --seq-600: #86b6ef;
    --st-dead: #898781;
    --shadow: 0 1px 2px rgba(0,0,0,.4), 0 8px 24px -16px rgba(0,0,0,.7);
  }
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --plane: #0d0d0d;  --surface: #1a1a19;  --surface-sunk: #131312;
  --ink: #ffffff;    --ink-2: #c3c2b7;    --ink-3: #898781;
  --rule: #2c2c2a;   --rule-strong: #383835;
  --ring: rgba(255,255,255,.10);
  --series: #3987e5; --series-soft: #184f95;
  --seq-100: #0d366b; --seq-250: #184f95; --seq-450: #3987e5; --seq-600: #86b6ef;
  --st-dead: #898781;
  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 8px 24px -16px rgba(0,0,0,.7);
}

/* ------------------------------------------------------------------ base */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--plane);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--series); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--ink); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0; letter-spacing: -.012em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.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;
}
:focus-visible { outline: 2px solid var(--series); outline-offset: 2px; border-radius: 3px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); margin: 0 0 14px;
}

/* ----------------------------------------------------------------- topbar */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--plane) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.topbar .wrap { display: flex; align-items: center; gap: 20px; height: 56px; }
.brand {
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  letter-spacing: -.01em; color: var(--ink); text-decoration: none; white-space: nowrap;
}
.brand span { color: var(--ink-3); }
.topnav { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.topnav a {
  font-size: 13px; color: var(--ink-2); text-decoration: none;
  padding: 6px 10px; border-radius: 6px;
}
.topnav a:hover { background: var(--surface-sunk); color: var(--ink); }
.theme-toggle {
  border: 1px solid var(--rule); background: var(--surface); color: var(--ink-2);
  width: 32px; height: 32px; border-radius: 8px; cursor: pointer;
  display: grid; place-items: center; font-size: 14px; margin-left: 6px;
}
.theme-toggle:hover { color: var(--ink); border-color: var(--rule-strong); }
@media (max-width: 720px) { .topnav a:not(.keep) { display: none; } }

/* ------------------------------------------------------------------- hero */
.hero { padding: 72px 0 40px; border-bottom: 1px solid var(--rule); }
.hero h1 {
  font-size: clamp(40px, 7.2vw, 76px);
  max-width: 15ch;
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--ink-2); }
.hero-lede {
  font-size: clamp(17px, 2vw, 20px); color: var(--ink-2);
  max-width: 62ch; margin: 0 0 8px; font-family: var(--font-display);
}
.hero-meta {
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-3);
  margin-top: 22px; display: flex; flex-wrap: wrap; gap: 6px 18px;
}

/* --------------------------------------------------------------- checker */
.checker {
  margin-top: 36px; background: var(--surface); border: 1px solid var(--rule);
  border-radius: 14px; padding: 22px; box-shadow: var(--shadow);
}
.checker label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.checker-input {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--rule-strong); border-radius: 10px;
  background: var(--plane); padding: 0 14px;
}
.checker-input:focus-within { border-color: var(--series); box-shadow: 0 0 0 3px var(--series-soft); }
.checker-input input {
  flex: 1; border: 0; background: transparent; color: var(--ink);
  font: 400 17px/1.4 var(--font-ui); padding: 14px 0; min-width: 0;
}
.checker-input input:focus { outline: none; }
.checker-input .glyph { color: var(--ink-3); font-size: 15px; }
.suggest { margin-top: 12px; font-size: 13px; color: var(--ink-3); display: flex; flex-wrap: wrap; gap: 6px; align-items: baseline; }
.suggest button {
  font: inherit; font-size: 12px; cursor: pointer; color: var(--ink-2);
  background: var(--surface-sunk); border: 1px solid var(--rule);
  padding: 3px 9px; border-radius: 999px;
}
.suggest button:hover { border-color: var(--series); color: var(--series); }
.verdict { margin-top: 18px; display: grid; gap: 12px; }
.verdict:empty { display: none; }

/* --------------------------------------------------------------- verdict */
.vcard {
  border: 1px solid var(--rule); border-left: 4px solid var(--status, var(--rule-strong));
  border-radius: 10px; padding: 16px 18px; background: var(--plane);
}
.vcard h4 { margin: 0 0 4px; font-family: var(--font-ui); font-size: 16px; font-weight: 650; }
.vcard p { margin: 8px 0 0; font-size: 14px; color: var(--ink-2); }
.vcard .src { margin-top: 10px; font-size: 12px; }
.vempty {
  border: 1px dashed var(--rule-strong); border-radius: 10px; padding: 16px 18px;
  font-size: 14px; color: var(--ink-2); background: var(--plane);
}

/* ---------------------------------------------------------------- badges */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em;
  text-transform: uppercase; font-weight: 600;
  padding: 3px 8px; border-radius: 999px;
  border: 1px solid var(--status); color: var(--status);
  background: color-mix(in srgb, var(--status) 8%, transparent);
  white-space: nowrap;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--status); flex: none; }
.badge.sq .dot { border-radius: 2px; }
.badge.tri .dot { border-radius: 1px; transform: rotate(45deg); width: 6px; height: 6px; }

[data-status="critical"], [data-status="dying"] { --status: var(--st-critical); }
[data-status="endangered"] { --status: var(--st-serious); }
[data-status="adapting"], [data-status="at-risk"] { --status: var(--st-warning); }
[data-status="resilient"] { --status: var(--st-good); }
[data-status="dead"] { --status: var(--st-dead); }

.tag {
  display: inline-block; font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-3); border: 1px solid var(--rule); border-radius: 4px;
  padding: 2px 7px; white-space: nowrap;
}

/* -------------------------------------------------------------- sections */
section.band { padding: 64px 0; border-bottom: 1px solid var(--rule); }
.section-head { max-width: 68ch; margin-bottom: 32px; }
.section-head h2 { font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 12px; }
.section-head p { color: var(--ink-2); margin: 0; font-size: 16px; }

/* ------------------------------------------------------------ stat tiles */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); border-radius: 12px; overflow: hidden; }
@media (max-width: 900px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .tiles { grid-template-columns: 1fr; } }
.tile { background: var(--surface); padding: 20px; display: flex; flex-direction: column; gap: 6px; }
.tile .val {
  font-family: var(--font-ui); font-size: clamp(28px, 4vw, 38px);
  font-weight: 600; line-height: 1.05; letter-spacing: -.02em;
}
.tile .lab { font-size: 13px; font-weight: 600; color: var(--ink); }
.tile .det { font-size: 12.5px; color: var(--ink-2); line-height: 1.5; }
.tile .src { font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-3); margin-top: auto; padding-top: 8px; }

/* ------------------------------------------------------------- figures */
.figs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
@media (max-width: 900px) { .figs { grid-template-columns: 1fr; } }
figure.chart {
  margin: 0; background: var(--surface); border: 1px solid var(--rule);
  border-radius: 12px; padding: 20px;
}
figure.chart figcaption { margin-bottom: 4px; }
figure.chart .title { font-size: 15px; font-weight: 650; }
figure.chart .sub { font-size: 12.5px; color: var(--ink-2); margin-top: 3px; }
.chart-body { margin-top: 18px; position: relative; }
.chart svg { display: block; width: 100%; height: auto; overflow: visible; font-family: var(--font-ui); }
.chart .axis-label { font-size: 11px; fill: var(--ink-3); font-variant-numeric: tabular-nums; }
.chart .grid line { stroke: var(--rule); stroke-width: 1; shape-rendering: crispEdges; }
.chart .baseline { stroke: var(--rule-strong); stroke-width: 1; shape-rendering: crispEdges; }
.chart .bar { fill: var(--seq-450); }
.chart .bar:hover { fill: var(--seq-600); }
.chart .hit { fill: transparent; cursor: pointer; }
.chart .val-label { font-size: 11px; fill: var(--ink-2); font-variant-numeric: tabular-nums; font-weight: 600; }
.chart-foot { margin-top: 14px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.chart-foot .note { font-size: 11.5px; color: var(--ink-3); max-width: 46ch; }
.linkish {
  font: inherit; font-size: 12px; background: none; border: 0; cursor: pointer;
  color: var(--series); padding: 0; text-decoration: underline; text-underline-offset: 2px;
}
table.dataview { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 12px; }
table.dataview th, table.dataview td { text-align: left; padding: 6px 10px; border-bottom: 1px solid var(--rule); }
table.dataview th { font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-3); font-weight: 600; }
table.dataview td.num { text-align: right; font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
[hidden] { display: none !important; }

.tooltip {
  position: absolute; pointer-events: none; z-index: 20;
  background: var(--ink); color: var(--plane);
  font-size: 12px; line-height: 1.4; padding: 7px 10px; border-radius: 7px;
  white-space: nowrap; transform: translate(-50%, -120%); opacity: 0;
  transition: opacity .1s linear;
}
.tooltip.on { opacity: 1; }
.tooltip b { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* ----------------------------------------------------------------- tabs */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--rule); margin-bottom: 28px; overflow-x: auto; }
.tabs button {
  font: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
  background: none; border: 0; border-bottom: 2px solid transparent;
  color: var(--ink-3); padding: 10px 14px; white-space: nowrap;
}
.tabs button:hover { color: var(--ink); }
.tabs button[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--ink); }
.tabs button .n { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); margin-left: 6px; }

/* -------------------------------------------------------------- controls */
.controls { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 22px; }
.search {
  display: flex; align-items: center; gap: 8px; border: 1px solid var(--rule-strong);
  border-radius: 8px; background: var(--surface); padding: 0 12px; flex: 1 1 220px; max-width: 320px;
}
.search input { border: 0; background: none; color: var(--ink); font: inherit; font-size: 14px; padding: 9px 0; width: 100%; }
.search input:focus { outline: none; }
.search .glyph { color: var(--ink-3); font-size: 13px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font: inherit; font-size: 12.5px; cursor: pointer;
  background: var(--surface); border: 1px solid var(--rule); color: var(--ink-2);
  padding: 6px 11px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px;
}
.chip:hover { border-color: var(--rule-strong); color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--plane); }
.chip[aria-pressed="true"] .dot { box-shadow: 0 0 0 1.5px var(--plane); }
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--status, var(--ink-3)); flex: none; }
.chip .n { font-family: var(--font-mono); font-size: 11px; opacity: .65; }
select.sortsel {
  font: inherit; font-size: 13px; color: var(--ink); background: var(--surface);
  border: 1px solid var(--rule); border-radius: 8px; padding: 8px 10px; cursor: pointer;
}
.result-count { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); margin-left: auto; }

/* ----------------------------------------------------------------- cards */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; }
.card {
  background: var(--surface); border: 1px solid var(--rule); border-radius: 12px;
  padding: 18px; display: flex; flex-direction: column; gap: 10px;
}
.card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.card h3 { font-family: var(--font-ui); font-size: 16.5px; font-weight: 650; line-height: 1.3; letter-spacing: 0; }
.card .cat { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); margin-top: 3px; }
.card .body { font-size: 14px; color: var(--ink-2); margin: 0; }
.card .ev {
  font-size: 13.5px; color: var(--ink); background: var(--surface-sunk);
  border-radius: 8px; padding: 11px 12px; line-height: 1.55;
}
.card details summary {
  cursor: pointer; font-size: 13px; color: var(--ink-2); list-style: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.card details summary::-webkit-details-marker { display: none; }
.card details summary::before { content: "＋"; font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); }
.card details[open] summary::before { content: "－"; }
.card details p { font-size: 13.5px; color: var(--ink-2); margin: 10px 0 0; }
.card .src { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); margin-top: auto; padding-top: 4px; }
.card .src a { color: var(--ink-3); }
.card .src a:hover { color: var(--series); }

/* --------------------------------------------------------------- ledger */
.ledger { border: 1px solid var(--rule); border-radius: 12px; overflow: hidden; background: var(--surface); }
.lrow { display: grid; grid-template-columns: 108px 1fr 132px 110px; gap: 16px; align-items: start;
  padding: 16px 18px; border-bottom: 1px solid var(--rule); }
.lrow:last-child { border-bottom: 0; }
.lrow:hover { background: var(--surface-sunk); }
.lrow .when { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); padding-top: 2px; }
.lrow .who { min-width: 0; }
.lrow .who .name { font-size: 16px; font-weight: 650; }
.lrow .who .sect { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.lrow .who .quote { font-size: 13.5px; color: var(--ink-2); margin: 9px 0 0; line-height: 1.55; }
.lrow .who .roles { font-size: 12.5px; color: var(--ink-3); margin: 7px 0 0; }
.lrow .who .note { font-size: 12.5px; color: var(--ink-3); margin: 7px 0 0; font-style: italic; }
.lrow .howmany { text-align: right; }
.lrow .howmany .n { font-family: var(--font-ui); font-size: 22px; font-weight: 600; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.lrow .howmany .p { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-3); }
.lrow .meta { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; text-align: right; }
.lrow .meta .src { font-family: var(--font-mono); font-size: 11px; }
@media (max-width: 820px) {
  .lrow { grid-template-columns: 1fr auto; gap: 8px 14px; }
  .lrow .when { grid-column: 1 / -1; }
  .lrow .who { grid-column: 1 / -1; order: 3; }
  .lrow .howmany { text-align: left; }
  .lrow .meta { align-items: flex-end; }
}

/* -------------------------------------------------------------- epitaph */
.grave {
  background: var(--surface); border: 1px solid var(--rule); border-radius: 12px;
  padding: 20px; display: flex; flex-direction: column; gap: 12px;
}
.grave .head { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.grave h3 { font-family: var(--font-display); font-size: 21px; letter-spacing: -.01em; }
.grave .dates { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-3); margin-top: 4px; }
.grave .what { font-size: 13.5px; color: var(--ink-2); margin: 0; }
.grave .epitaph { font-family: var(--font-display); font-size: 15.5px; line-height: 1.6; margin: 0; color: var(--ink); }
.grave .killer {
  font-size: 12.5px; color: var(--ink-2); border-left: 2px solid var(--rule-strong);
  padding-left: 11px;
}
.grave .killer b { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-3); display: block; margin-bottom: 2px; font-weight: 600; }
.numlist { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); border-radius: 8px; overflow: hidden; }
.numlist li { background: var(--surface); display: flex; justify-content: space-between; gap: 14px;
  padding: 8px 11px; font-size: 12.5px; }
.numlist li .k { color: var(--ink-3); font-family: var(--font-mono); font-size: 11px; flex: none; max-width: 42%; }
.numlist li .v { color: var(--ink); text-align: right; font-variant-numeric: tabular-nums; }

/* -------------------------------------------------------------- method */
.stat-list { display: grid; gap: 14px; }
.stat-item {
  background: var(--surface); border: 1px solid var(--rule); border-radius: 10px; padding: 16px 18px;
}
.stat-item .s { font-size: 15px; color: var(--ink); margin: 0; }
.stat-item .d { font-size: 13.5px; color: var(--ink-2); margin: 8px 0 0; }
.stat-item .src { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); margin-top: 10px; }
.prose { max-width: 68ch; }
.prose p { color: var(--ink-2); font-size: 15.5px; }
.prose h3 { font-family: var(--font-ui); font-size: 16px; font-weight: 650; margin: 26px 0 6px; }
.prose ul { color: var(--ink-2); font-size: 15px; padding-left: 20px; }
.prose li { margin-bottom: 6px; }
.callout {
  border-left: 3px solid var(--series); background: var(--surface); padding: 14px 18px;
  border-radius: 0 10px 10px 0; font-size: 14.5px; color: var(--ink-2); margin: 20px 0;
}

/* -------------------------------------------------------------- footer */
footer.site { padding: 44px 0 64px; color: var(--ink-3); font-size: 13px; }
footer.site .row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
footer.site a { color: var(--ink-2); }

.empty-state { border: 1px dashed var(--rule-strong); border-radius: 12px; padding: 40px;
  text-align: center; color: var(--ink-3); font-size: 14px; }

/* ------------------------------------------------- answer & FAQ sections */
.lead-answer {
  font-family: var(--font-display); font-size: clamp(18px, 2.1vw, 21px);
  line-height: 1.55; color: var(--ink);
}
.prose ol { color: var(--ink-2); font-size: 15px; padding-left: 20px; }
.prose ol li { margin-bottom: 12px; }
.prose ol li b { color: var(--ink); }
.src-inline {
  display: inline-block; font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .04em; color: var(--ink-3); border: 1px solid var(--rule);
  border-radius: 4px; padding: 1px 6px; margin-left: 4px; vertical-align: 1px;
  white-space: nowrap;
}
.faq-list { display: grid; gap: 14px; max-width: 76ch; }
.faq-item {
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: 10px; padding: 18px 20px;
}
.faq-q { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.faq-item h3 {
  font-family: var(--font-ui); font-size: 16.5px; font-weight: 650;
  line-height: 1.35; margin: 0;
}
.faq-a { font-size: 14.5px; color: var(--ink-2); margin: 10px 0 0; line-height: 1.6; }
.faq-h { font-size: 13.5px; color: var(--ink-2); margin: 8px 0 0; }
.faq-h b { color: var(--ink); }
.faq-item .src { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); margin: 12px 0 0; }
.faq-item .src a { color: var(--ink-3); }
.faq-item .src a:hover { color: var(--series); }
a.src-inline { text-decoration: none; }
a.src-inline:hover { border-color: var(--series); color: var(--series); }
