/* Nimbus CRM — Design Tokens */
:root {
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Brand */
  --primary: #3457ff;
  --primary-600: #2643d8;
  --primary-700: #1d36b3;
  --primary-soft: #eef2ff;

  /* Accents */
  --purple: #7c3aed;
  --purple-soft: #f3eefe;
  --info: #0ea5e9;
  --info-soft: #e6f6fe;
  --success: #16a34a;
  --success-soft: #e8f7ee;
  --warning: #f59e0b;
  --warning-soft: #fef4e2;
  --danger: #ef4444;
  --danger-soft: #fde8e8;

  /* Neutrals */
  --bg-app: #f5f7fb;
  --bg-surface: #ffffff;
  --bg-elev: #ffffff;
  --bg-sidebar: #0f172a;
  --bg-sidebar-hover: rgba(255,255,255,.06);
  --bg-sidebar-active: rgba(52,87,255,.18);
  --border: #e6eaf2;
  --border-strong: #d6dce8;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-faint: #94a3b8;
  --text-on-sidebar: #cbd5e1;
  --text-on-sidebar-strong: #ffffff;

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(15,23,42,.04);
  --shadow-sm: 0 2px 8px -2px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md: 0 12px 28px -12px rgba(15,23,42,.14), 0 4px 10px -4px rgba(15,23,42,.06);
  --shadow-lg: 0 30px 60px -24px rgba(15,23,42,.22);

  /* Radius (8pt scale) */
  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 18px;

  /* Layout */
  --sidebar-w: 264px;
  --sidebar-w-collapsed: 76px;
  --header-h: 64px;
}
