:root {
    /* Primary Colors - Muted, Professional Purple */
    --primary: #6B5B95;           /* Muted Royal Purple */
    --primary-dark: #4A3F5C;      /* Deep Plum */
    --primary-light: #c6bcd8;     /* Soft Purple */
    --primary-lighter: #E8E4F0;   /* Very Light Lavender (backgrounds) */
    
    /* Secondary Colors */
    --secondary: #4A3F5C;         /* Deep Plum */
    --secondary-light: #5E5070;   /* Medium Plum */
    
    /* Supporting Colors */
    --accent-blue: #6B5B95;       /* Muted Purple */
    --accent-blue-light: #E8E4F0; /* Light Lavender bg */
    --accent-teal: #7B6FA1;       /* Purple-Gray */
    --accent-teal-light: #F0EDF5; /* Pale Lavender bg */
    --accent-yellow: #C9A961;     /* Muted Gold */
    --accent-yellow-light: #F5F0E6; /* Light Cream bg */
    
    /* Status Colors */
    --success: #5A9B7D;           /* Muted Green */
    --success-light: #E0F2E9;     /* Light Green bg */
    --danger: #B85C5C;            /* Muted Red */
    --danger-light: #F5E5E5;      /* Light Red bg */
    --warning: #C9A961;           /* Muted Gold */
    --warning-light: #F5F0E6;     /* Light Cream bg */
    --info: #6B5B95;              /* Muted Purple */
    --info-light: #E8E4F0;        /* Light Lavender bg */
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light: #FAFAFA;
    --gray-100: #F5F5F7;
    --gray-200: #EBEBED;
    --gray-300: #D6D6D9;
    --gray-400: #AFAFB5;
    --gray-500: #8B8B91;
    --gray-600: #6A6A70;
    --gray-700: #4A4A4F;
    --gray-800: #32323A;
    --gray-900: #1E1E24;
    --dark: #32323A;              /* Dark Gray */
    --black: #000000;
    
    /* Text Colors */
    --text-primary: #2A2A35;      /* Very Dark Purple-Gray */
    --text-secondary: #6B5B95;    /* Muted Purple */
    --text-muted: #8B8B91;
    --text-white: #FFFFFF;
    
    /* Background Colors */
    --bg-body: #FAFAFA;
    --bg-white: #FFFFFF;
    --bg-light: #F0EDF5;
    --bg-dark: #32323A;           /* Dark Gray */
    
    /* Border Colors */
    --border-color: #EBEBED;
    --border-light: #F5F5F7;
    --border-dark: #8B7BA8;
    
    /* Shadows - Subtle Purple Tint */
    --shadow-sm: 0 1px 2px 0 rgba(107, 91, 149, 0.06);
    --shadow: 0 1px 3px 0 rgba(107, 91, 149, 0.10), 0 1px 2px 0 rgba(107, 91, 149, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(107, 91, 149, 0.10), 0 2px 4px -1px rgba(107, 91, 149, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(107, 91, 149, 0.10), 0 4px 6px -2px rgba(107, 91, 149, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(107, 91, 149, 0.10), 0 10px 10px -5px rgba(107, 91, 149, 0.04);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'Fira Code', 'Courier New', monospace;
    
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition: 200ms ease-in-out;
    --transition-slow: 300ms ease-in-out;
}