/* Explain: Theme design tokens (colors, fonts) — single source of truth */
:root {
    --primary-color: #1a365d;
    --primary-hover: #2a4365;
    --secondary-color: #d69e2e;
    --background-color: #ffffff;
    --surface-color: #f7fafc;
    --text-color: #2d3748;
    --text-muted: #718096;
    --border-color: #e2e8f0;
    --font-heading: 'Rubik', sans-serif;
    --font-body: 'Rubik', sans-serif;
}
