:root {
    /* Rocket Brand Colors (Extracted from Logo) */
    --color-brand-cyan: #00AEEF;
    --color-brand-cyan-dark: #008BBF;
    --color-brand-orange: #FF7B00;
    --color-brand-red: #E63946;
    
    /* Premium Corporate Palette */
    --color-primary: var(--color-brand-cyan);
    --color-primary-dark: #0077A3; /* Deeper, richer cyan for hover */
    --color-secondary: #020617; /* Slate 950 - Ultra dark premium navy/black */
    --color-secondary-light: #0F172A; /* Slate 900 */
    --color-accent: var(--color-brand-orange);

    /* High-End Gradients */
    --gradient-brand: linear-gradient(135deg, var(--color-brand-orange) 0%, #D92938 100%);
    --gradient-corporate: linear-gradient(145deg, #020617 0%, #0F172A 100%);
    --gradient-glow: linear-gradient(90deg, var(--color-brand-cyan), var(--color-brand-orange));
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);

    /* Premium Neutrals */
    --color-background: #F8FAFC; /* Clean, modern off-white */
    --color-surface: #FFFFFF;
    --color-text-main: #1E293B; /* Slate 800 - Softer than pure black */
    --color-text-muted: #64748B; /* Slate 500 */
    --color-heading: #0F172A; /* Slate 900 */
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    /* Spacing System */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Border Radius & Geometry */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Premium Shadows (Softer, deeper, more dispersed) */
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.08), 0 8px 16px rgba(15, 23, 42, 0.04);
    --shadow-glow: 0 0 30px rgba(0, 174, 239, 0.25);
    --shadow-glass: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 10px 30px rgba(0, 0, 0, 0.05);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1); /* Smoother easing */
    --transition-normal: 300ms cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
