:root {
    /* Colors */
    --color-bg: #000000;
    --color-surface: #0A0A0A;
    --color-surface-light: #151515;
    --color-accent: #FFFFFF;
    --color-accent-dim: #333333;
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #AAAAAA;
    --color-text-muted: #6B6B6B;
    --color-success: #4ADE80;
    --color-warning: #FBBF24;
    --color-error: #EF4444;
    --color-divider: #1A1A1A;

    /* Typography */
    --font-stack: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;

    /* Font Sizes */
    --text-xs: 0.6875rem;    /* 11px */
    --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: 2rem;        /* 32px */
    --text-4xl: 2.625rem;    /* 42px */
    --text-5xl: 3.5rem;      /* 56px */
    --text-6xl: 5rem;        /* 80px */

    /* Line Heights */
    --leading-tight: 1.05;
    --leading-snug: 1.2;
    --leading-normal: 1.5;
    --leading-relaxed: 1.6;

    /* Letter Spacing */
    --tracking-tighter: -2px;
    --tracking-tight: -1px;
    --tracking-snug: -0.2px;
    --tracking-normal: 0;
    --tracking-wide: 1.2px;
    --tracking-wider: 1.5px;

    /* Spacing */
    --space-xs: 0.5rem;      /* 8px */
    --space-sm: 1rem;        /* 16px */
    --space-md: 1.5rem;      /* 24px */
    --space-lg: 2rem;        /* 32px */
    --space-xl: 3rem;        /* 48px */
    --space-2xl: 4rem;       /* 64px */
    --space-3xl: 6rem;       /* 96px */
    --space-4xl: 8rem;       /* 128px */
    --space-page: 1.75rem;   /* 28px horizontal padding */

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 600ms ease;

    /* Z-Index */
    --z-canvas: 1;
    --z-content: 10;
    --z-nav: 100;
}
