/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    --primary-color: #eab308;
    --primary-hover: #ca8a04;
    --secondary-color: #3b82f6;
    --accent-color: #f59e0b;
    --background-color: #020617;
    --surface-color: #0f172a;
    --text-color: #ffffff;
    --text-muted: #94a3b8;
    --border-color: #1e293b;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}