/* ============================================================
   FieldRunner Design System — Tokens (the project-wide base)
   Source of truth: plan/design-system.md §2 (fieldrunner-planning).
   Verbatim from the Console design handoff. Do not eyeball — edit here.
   ============================================================ */
:root{
  color-scheme:dark;     /* render native controls (selects + their option popups), scrollbars, etc. in dark mode */
  /* --- canvas / surfaces --- */
  --bg:#070708;          /* app background (near-black) */
  --card:#0d0d0f;        /* card / surface fill */
  --card-hi:#141417;     /* card hover fill */
  --grid-line:#141416;   /* blueprint-grid line colour (OPAQUE — see shell.css .main); nudge toward/away from --bg to fade/strengthen */

  /* --- hairlines --- */
  --line:rgba(255,255,255,.085);   /* hairline borders / dividers */
  --line-2:rgba(255,255,255,.16);  /* stronger / hover borders */

  /* --- text --- */
  --text:#d8d8dd;        /* primary text */
  --text-2:#9a9aa0;      /* secondary text */
  --muted:#6c6c72;       /* muted / tertiary */
  --faint:#4a4a50;       /* faintest — mono tags, idle icons */

  /* --- status grammar: green=healthy · amber=warning · red=alert · blue="needs you" --- */
  --green:#3fb84f;       --green-2:#5ed06d;  --green-soft:rgba(63,184,79,.12);
  --alert:#ef5340;       --alert-2:#ff6a58;  --alert-soft:rgba(239,83,64,.12);
  --amber:#d8a23e;       --amber-2:#e8b65a;  --amber-soft:rgba(216,162,62,.14);
  --blue:#3f8ee8;        --blue-2:#62a6f5;   --blue-soft:rgba(63,142,232,.12);

  /* --- type --- */
  --f-sans:-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Helvetica,Arial,sans-serif;
  --f-mono:"IBM Plex Mono",ui-monospace,"SF Mono",Menlo,monospace;
}
