/* Explain: Brand tokens for primary (orange), secondary (blue), and accent colors. */
:root {
    --primary-color: #f97316;
    --primary-hover: #ea580c;
    --secondary-color: #1e3a8a;
    --accent-color: #3b82f6;
    --background-color: #FFFFFF;
    --surface-color: #fff7ed;
    --surface-strong: #ffedd5;
    --text-color: #1e3a8a;
    --text-muted: #3b527a;
    --border-color: #fed7aa;
    --white-color: #FFFFFF;
    --success-color: #15803D;
    --error-color: #B91C1C;
    --shadow-soft: 0 18px 55px rgba(30, 58, 138, 0.08);
    --shadow-card: 0 14px 35px rgba(30, 58, 138, 0.05);
    --radius-lg: 1.5rem;
    --radius-md: 1rem;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}
