/* Design tokens shared by every stylesheet in app/web/static/css/.
   Palette/type scale lifted from docs/imgs/quotory-landing.html and
   quotory-dashboard.html so the live app matches those reference mockups. */
:root {
  color-scheme: light;

  --steel: #1a3a52;
  --steel-deep: #122b3e;
  --charcoal: #23282e;
  --ink: #31404d;
  --muted: #64768a;
  --faint: #93a3b3;
  --line: #e1e7ed;
  --bg: #f7f8fa;
  --card: #ffffff;

  --accent: #ff5a1f;
  --accent-soft: #fff1ea;
  --accent-line: #ffd6c2;
  --laser: #ff7a3d;

  --green: #1f9d55;
  --green-dark: #178147;
  --green-soft: #eafaf1;

  --red: #d64545;
  --red-soft: #fdecec;
  --amber: #b46900;
  --amber-soft: #fff3cd;

  --radius: 8px;
  --radius-sm: 6px;
  --radius-lg: 14px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
}
