/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    --primary-color: #0b1c3c; /* Deep Blue */
    --primary-hover: #173266;
    --secondary-color: #f1f5f9;
    --accent-color: #e60049; /* Red/Magenta CTA */
    --accent-hover: #c4003d;
    --background-color: #ffffff;
    --surface-color: #f8fafc;
    --text-color: #0f172a;
    --text-muted: #475569;
    --border-color: #e2e8f0;
    --font-heading: 'Heebo', sans-serif;
    --font-body: 'Assistant', sans-serif;
}