/* ─── Design Tokens ──────────────────────────────────────────────────────── */
:root {
    /* Colors */
    --color-bg: #0f1014;
    --color-bg-soft: #151720;
    --color-surface: #1b1e28;
    --color-surface-elevated: #242835;
    --color-border: rgba(255, 255, 255, 0.10);
    --color-text: #f7f7fb;
    --color-muted: #a7a8b3;
    --color-accent: #ff4fa3;
    --color-accent-strong: #ff2c91;
    --color-danger: #ff5c65;
    --color-warning: #ffbf47;
    --color-success: #5ee6a8;

    /* Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.9rem;
    --radius-lg: 1.35rem;
    --radius-xl: 1.8rem;
    --radius-full: 9999px;

    /* Spacing (rem scale) */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;

    /* Spacing aliases (named) */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;

    /* Typography */
    --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.375rem;
    --font-size-2xl: 1.75rem;
    --font-size-3xl: 2.25rem;

    /* Shadows */
    --shadow-card: 0 1.25rem 3.5rem rgb(0 0 0 / 35%);
    --shadow-sm: 0 2px 8px rgb(0 0 0 / 25%);

    /* Transitions */
    --transition-fast: 120ms ease;
    --transition-base: 200ms ease;
}
