:root {
    --bg: #0f172a;
    --surface: #1e293b;
    --surface2: #263348;
    --accent: #38bdf8;
    --accent-glow: rgba(56, 189, 248, 0.2);
    --red: #f43f5e;
    --green: #22c55e;
    --orange: #f59e0b;
    --purple: #a78bfa;
    --muted: #94a3b8;
    --text: #f1f5f9;

    /* Radius scale */
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 28px;
    --r-pill: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);

    --font: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
