:root {
    color-scheme: light;
    --navy: #032f57;
    --navy-dark: #021f39;
    --copper: #cf7a25;
    --copper-soft: #e3a35d;
    --blue: #275f90;
    --sky-soft: #eef5fb;
    --sky-border: rgba(57, 119, 187, 0.18);
    --mint-soft: #edf7f1;
    --mint-border: rgba(54, 124, 90, 0.18);
    --rose-soft: #fff3f2;
    --rose-border: rgba(190, 83, 83, 0.18);
    --ink: #112133;
    --text: var(--ink);
    --muted: #5b6b79;
    --line: rgba(3, 47, 87, 0.12);
    --line-strong: rgba(3, 47, 87, 0.2);
    --surface: #ffffff;
    --surface-alt: #f5f7fa;
    --surface-subtle: #f9fafc;
    --surface-muted: #eef2f6;
    --surface-warm: linear-gradient(135deg, rgba(207, 122, 37, 0.08), rgba(3, 47, 87, 0.04));
    --shadow-sm: 0 4px 12px rgba(8, 31, 59, 0.05);
    --shadow: 0 10px 24px rgba(8, 31, 59, 0.08);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-7: 3rem;
    --space-8: 4rem;
    --container: 1840px;
    --container-narrow: 680px;
    --header-offset: 88px;
    --header-offset-mobile: 104px;
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-bg-strong: rgba(255, 255, 255, 0.84);
    --glass-line: rgba(255, 255, 255, 0.55);
    --font-sans: Calibri, Carlito, "Source Sans 3", "Segoe UI", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 110%;
    scroll-padding-top: var(--header-offset);
    max-width: 100%;
    overflow-x: clip;
}

body {
    margin: 0;
    min-height: 100vh;
    max-width: 100%;
    overflow-x: clip;
    font-family: var(--font-sans);
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(245, 247, 250, 0.96) 0%, rgba(255, 255, 255, 1) 16%, rgba(245, 247, 250, 1) 100%),
        radial-gradient(circle at top left, rgba(207, 122, 37, 0.05), transparent 28%),
        radial-gradient(circle at top right, rgba(3, 47, 87, 0.06), transparent 24%);
    line-height: 1.58;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

input,
textarea,
button,
select {
    font: inherit;
}

main {
    display: block;
}

p {
    margin: 0 0 1rem;
}

p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 700;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    min-width: 0;
    overflow-x: clip;
}

.container {
    width: min(var(--container), calc(100vw - clamp(1rem, 2vw, 3rem)));
    max-width: 100%;
    min-width: 0;
    margin: 0 auto;
    padding: 0 clamp(0.35rem, 0.9vw, 0.9rem);
}

[id] {
    scroll-margin-top: var(--header-offset);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--copper);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.page-title,
.hero-title,
.section-title {
    margin: 0;
    color: var(--navy);
    font-family: var(--font-sans);
    font-weight: 700;
}

.page-title,
.hero-title {
    font-size: clamp(2.5rem, 4.2vw, 3.25rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
}

.section-title {
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.lead {
    color: var(--ink);
    font-size: 1.08rem;
    line-height: 1.62;
}

.page-intro,
.card-copy,
.muted {
    color: var(--muted);
}

.page-intro {
    font-size: 1rem;
    max-width: 76ch;
}

.text-center {
    text-align: center;
}

.tabular-nums,
.stat-value,
.stats-strip__value,
.stat-strip__value,
.data-table,
.badge,
.role-pill {
    font-variant-numeric: tabular-nums;
}

.btn:focus,
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: 2px solid rgba(207, 122, 37, 0.8);
    outline-offset: 2px;
}

::selection {
    background: rgba(3, 47, 87, 0.12);
    color: inherit;
}

::-moz-selection {
    background: rgba(3, 47, 87, 0.12);
    color: inherit;
}

.brand,
.eyebrow,
.badge,
.role-pill,
.btn,
.menu-toggle,
.site-nav__toplink,
.nav-dropdown__summary,
.header-action-btn {
    user-select: none;
    -webkit-user-select: none;
}

@media (max-width: 640px) {
    html {
        font-size: 100%;
    }
}

@media (max-width: 980px) {
    html {
        scroll-padding-top: var(--header-offset-mobile);
    }

    [id] {
        scroll-margin-top: var(--header-offset-mobile);
    }
}
