/* collabd design tokens — the single source of the verdict + surface CSS variables.
 *
 * Extracted verbatim from the design HTML (previously duplicated inline across the
 * three screens). DESIGN.md thesis: COLOR IS THE VERDICT. The only saturated colour
 * in the product is the three verdict states (safe / review / block); surfaces,
 * text, and primary actions stay near-monochrome slate. Every page links this file
 * and defines these variables nowhere else — the M3 gate pages link it too.
 */

:root, [data-theme="dark"] {
  --bg:#0B0F14; --surface-1:#11161D; --surface-2:#161C24; --surface-3:#1C2430;
  --border:#2A323D; --text-primary:#E6EAF0; --text-secondary:#9BA6B4; --text-muted:#6B7686;
  --verdict-safe:#34D399; --verdict-review:#FBBF24; --verdict-block:#F87171;
  --verdict-safe-bg:rgba(52,211,153,.12); --verdict-review-bg:rgba(251,191,36,.12); --verdict-block-bg:rgba(248,113,113,.12);
  --accent:#5B8DEF; --shadow:0 1px 2px rgba(0,0,0,.4),0 8px 24px rgba(0,0,0,.28);
  --verdict-safe-ink:#04140D; /* high-contrast ink for text on the safe-green Ship button */
}
[data-theme="light"] {
  --bg:#FAFAF8; --surface-1:#FFFFFF; --surface-2:#F4F5F3; --surface-3:#FFFFFF;
  --border:#E2E4E0; --text-primary:#1A1D21; --text-secondary:#5A6068; --text-muted:#6B7079;
  --verdict-safe:#047857; --verdict-review:#B45309; --verdict-block:#DC2626;
  --verdict-safe-bg:rgba(4,120,87,.10); --verdict-review-bg:rgba(180,83,9,.10); --verdict-block-bg:rgba(220,38,38,.10);
  --accent:#3B6FD4; --shadow:0 1px 2px rgba(16,20,26,.06),0 8px 24px rgba(16,20,26,.08);
  --verdict-safe-ink:#FFFFFF; /* high-contrast ink for text on the safe-green Ship button */
}
