/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    --primary-color: #0ea5e9; /* Blue 500 */
    --primary-hover: #0284c7; /* Blue 600 */
    --secondary-color: #06b6d4; /* Turquoise 500 */
    --accent-color: #38bdf8;
    --background-color: #ffffff;
    --surface-color: #f0f9ff;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --font-heading: 'Cairo', sans-serif;
    --font-body: 'Cairo', sans-serif;
}