:root {
    /* Color Palette - Dark Mode Theme from Logo */
    --navy-deep: #1C2637;
    --navy-deeper: #141B28;
    --navy-card: #232D3F;
    --blue-accent: #4A9FFF;
    --blue-light: #6AB4FF;
    --emerald-growth: #10B981;
    --gold-premium: #D4AF37;
    --gray-dark: #2A3441;
    --gray-medium: #8B92A0;
    --gray-light: #3A4557;
    --white: #FFFFFF;
    --logo-bg: #0e172b;

    /* Semantic Colors - Dark Mode */
    --color-bg-primary: var(--navy-deeper);
    --color-bg-secondary: var(--navy-card);
    --color-bg-dark: var(--navy-deep);
    --color-text-primary: #E5E7EB;
    --color-text-secondary: #9CA3AF;
    --color-text-light: var(--gray-medium);
    --color-text-inverse: var(--white);
    --color-accent-profit: var(--emerald-growth);
    --color-accent-premium: var(--gold-premium);
    --color-accent-primary: var(--blue-accent);

    /* Typography */
    --font-body: 'Funnel Sans', system-ui, -apple-system, sans-serif;
    --font-heading: 'Funnel Sans', system-ui, -apple-system, sans-serif;

    /* Font Sizes - Responsive Scale */
    --text-xs: 0.75rem;
    /* 12px */
    --text-sm: 0.875rem;
    /* 14px */
    --text-base: 1rem;
    /* 16px */
    --text-lg: 1.125rem;
    /* 18px */
    --text-xl: 1.25rem;
    /* 20px */
    --text-2xl: 1.5rem;
    /* 24px */
    --text-3xl: 1.875rem;
    /* 30px */
    --text-4xl: 2.25rem;
    /* 36px */
    --text-5xl: 3rem;
    /* 48px */
    --text-6xl: 3.75rem;
    /* 60px */

    /* Font Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

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

    /* Border Radius */
    --radius-sm: 0.25rem;
    /* 4px */
    --radius-md: 0.5rem;
    /* 8px */
    --radius-lg: 0.75rem;
    /* 12px */
    --radius-xl: 1rem;
    /* 16px */
    --radius-full: 9999px;

    /* Shadows - Subtle Depth for Dark Mode */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.5);

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;

    /* Container Widths */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1400px;
}