:root {
    /* Colors */
    --color-bg: #050505;
    /* Deep Black */
    --color-bg-secondary: #0a0a0a;
    /* Almost Black */
    --color-accent: #00f0ff;
    /* Electric Cyan */
    --color-accent-glow: rgba(0, 240, 255, 0.25);
    --color-text-main: #f5f5f5;
    --color-text-muted: #6e7080;
    --color-border: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Spacing - Increased for Cinematic Feel */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1.5rem;
    --spacing-md: 3rem;
    --spacing-lg: 6rem;
    --spacing-xl: 12rem;
    /* Massive section spacing */

    /* Layout */
    --container-width: 1400px;
    /* Wider canvas */
    --header-height: 100px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    /* Slower, smoother ease */
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-main);
    margin: 0;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}