/* Neutrino design tokens — the single source of truth for the shared monochrome
 * palette + one restrained accent, radii, and layout sizing.
 *
 * SYNCED FILE: this exact content is duplicated in both repos —
 *   - neutrino-console: console-frontend/src/tokens.css
 *   - landing:          public/tokens.css
 * Edit both together; keep them byte-identical. Responsive `--gutter` overrides
 * (media queries) live in each site's own styles.css, not here. */
:root {
  --ink: #0a0a0a;
  --gray-800: #1a1a1a;
  --gray-700: #2e2e2e;
  --gray-600: #525252;
  --gray-500: #737373;
  --gray-400: #a3a3a3;
  --gray-300: #d4d4d4;
  --gray-200: #e5e5e5;
  --gray-100: #f2f2f2;
  --gray-50: #fafafa;
  --white: #ffffff;

  --accent: #1e40af;
  --accent-hover: #1b388f;

  --ok: #15803d;
  --bad: #b91c1c;

  --radius: 6px;
  --radius-sm: 4px;
  --maxw: 1120px;
  --gutter: 96px;
}
