/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    --primary-color: #ea580c; /* Orange 600 */
    --primary-hover: #c2410c;
    --secondary-color: #3f3f46;
    --accent-color: #f59e0b;
    --background-color: #18181b; /* Zinc 900 */
    --surface-color: #27272a; /* Zinc 800 */
    --text-color: #f4f4f5;
    --text-muted: #a1a1aa;
    --border-color: #3f3f46;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}