/* Explain: Theme design tokens (colors, fonts) — single source of truth */
:root {
    --primary-color: #0284c7;
    --primary-hover: #0369a1;
    --secondary-color: #ea580c;
    --accent-color: #f59e0b;
    --background-color: #f8fafc;
    --surface-color: #ffffff;
    --text-color: #0f172a;
    --text-muted: #475569;
    --border-color: #e2e8f0;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}
