:root {
    /* Colors - Industrial, high contrast */
    --color-bg: #f9f9f9;
    --color-bg-alt: #ececec;
    --color-fg: #111111;
    --color-fg-muted: #555555;
    --color-accent: #ff4500; /* Safety orange / industrial orange */
    --color-border: #dddddd;
    --color-border-dark: #aaaaaa;

    /* Typography */
    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-text: 'Chivo', system-ui, sans-serif;

    /* Type Scale */
    --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: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
    --text-6xl: 4.5rem;

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

    /* Layout */
    --container-max: 1440px;
    --container-md: 1024px;
    --container-sm: 768px;

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