/* ==========================================================================
   DESIGN SYSTEM VARIABLES - PROSYS ENTERPRISE
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    /* Color Palette */
    --primary-color: #0f172a;       /* Slate 900 (Deep, authoritative) */
    --primary-accent: #2563eb;      /* Blue 600 (Consulting, trust, expertise) */
    --primary-accent-hover: #1d4ed8;/* Blue 700 */
    --primary-accent-light: #eff6ff;/* Blue 50 */
    
    --secondary-accent: #0d9488;    /* Teal 600 (Innovation, technology, precision) */
    --secondary-accent-hover: #0f766e; /* Teal 700 */
    --secondary-accent-light: #f0fdfa; /* Teal 50 */

    --accent-glow: rgba(37, 99, 235, 0.15);
    --secondary-glow: rgba(13, 148, 136, 0.15);
    
    /* Background Colors (Light Theme) */
    --bg-primary: #f8fafc;          /* Slate 50 (Very clean off-white background) */
    --bg-secondary: #ffffff;        /* Pure White (Cards, distinct sections) */
    --bg-tertiary: #f1f5f9;         /* Slate 100 (Secondary sections, controls) */
    --bg-card: rgba(255, 255, 255, 0.85); /* For Glassmorphism */
    
    /* Text Colors */
    --text-primary: #0f172a;        /* Slate 900 (High contrast heading) */
    --text-secondary: #334155;      /* Slate 700 (Readable body text) */
    --text-muted: #64748b;          /* Slate 500 (Subtle labels, captions) */
    --text-on-accent: #ffffff;      /* White for CTA buttons */
    
    /* Borders & Lines */
    --border-color: #e2e8f0;        /* Slate 200 */
    --border-light: #f1f5f9;        /* Slate 100 */
    --border-focus: #93c5fd;        /* Blue 300 */
    --border-glass: rgba(255, 255, 255, 0.6);
    
    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.04), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.06);
    --shadow-inset: inset 0 2px 4px 0 rgba(15, 23, 42, 0.02);
    --shadow-accent: 0 10px 20px -5px rgba(37, 99, 235, 0.2);
    
    /* Border Radii */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Layout Spacing */
    --container-max-width: 1280px;
    --header-height: 80px;
}
