:root {
    /* 
     * MAPLE MORVAN DIGITAL
     * Premium Design System 2026
     */

    /* --- BRAND COLORS --- */
    --color-primary: #922121;
    /* Deep Bordeaux */
    --color-primary-dark: #721616;
    /* Darker Bordeaux for active states */
    --color-primary-light: #e6cdcd;
    /* Soft red for accents */
    --color-primary-alpha: rgba(146, 33, 33, 0.08);
    /* Very subtle tint */

    /* --- NEUTRALS (Light Mode) --- */
    --color-white: #ffffff;
    --color-bg-body: #ffffff;
    /* Pure white body */
    --color-bg-secondary: #f9f9fa;
    /* Very subtle grey for sections */
    --color-bg-tertiary: #f2f2f4;
    /* Cards / Inputs */
    --color-bg-contrast: #111111;
    /* Dark section background */

    /* --- TEXT COLORS --- */
    --color-text-main: #1f1f1f;
    /* Deep Charcoal, softer than black */
    --color-text-heading: #0a0a0a;
    /* Near Black for headings */
    --color-text-muted: #6b7280;
    /* Elegant grey for subtitles */
    --color-text-light: #f3f4f6;
    /* For dark backgrounds */
    --color-text-inverse: #ffffff;

    /* --- BORDERS --- */
    --color-border: #e5e7eb;
    --color-border-hover: #d1d5db;
    --color-border-light: rgba(255, 255, 255, 0.1);
    /* For dark mode overlays */

    /* --- STATUS --- */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;

    /* --- TYPOGRAPHY --- */
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
    /* Architectural / Future */
    --font-body: 'Inter', sans-serif;
    /* Clean / Readable */
    --font-mono: 'JetBrains Mono', monospace;
    /* Technical / Code */

    --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: 3.5rem;
    /* Bigger impact */
    --text-huge: 5rem;
    /* Massive Hero titles */

    /* --- SHADOWS --- */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(146, 33, 33, 0.2);

    /* --- GLASSMORPHISM & TEXTURES --- */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-border-dark: rgba(0, 0, 0, 0.08);
    --glass-blur: 20px;
    --backdrop-blur: blur(20px);

    /* Dot Pattern (Nothing Style) */
    --pattern-dot: radial-gradient(#ccc 1px, transparent 1px);
    --pattern-dot-size: 20px 20px;

    /* --- SPACING & RADIUS --- */
    --container-width: 1400px;
    /* Wider for panoramic feel */
    --header-height: 110px;

    --radius-sm: 4px;
    /* Sharper small elements */
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* --- TRANSITIONS --- */
    --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
    /* Expo easing for tech feel */
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

    --transition-fast: 200ms var(--ease-out);
    --transition-normal: 400ms var(--ease-out);
    --transition-slow: 600ms var(--ease-out);
}

::selection {
    background: var(--color-primary);
    color: white;
}

html {
    scroll-behavior: smooth;
    font-feature-settings: "cv11", "ss01";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}