:root {
  /* ─── Primary – Sky Blue (Fresh, Professional, Trustworthy) ─── */
  --color-primary: #0284c7;
  --color-primary-light: #0ea5e9;
  --color-primary-dark: #0369a1;
  --color-primary-50: #f0f9ff;
  --color-primary-100: #e0f2fe;

  /* ─── Secondary ─── */
  --color-secondary: #64748b;

  /* ─── Accent – Emerald ─── */
  --color-accent: #059669;
  --color-accent-light: #10b981;
  --color-accent-dark: #047857;

  /* ─── Status Colors ─── */
  --color-danger: #dc2626;
  --color-danger-light: #fef2f2;
  --color-warning: #d97706;
  --color-warning-light: #fffbeb;
  --color-success: #059669;
  --color-success-light: #ecfdf5;

  /* ─── Background & Surfaces ─── */
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-surface-hover: #f1f5f9;

  /* ─── Text ─── */
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;

  /* ─── Borders ─── */
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;

  /* ─── Shadows ─── */
  --color-shadow: rgba(15, 23, 42, 0.04);
  --color-shadow-lg: rgba(15, 23, 42, 0.08);
  --color-overlay: rgba(15, 23, 42, 0.5);

  /* ─── Sidebar (Dark Charcoal) ─── */
  --sidebar-bg: #111827;
  --sidebar-bg-light: #1f2937;
  --sidebar-text: #9ca3af;
  --sidebar-text-hover: #f3f4f6;
  --sidebar-active-bg: rgba(14, 165, 233, 0.1);
  --sidebar-active-text: #7dd3fc;
  --sidebar-active-border: #0ea5e9;
  --sidebar-section-text: #6b7280;
  --sidebar-border: rgba(255, 255, 255, 0.06);
  --sidebar-header-bg: rgba(0, 0, 0, 0.15);

  /* ─── Spacing ─── */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 48px;
  --space-10: 64px;

  /* ─── Typography ─── */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  --text-xs: 0.75rem;
  --text-sm: 0.8125rem;
  --text-base: 0.9375rem;
  --text-lg: 1.0625rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;

  /* ─── Radius ─── */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 14px;
  --radius-full: 9999px;

  /* ─── Box Shadows ─── */
  --shadow-sm: 0 1px 2px var(--color-shadow);
  --shadow-md: 0 2px 8px var(--color-shadow), 0 1px 3px var(--color-shadow);
  --shadow-lg: 0 4px 16px var(--color-shadow-lg), 0 1px 4px var(--color-shadow);
  --shadow-xl: 0 8px 30px var(--color-shadow-lg), 0 2px 8px var(--color-shadow);

  /* ─── Transitions ─── */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;

  /* ─── Z-Index Scale ─── */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal-backdrop: 300;
  --z-modal: 400;
  --z-toast: 500;

  /* ─── Layout Dimensions ─── */
  --sidebar-width: 260px;
  --sidebar-collapsed: 64px;
  --header-height: 60px;
  --content-max-width: 1320px;
}
