/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    --primary-color: #8b5cf6; /* purple */
    --primary-hover: #7c3aed;
    --secondary-color: #2dd4bf; /* turquoise */
    --accent-color: #fbbf24; /* warm yellow */
    --background-color: #ffffff;
    --surface-color: #f8fafc;
    --text-color: #1f2937;
    --text-muted: #4b5563;
    --border-color: #e5e7eb;
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Nunito', sans-serif;
}