:root {
    /* Color Palette - SIQ Warm Burgundy */
    --primary-900: #2a0a0a;
    --primary-800: #3b0f0f;
    --primary-700: #541616;
    --primary-600: #6b1d1d;
    --primary-500: #8a2a2a;

    --accent-500: #8a1010;
    --accent-600: #6f0b0b;
    --accent-400: #b12e2e;

    --neutral-50: #fbf7f4;
    --neutral-100: #f5eee9;
    --neutral-200: #e7dad3;
    --neutral-300: #d4c2b9;
    --neutral-400: #b49a90;
    --neutral-500: #8c7167;
    --neutral-600: #6f584f;
    --neutral-700: #54423b;
    --neutral-800: #3b2c27;
    --neutral-900: #241a17;

    --success: #1f9d71;
    --warning: #b45309;
    --error: #b42318;

    --surface-header: #fbf7f4f2;
    --surface-hero-start: var(--neutral-50);
    --surface-hero-mid: var(--neutral-100);
    --surface-hero-end: #f4e3de;
    --surface-cta-end: #f4e3de;
    --surface-error: #fdecea;
    --accent-soft-start: #f9e5e3;
    --accent-soft-end: #f2d4d1;
    --accent-glow: #8a101014;
    --glass-bg: #ffffff14;
    --glass-border: #ffffff2e;
    --glass-hover: #ffffff24;
    --focus-ring: #8a10102e;

    --white: #ffffff;
    --black: #000000;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Inter', sans-serif;

    /* Font Sizes */
    --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;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* 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;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Layout */
    --container-max: 1200px;
    --container-padding: 1.5rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark mode variables */
[data-theme="dark"] {
    --bg-primary: var(--neutral-900);
    --bg-secondary: var(--neutral-800);
    --text-primary: var(--neutral-50);
    --text-secondary: var(--neutral-300);
}
