/* Explain: Color and design token definitions for light and dark themes. - */
:root {
    --primary-color: #102A43;
    --primary-hover: #A01E22;
    --secondary-color: #F0F4F8;
    --accent-color: #C1272D;
    --logo-subtitle-color: #486581;
    --button-color: #C1272D;
    --background-color: #F8FAFC;
    --surface-color: #FFFFFF;
    --footer-bg: #F0F4F8;
    --text-color: #102A43;
    --text-muted: #486581;
    --border-color: rgba(16, 42, 67, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(16, 42, 67, 0.15);
    --nav-bg: rgba(255, 255, 255, 0.9);
    --field-bg: rgba(240, 244, 248, 0.6);
    --sage-soft: rgba(193, 39, 45, 0.15);
    --sage-dark: #C1272D;
    --terracotta-soft: rgba(16, 42, 67, 0.12);
    --shadow-soft: 0 22px 70px rgba(16, 42, 67, 0.08);
    --shadow-button: 0 16px 36px rgba(193, 39, 45, 0.25);
    --font-heading: 'Heebo', sans-serif;
    --font-body: 'Assistant', sans-serif;
    --font-logo: 'Rubik', sans-serif;
}

[data-theme="dark"] {
    --primary-color: #102A43;
    --primary-hover: #E53E3E;
    --secondary-color: #1A202C;
    --accent-color: #E53E3E;
    --logo-subtitle-color: #A0AAB2;
    --button-color: #C1272D;
    --background-color: #0D1117;
    --surface-color: #161B22;
    --footer-bg: #090C10;
    --text-color: #F8FAFC;
    --text-muted: #8B949E;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(22, 27, 34, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --nav-bg: rgba(13, 17, 23, 0.9);
    --field-bg: rgba(255, 255, 255, 0.05);
    --sage-soft: rgba(229, 62, 62, 0.2);
    --sage-dark: #FF6B6B;
    --terracotta-soft: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 22px 70px rgba(0, 0, 0, 0.5);
    --shadow-button: 0 16px 36px rgba(193, 39, 45, 0.3);
    
    --header-bg-gradient: linear-gradient(180deg, rgba(13, 17, 23, 0.95), rgba(13, 17, 23, 0.7));
    --glass-panel-bg: linear-gradient(145deg, rgba(22, 27, 34, 0.9), rgba(30, 36, 45, 0.7));
    --arch-inner-border: rgba(255, 255, 255, 0.1);
    --quiet-bg: rgba(255, 255, 255, 0.03);
    --mobile-bar-bg: rgba(13, 17, 23, 0.95);
    --overlay-bg: rgba(0, 0, 0, 0.7);
    --hero-split-bg: linear-gradient(115deg, rgba(13, 17, 23, 0.96) 0%, rgba(13, 17, 23, 0.78) 52%, rgba(255, 255, 255, 0.02) 100%);
}