:root {
    /* Premium Color Palette - Liquid Glass Theme */
    --color-primary: #007AFF;
    /* Apple Blue */
    --color-primary-dark: #0056b3;
    --color-primary-light: #e0f2fe;

    --color-accent: #1d1d1f;
    /* Apple Dark Grey */

    /* Mesh Gradient Removed - Clean White Theme */
    --color-bg-body: #ffffff;
    /* Pure White */
    --gradient-hero: #ffffff;
    /* Pure White - No gradient */
    --bg-fixed: #ffffff;
    /* Apple Grey Light base */

    /* Glassmorphism Variables - Adjusted for White BG */
    --glass-bg: rgba(255, 255, 255, 0.8);
    /* More opaque */
    --glass-border: rgba(0, 0, 0, 0.05);
    /* Darker border for contrast */
    --glass-blur: 20px;
    --glass-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.04);
    /* Subtler shadow */

    --color-text-main: #1d1d1f;
    --color-text-light: #86868b;
    --color-border: rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Radius - More rounded for Apple feel */
    --radius-sm: 0.75rem;
    --radius-md: 1.5rem;
    /* 24px */
    --radius-lg: 2.5rem;
    /* 40px */
    --radius-full: 9999px;

    /* Shadows (Soft, Apple-like) */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.16);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    /* Soft Apple spring */
}