/* Redproof design tokens: the single source for both the public demo (imported
   directly) and the React cockpit (mapped into tailwind.config.ts via var(--…)).
   Mirrors site/index.html + reports/build.py so every surface looks native. */
:root {
  --paper: #F4F5F7;
  --paper-2: #ECEEF1;
  --card: #FFFFFF;
  --ink: #14181F;
  --ink-soft: #5B6472;
  --line: #DFE2E7;
  --red: #DA2A1C;
  --red-ink: #9E1C12;
  --verified: #117A4F;
  --amber-bg: #FBEFD6;
  --amber-ink: #8A5A00;
  --r: 6px;

  /* severity */
  --sev-critical-bg: #F6D6D1;  --sev-critical-ink: #8E1810;
  --sev-high-bg: #FBE7E4;      --sev-high-ink: #9E1C12;
  --sev-medium-bg: #FBEFD6;    --sev-medium-ink: #8A5A00;
  --sev-low-bg: #E9ECF0;       --sev-low-ink: #5B6472;

  /* status */
  --st-new-bg: #FBE7E4;        --st-new-ink: #9E1C12;
  --st-open-bg: #F6D6D1;       --st-open-ink: #8E1810;
  --st-regressed-bg: #F6D6D1;  --st-regressed-ink: #8E1810;
  --st-resolved-bg: #E2F3EA;   --st-resolved-ink: #117A4F;
  --st-accepted-bg: #E9ECF0;   --st-accepted-ink: #5B6472;

  --font-head: "Space Grotesk", -apple-system, system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
}
