/* ============================================
   CSS VARIABLES - VAILS Design System
   ============================================ */

:root {
    /* ==========================================
       COLORS - VAILS Palette
       ========================================== */
    
    /* Accent Colors */
    --color-magenta: #d946ef;
    --color-cyan: #22d3ee;
    --color-green: #10b981;
    --color-red: #ef4444;
    --color-blue: #3b82f6;
    --color-orange: #f97316;
    --color-purple: #8b5cf6;
    --color-yellow: #eab308;
    
    /* Backgrounds */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --bg-hover: #f1f3f5;
    --bg-code: #1e1e1e;
    --bg-code-light: #2d2d2d;
    
    /* Text Colors */
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --text-disabled: #d1d5db;
    --text-code: #e4e4e7;
    --text-code-comment: #6b7280;
    
    /* Borders */
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;
    --border-dark: #9ca3af;
    
    /* Status Colors */
    --status-idle: #9ca3af;
    --status-stale: #f97316;
    --status-evaluated: #10b981;
    --status-executing: #3b82f6;
    --status-error: #ef4444;
    
    /* ==========================================
       TYPOGRAPHY
       ========================================== */
    
    /* Font Families */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Font Sizes */
    --font-size-xs: 11px;
    --font-size-sm: 13px;
    --font-size-base: 14px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 28px;
    --font-size-4xl: 32px;
    
    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Line Heights */
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    
    /* ==========================================
       SPACING
       ========================================== */
    
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 40px;
    --spacing-3xl: 48px;
    
    /* ==========================================
       BORDER RADIUS
       ========================================== */
    
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-full: 9999px;
    
    /* ==========================================
       SHADOWS
       ========================================== */
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Glow Shadows (VAILS Style) */
    --shadow-glow-cyan: 0 0 20px rgba(34, 211, 238, 0.3);
    --shadow-glow-magenta: 0 0 20px rgba(217, 70, 239, 0.3);
    --shadow-glow-blue: 0 0 20px rgba(59, 130, 246, 0.3);
    
    /* ==========================================
       TRANSITIONS
       ========================================== */
    
    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;
    
    /* ==========================================
       Z-INDEX LAYERS
       ========================================== */
    
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 500;
    --z-toast: 600;
    --z-tooltip: 700;
    
    /* ==========================================
       LAYOUT
       ========================================== */
    
    --sidebar-width: 320px;
    --header-height: 60px;
    --container-max-width: 1200px;
}