/* Explain: Theme design tokens with primary, accent, and text colors. */
:root {
    --primary-color: #0f172a;
    --primary-hover: #1e293b;
    --secondary-color: #334155;
    --accent-color: #cda34f;
    --accent-hover: #b48e42;
    --accent-soft: #fdfaf3;
    --background-color: #F8FAFC;
    --surface-color: #FFFFFF;
    --text-color: #0f172a;
    --text-muted: #475569;
    --border-color: #e2e8f0;
    --success-color: #059669;
    --error-color: #dc2626;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-xl: 28px;
    --shadow-card: 0 24px 70px rgba(27, 42, 74, 0.12);
    --shadow-soft: 0 14px 38px rgba(27, 42, 74, 0.08);
}
