:root {
    /* Colors - Stark Industrial */
    --color-bg: #f4f4f0;
    --color-fg: #111111;
    --color-accent: #ff3300;
    --color-surface: #e5e5e0;
    --color-border: #d0d0c8;
    --color-muted: #666666;

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-text: 'Space Mono', monospace;

    /* Font Sizes - Intentional contrast */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-2xl: 2rem;
    --text-3xl: 3rem;
    --text-4xl: 4.5rem;
    --text-5xl: 6rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 3rem;
    --space-8: 4rem;
    --space-12: 6rem;
    --space-16: 8rem;

    /* Layout */
    --container-width: 1200px;
    --grid-gap: var(--space-4);

    /* Borders */
    --border-thin: 1px solid var(--color-border);
    --border-thick: 3px solid var(--color-fg);
}

@media (prefers-color-scheme: dark) {
    :root {
        --color-bg: #111111;
        --color-fg: #f4f4f0;
        --color-surface: #222222;
        --color-border: #333333;
        --color-muted: #aaaaaa;
    }
}
