:root {
    /* Colors */
    --color-primary: #45536a; /* deep blue */
    --color-secondary: #2d3748; /* dark gray */
    --color-accent-blue: #4278ea; /* vivid blue for links/buttons */
    --color-accent-green: #22c55e; /* green for success */
    --color-accent-orange: #f59e42; /* orange for highlights */

    /* Backgrounds */
    --color-bg-primary: #ffffff; /* white */
    --color-bg-secondary: #f3f4f6; /* light gray */
    --color-bg-tertiary: #e5e7eb; /* medium gray */

    /* Text Colors */
    --color-text-primary: #1e293b; /* dark blue-gray */
    --color-text-body: #334155; /* medium blue-gray */
    --color-text-subtle: #64748b; /* subtle gray */
    
    /* Typography */
    --font-family-headlines: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-body: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    
    /* Spacing */
    --space-1: 0.25rem;    /* 4px */
    --space-2: 0.5rem;     /* 8px */
    --space-3: 0.75rem;    /* 12px */
    --space-4: 1rem;       /* 16px */
    --space-6: 1.5rem;     /* 24px */
    --space-8: 2rem;       /* 32px */
    --space-10: 2.5rem;    /* 40px */
    --space-12: 3rem;      /* 48px */
    --space-16: 4rem;      /* 64px */
    --space-20: 5rem;      /* 80px */
    
    /* Container */
    --container-max: 80rem; /* 1280px */
    --container-padding: var(--space-6);
    
    /* Grid */
    --grid-columns: 12;
    --grid-gutter: var(--space-6);
    
    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.2;
    --leading-normal: 1.5;
    --leading-loose: 2;
}
