/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    --primary-color: #0284c7; /* Sky 600 */
    --primary-hover: #0369a1; /* Sky 700 */
    --secondary-color: #0f172a; /* Slate 900 */
    --accent-color: #10b981; /* Emerald 500 */
    --background-color: #ffffff;
    --surface-color: #f0f9ff; /* Sky 50 */
    --text-color: #334155; /* Slate 700 */
    --text-muted: #64748b; /* Slate 500 */
    --border-color: #e2e8f0; /* Slate 200 */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}