/* Explain: Theme design tokens (colors, fonts) — single source of truth */
:root {
    --primary-color: #0284c7; /* Darker more premium Sky */
    --primary-hover: #0369a1; 
    --secondary-color: #0f172a;
    --accent-color: #d97706; /* Tailwind amber-600 */
    --background-color: #f7fbfd; /* Very subtle premium tint */
    --surface-color: #ffffff;
    --text-color: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --font-heading: 'Rubik', sans-serif;
    --font-body: 'Heebo', system-ui, sans-serif;
}
