/* ============================================
   404CTO V2 - CSS Variables / Design Tokens
   ============================================ */

:root {
    /* ── Backgrounds ── */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #0d0d0d;
    --bg-card-hover: #141414;
    --bg-terminal: #0c0c0c;

    /* ── Green (Terminal) ── */
    --green: #00ff88;
    --green-bright: #33ffaa;
    --green-glow: rgba(0, 255, 136, 0.25);
    --green-glow-strong: rgba(0, 255, 136, 0.45);
    --green-dim: rgba(0, 255, 136, 0.4);
    --green-muted: rgba(0, 255, 136, 0.15);
    --green-text: #b8ffd9;
    --green-bg: #0a1f14;

    /* ── Accent Colors ── */
    --amber: #ffb800;
    --red: #ff3333;
    --cyan: #00d4ff;
    --purple: #b388ff;

    /* ── Text ── */
    --text-primary: #e0e0e0;
    --text-secondary: #888888;
    --text-dim: #555555;

    /* ── Borders ── */
    --border-subtle: rgba(0, 255, 136, 0.08);
    --border-normal: rgba(0, 255, 136, 0.2);
    --border-bright: rgba(0, 255, 136, 0.4);
    --border-glow: rgba(0, 255, 136, 0.6);

    /* ── Typography ── */
    --font-mono: 'JetBrains Mono', 'Fira Mono', 'Cascadia Code', 'Consolas', 'Menlo', monospace;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2.25rem;
    --font-size-4xl: 3rem;
    --font-size-5xl: 4rem;
    --font-size-hero: 7rem;

    /* ── Spacing ── */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 64px;
    --space-3xl: 96px;
    --space-4xl: 140px;
    --space-5xl: 200px;

    /* ── Layout ── */
    --max-width: 1400px;
    --nav-height: 56px;
    --card-radius: 12px;
    --card-radius-sm: 8px;

    /* ── Transitions ── */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;

    /* ── Z-index ── */
    --z-bg: -1;
    --z-content: 1;
    --z-nav: 100;
    --z-overlay: 200;
    --z-modal: 300;
}