@import url("/assets/css/fonts.css");
:root {
    /* Base Palette: Raw Silicon & Cathode */
    --color-bg: #0a0a0c;
    --color-fg: #f4f4f5;
    --color-surface: #18181b;
    --color-surface-hover: #27272a;
    --color-border: #3f3f46;
    --color-muted: #a1a1aa;

    /* Accents */
    --color-phosphor: #4ade80; /* Phosphor Green */
    --color-amber: #f59e0b;
    --color-cyan: #06b6d4;
    --color-error: #ef4444;

    /* Typography */
    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-text: 'Space Grotesk', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;
    --font-serif: 'IBM Plex Serif', Georgia, serif;

    /* Scales */
    --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;

    --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: 3rem;
    --text-5xl: 4rem;
    --text-6xl: 5rem;

    /* Layout */
    --container-max: 1440px;
    --grid-gap: var(--space-4);

    /* Effects */
    --radius-sm: 2px;
    --radius-md: 4px;
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
