/* RightClickOps Design Tokens — derived from design-tokens.ts */
:root {
  /* Brand colors */
  --color-primary: #2563EB;
  --color-primary-dark: #1D4ED8;
  --color-primary-light: #3B82F6;
  --color-accent: #22D3EE;
  --color-accent-dark: #06B6D4;
  --color-cta: #F97316;
  --color-cta-dark: #EA580C;
  --color-cta-light: #FB923C;

  /* Neutrals */
  --color-bg: #111827;
  --color-surface: #1F2937;
  --color-surface-hover: #374151;
  --color-border: #374151;
  --color-border-light: #4B5563;
  --color-text: #F9FAFB;
  --color-text-muted: #9CA3AF;
  --color-text-dim: #6B7280;
  --color-slate: #6B7280;

  /* Status colors (from statusTone) */
  --color-ready: #2563EB;
  --color-ready-bg: #1E3A8A;
  --color-caveats: #22D3EE;
  --color-caveats-bg: #155E75;
  --color-setup: #F97316;
  --color-setup-bg: #9A3412;
  --color-blocked: #6B7280;
  --color-blocked-bg: #374151;

  /* Semantic */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;

  /* Typography */
  --font-heading: 'Manrope', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', 'Consolas', monospace;

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

  /* Radius (from design-tokens.ts) */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-panel: 0 16px 40px rgba(17, 24, 39, 0.12);
  --shadow-floating: 0 24px 60px rgba(17, 24, 39, 0.18);
  --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.15);
  --shadow-cta-glow: 0 0 20px rgba(249, 115, 22, 0.3);

  /* Motion */
  --motion-fast: 140ms;
  --motion-medium: 220ms;
  --motion-slow: 320ms;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
}
