:root {
    /* Colors - Tech Business Monochrome + Orange */
    --color-primary: #111111;
    /* Almost Black */
    --color-secondary: #333333;
    /* Dark Grey */
    --color-accent: #FF5500;
    /* Vibrant Orange */
    --color-accent-hover: #CC4400;
    --color-text-main: #111111;
    --color-text-light: #666666;
    --color-text-white: #ffffff;
    --color-bg-white: #ffffff;
    --color-bg-light: #f4f4f4;
    /* Very Light Grey */
    --color-border: #dddddd;
    --color-border-strong: #000000;

    /* Gradients (Subtle to none for this style) */
    --gradient-hero: linear-gradient(to right, #ffffff 50%, #f4f4f4 50%);

    /* Typography */
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    /* Tech accent */

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    --container-width: 1400px;
    /* Wider for modern tech look */
    --header-height: 90px;

    /* Borders & Shadows */
    --radius-sm: 0px;
    --shadow-sm: none;
    --shadow-md: 4px 4px 0px rgba(0, 0, 0, 0.1);
    --shadow-lg: 8px 8px 0px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 0.15s ease-out;
    --transition-normal: 0.3s ease-out;

    /* Lines */
    --line-width: 1px;
}