/* CSS Variables and Tokens - Design System */

:root {
    /* Brand Palette */
    --color-primary: #0a2540;
    --color-primary-dark: #051424;
    --color-primary-light: #163d6b;
    --color-accent: #ff5c35;
    --color-accent-hover: #e0451f;
    --color-accent-light: #fff3f0;
    
    /* System Palette */
    --color-bg-main: #f8fafc;
    --color-bg-surface: #ffffff;
    --color-text-main: #1e293b;
    --color-text-muted: #64748b;
    --color-text-on-primary: #ffffff;
    --color-border: #e2e8f0;
    --color-border-hover: #cbd5e1;
    --color-success: #10b981;
    --color-error: #ef4444;

    /* Semantic Accent Shades */
    --color-blue-tint: #e6f0fa;
    --color-orange-tint: #fff2ed;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 25px -5px rgba(10, 37, 64, 0.08), 0 8px 10px -6px rgba(10, 37, 64, 0.04);
    --shadow-premium: 0 20px 40px -15px rgba(10, 37, 64, 0.12);

    /* Radii */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Containers */
    --container-max: 1440px;
    --section-padding: 80px 20px;
    --section-padding-mobile: 48px 16px;

    /* Typography */
    --font-sans: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Product Specific Branding Accents */
    --color-product-job-nest: #8b5cf6;
    --color-product-crm: #3b82f6;
    --color-product-hrms: #7B92A6;
    --color-product-cloud-calling: #f97316;
    --color-product-notification: #14b8a6;
    --color-product-toll-free: #ef4444;
    --color-product-meeting: #65888C;
}

