/* Explain: Theme tokens defining colors, fonts, and spacing for the modern aesthetic. */
:root {
    --primary-color: #0f172a;
    --primary-hover: #1e293b;
    --secondary-color: #f0f9ff;
    --accent-color: #0284c7;
    --logo-subtitle-color: #64748b;
    --button-color: #0284c7;
    --button-text: #ffffff;
    --background-color: #ffffff;
    --surface-color: #f8fafc;
    --footer-bg: #f8fafc;
    --text-color: #0f172a;
    --text-muted: #475569;
    --border-color: #e0f2fe;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(224, 242, 254, 0.8);
    --nav-bg: rgba(255, 255, 255, 0.85);
    --field-bg: #ffffff;
    --accent-soft: rgba(2, 132, 199, 0.1);
    --shadow-soft: 0 10px 40px rgba(2, 132, 199, 0.05);
    --shadow-button: 0 8px 25px rgba(2, 132, 199, 0.3);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-logo: 'Plus Jakarta Sans', sans-serif;
}