:root {
    /* Colors - Pastel Editorial Palette */
    --color-bg-primary: #FAFAFA;
    --color-bg-white: #FFFFFF;
    --color-text-primary: #2E3A4F;
    --color-text-secondary: #5A6B7F;
    --color-text-light: #8B9AAD;
    
    /* Pastel Accents */
    --color-mint: #9FE0C3;
    --color-mint-light: #C5EDD9;
    --color-blue: #A8D8F0;
    --color-blue-light: #D1EAF7;
    --color-lavender: #C7B8EA;
    --color-lavender-light: #E0D9F3;
    --color-yellow: #FFE6A7;
    --color-yellow-light: #FFF3D4;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Space Grotesk', var(--font-primary);
    
    /* Font Sizes */
    --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 */
    
    /* Font Weights */
    --weight-normal: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-extrabold: 800;
    
    /* Spacing */
    --space-xs: 0.25rem;     /* 4px */
    --space-sm: 0.5rem;      /* 8px */
    --space-md: 1rem;        /* 16px */
    --space-lg: 1.5rem;      /* 24px */
    --space-xl: 2rem;        /* 32px */
    --space-2xl: 3rem;       /* 48px */
    --space-3xl: 4rem;       /* 64px */
    --space-4xl: 6rem;       /* 96px */
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(46, 58, 79, 0.05);
    --shadow-md: 0 4px 6px rgba(46, 58, 79, 0.07);
    --shadow-lg: 0 10px 15px rgba(46, 58, 79, 0.1);
    
    /* Container */
    --container-max: 1280px;
    --container-padding: var(--space-md);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Z-index */
    --z-header: 1000;
    --z-dropdown: 1100;
    --z-modal: 1200;
}
