/* FOMEDA Intelligence Console - design tokens (dark + BASIC blue) */
:root {
  /* Surfaces */
  --bg: #0A0A0A;
  --bg-sunk: #070707;
  --bg-card: #131314;
  --bg-elevated: #1A1A1C;
  --bg-hover: #202023;

  /* Borders */
  --border: #262629;
  --border-light: #34343a;
  --border-strong: #45454d;

  /* Text */
  --text: #FAFAFA;
  --text-secondary: #A6A6AE;
  --text-tertiary: #6E6E78;
  --text-dim: #4A4A52;

  /* Brand accent - BASIC blue */
  --accent: #2563EB;
  --accent-hover: #3B82F6;
  --accent-press: #1D4ED8;
  --accent-dim: rgba(37, 99, 235, 0.14);
  --accent-line: rgba(37, 99, 235, 0.4);

  /* Status */
  --success: #22C55E;
  --success-dim: rgba(34, 197, 94, 0.14);
  --warning: #F59E0B;
  --warning-dim: rgba(245, 158, 11, 0.14);
  --danger: #EF4444;
  --danger-dim: rgba(239, 68, 68, 0.14);
  --info: #38BDF8;

  /* Data viz palette */
  --c1: #2563EB; --c2: #38BDF8; --c3: #22C55E; --c4: #F59E0B;
  --c5: #A855F7; --c6: #EC4899; --c7: #14B8A6; --c8: #F97316;

  /* Typography */
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", "JetBrains Mono", ui-monospace, monospace;

  /* Spacing scale */
  --sp-xs: 4px; --sp-sm: 8px; --sp-md: 16px; --sp-lg: 24px;
  --sp-xl: 32px; --sp-2xl: 48px; --sp-3xl: 64px;

  /* Radius */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;

  /* Layout */
  --sidebar-w: 248px;
  --topbar-h: 60px;

  /* Effects */
  --shadow: 0 1px 2px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --transition: 140ms ease;
}
