:root {
    /* Colors - Industrial & High Contrast */
    --color-bg: #f9f9f9;
    --color-text: #1a1a1a;
    --color-text-light: #555555;
    --color-accent: #ff4500; /* Safety Orange */
    --color-border: #dddddd;
    --color-surface: #ffffff;
    --color-dark: #000000;

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

    /* 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: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 3rem;
    --space-8: 4rem;
    --space-12: 6rem;
    --space-16: 8rem;

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

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --border-radius: 0; /* Industrial sharp edges */
}
