:root {
    /* Brand Colors — Refined Figma Palette */
    --color-navy: #0A0E1A;          /* Premium Deep Navy */
    --color-navy-light: #16213E;    /* Secondary Navy */
    --color-navy-muted: #1F2937;    /* Tertiary Navy */
    
    --color-orange: #F97316;        /* Primary Brand Accent */
    --color-orange-hover: #EA580C;
    --color-orange-light: rgba(249, 115, 22, 0.1);

    --color-cream: #FDF2E9;         /* Warm Highlight Background */
    --color-cream-dark: #F7E4D3;
    
    --color-white: #FFFFFF;
    --color-white-muted: rgba(255, 255, 255, 0.7);
    
    --color-text: #1F2937;
    --color-text-light: #4B5563;
    --color-muted: #6B7280;
    --color-border: #E5E7EB;
    --color-card-bg: #F9FAFB;
    
    --color-success: #10B981;
    --color-error: #EF4444;

    /* Typography */
    --font-family-display: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-family-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    --font-size-hero: 3.5rem;
    --font-size-5xl: 3rem;
    --font-size-4xl: 2.25rem;
    --font-size-3xl: 1.875rem;
    --font-size-2xl: 1.5rem;
    --font-size-xl: 1.25rem;
    --font-size-lg: 1.125rem;
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-xs: 0.75rem;

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 750; /* Extra bold for headings */

    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.7;

    /* Spacing Scale (8px system) */
    --spacing-1: 0.25rem;  /* 4px */
    --spacing-2: 0.5rem;   /* 8px */
    --spacing-3: 0.75rem;  /* 12px */
    --spacing-4: 1rem;     /* 16px */
    --spacing-5: 1.25rem;  /* 20px */
    --spacing-6: 1.5rem;   /* 24px */
    --spacing-8: 2rem;     /* 32px */
    --spacing-10: 2.5rem;  /* 40px */
    --spacing-12: 3rem;    /* 48px */
    --spacing-16: 4rem;    /* 64px */
    --spacing-20: 5rem;    /* 80px */
    --spacing-24: 6rem;    /* 96px */

    /* Effects */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lift: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.4s ease;

    /* Grid */
    --container-width: 1200px;
    --container-narrow: 800px;
}
