/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --secondary-color: #3f3f46;
    --accent-color: #8b5cf6;
    --background-color: #09090b;
    --surface-color: #18181b;
    --text-color: #f4f4f5;
    --text-muted: #a1a1aa;
    --border-color: #27272a;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}