:root {
    --navy: #103962;
    --navy-deep: #0b2745;
    --navy-soft: #1f5687;
    --blue: #2f73ad;
    --blue-light: #5c98d0;
    --accent: #76b7e5;
    --green: #2f8d5e;
    --text: #33455b;
    --muted: #637388;
    --border: #c7d4e3;
    --panel: #f4f8fc;
    --panel-2: #e8eff7;
    --white: #ffffff;
    --shadow: 0 12px 26px rgba(13, 28, 52, 0.12);
    --radius: 12px;
    --radius-sm: 10px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: linear-gradient(180deg, #cbd8e6 0%, #aabace 100%);
    color: var(--text);
    font: 15px/1.65 "Trebuchet MS", Arial, Helvetica, sans-serif;
}

a {
    color: var(--navy);
    text-decoration: none;
}

a:hover,
a:focus-visible {
    color: var(--blue);
    text-decoration: underline;
}

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

.site-shell {
    width: 100%;
    max-width: none;
    min-height: 100vh;
    margin: 0;
    background: var(--white);
    border: 0;
    box-shadow: none;
}

.utility-bar {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 20px;
    background: linear-gradient(180deg, #315a87 0%, #173a64 100%);
    color: #d9e8f5;
    font-size: 12px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.utility-bar a {
    color: #ffffff;
    font-weight: 700;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 18px 22px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.68) 0%, rgba(255,255,255,0.1) 100%),
        linear-gradient(135deg, #eef5fb 0%, #dae6f2 36%, #c6d5e5 100%);
    border-bottom: 1px solid #b6c6d8;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand:hover,
.brand:focus-visible {
    text-decoration: none;
}

.brand-mark {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-name {
    font: 700 38px/0.95 Georgia, "Times New Roman", serif;
    letter-spacing: 0.3px;
    color: var(--navy);
}

.brand-subname {
    margin-top: 3px;
    font: 700 18px/1.1 Arial, Helvetica, sans-serif;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: var(--blue);
}

.brand-tagline {
    margin-top: 6px;
    font-size: 13px;
    color: #52657b;
}

.header-callout {
    max-width: 340px;
    text-align: right;
    color: #56677b;
    font-size: 13px;
    line-height: 1.5;
}

.header-callout strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    color: var(--navy);
}

.site-nav {
    border-top: 1px solid rgba(255,255,255,0.18);
    border-bottom: 1px solid #081d36;
    background: linear-gradient(180deg, #2d628f 0%, #17406c 45%, #12365e 100%);
}

.site-nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 0;
    padding: 0 18px;
    list-style: none;
}

.nav-item {
    display: flex;
}

.nav-item a {
    display: flex;
    align-items: center;
    padding: 13px 14px;
    border-right: 1px solid rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.65px;
}

.nav-item a:hover,
.nav-item a:focus-visible {
    background: rgba(255,255,255,0.11);
    color: #ffffff;
    text-decoration: none;
}

.nav-item.is-active a {
    background: linear-gradient(180deg, #0f2f55 0%, #0c2642 100%);
}

.page-main {
    padding: 24px 28px 30px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 24px;
    align-items: start;
}

.content-column {
    min-width: 0;
}

.sidebar-column {
    min-width: 0;
}

.home-spotlight,
.content-section,
.sidebar-box,
.highlight-band,
.insight-card,
.partner-card,
.topic-card,
.detail-card,
.cta-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, #ffffff 0%, #f7fafd 100%);
    box-shadow: var(--shadow);
}

.home-spotlight {
    padding: 22px;
    margin-bottom: 18px;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.globe-figure {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.65), rgba(255,255,255,0) 45%),
        linear-gradient(180deg, #ddeaf7 0%, #c9dced 100%);
    box-shadow: inset 0 2px 12px rgba(255,255,255,0.95), inset 0 -10px 20px rgba(16, 57, 98, 0.08);
}

.globe-figure img {
    width: 188px;
    height: 188px;
}

.spotlight-copy h1 {
    margin: 0 0 10px;
    font: 700 32px/1.08 Georgia, "Times New Roman", serif;
    color: var(--navy);
}

.spotlight-copy p {
    margin: 0 0 12px;
}

.check-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: linear-gradient(180deg, #6cb6ea 0%, #1d5b92 100%);
    box-shadow: 0 0 0 2px rgba(45, 98, 143, 0.12);
}

.highlight-band {
    margin-bottom: 18px;
    padding: 15px 18px;
    background: linear-gradient(180deg, #e9f2fb 0%, #dae7f4 100%);
}

.highlight-band strong {
    color: var(--navy);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.service-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, #ffffff 0%, #f7fafd 100%);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-card-head {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, #edf4fb 0%, #dce8f4 100%);
}

.service-card-head img {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
}

.service-card-head h2 {
    margin: 0;
    font: 700 22px/1.08 Georgia, "Times New Roman", serif;
    color: var(--navy);
}

.service-card-body {
    padding: 16px;
}

.service-card-body p {
    margin-top: 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(11, 39, 69, 0.18);
    background: linear-gradient(180deg, #3b7ab4 0%, #1a4571 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.55px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(18, 54, 94, 0.18);
}

.button:hover,
.button:focus-visible {
    color: #ffffff;
    text-decoration: none;
    filter: brightness(1.04);
}

.button::after {
    content: '›';
    margin-left: 7px;
    font-size: 14px;
}

.button--small {
    padding: 9px 14px;
    font-size: 11px;
}

.button--support {
    background: linear-gradient(180deg, #3b9d70 0%, #267052 100%);
}

.button--outline {
    color: var(--navy);
    background: linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
}

.executive-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: stretch;
    padding: 20px;
}

.executive-panel h2,
.section-title {
    margin: 0 0 12px;
    font: 700 28px/1.1 Georgia, "Times New Roman", serif;
    color: var(--navy);
}

.executive-panel p:last-child,
.content-copy p:last-child {
    margin-bottom: 0;
}

.panel-image-frame,
.content-image-frame {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(16, 57, 98, 0.12);
    background: #d9e6f2;
}

.panel-image-frame img,
.content-image-frame img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.sidebar-box {
    margin-bottom: 16px;
    overflow: hidden;
}

.sidebar-box h3 {
    margin: 0;
    padding: 11px 14px;
    background: linear-gradient(180deg, #255785 0%, #123860 100%);
    color: #ffffff;
    font: 700 18px/1.1 Georgia, "Times New Roman", serif;
    letter-spacing: 0.2px;
}

.sidebar-box-body {
    padding: 14px;
    color: var(--text);
    font-size: 14px;
}

.sidebar-box-body p {
    margin-top: 0;
}

.sidebar-box--support h3 {
    background: linear-gradient(180deg, #3e946b 0%, #22674a 100%);
}

.sidebar-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 10px;
}

.sidebar-list,
.sidebar-links,
.footer-links,
.topic-links,
.info-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-list li,
.sidebar-links li,
.footer-links li,
.info-list li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 8px;
}

.sidebar-list li::before,
.sidebar-links li::before,
.footer-links li::before,
.info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
}

.sidebar-footer-link {
    margin-bottom: 0;
    font-weight: 700;
}

.page-banner {
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid #b8c8db;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}

.page-banner-media {
    position: relative;
    min-height: 236px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-banner-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 22, 42, 0.18) 0%, rgba(7, 18, 35, 0.72) 100%);
}

.page-banner-text {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 1;
    padding: 24px 24px 22px;
    color: #ffffff;
}

.eyebrow {
    margin: 0 0 8px;
    color: #d1eaff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.25px;
    text-transform: uppercase;
}

.page-banner h1 {
    margin: 0 0 8px;
    font: 700 34px/1.06 Georgia, "Times New Roman", serif;
}

.page-banner p:last-child {
    margin: 0;
    max-width: 760px;
}

.content-section {
    padding: 20px;
    margin-bottom: 18px;
}

.content-section h2,
.content-section h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
}

.content-section h2 {
    font-size: 29px;
    line-height: 1.12;
}

.content-section h3 {
    font-size: 23px;
    line-height: 1.15;
}

.content-section p {
    margin: 0 0 12px;
}

.intro-split,
.support-panel,
.two-up-grid,
.contact-grid,
.metric-grid,
.partner-grid,
.insights-grid,
.topic-grid,
.detail-grid {
    display: grid;
    gap: 18px;
}

.intro-split {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    align-items: start;
}

.metric-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin-top: 16px;
}

.metric-card {
    padding: 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #eef5fb 0%, #dfe9f6 100%);
    text-align: center;
}

.metric-card strong {
    display: block;
    margin-bottom: 6px;
    font: 700 22px/1.1 Georgia, "Times New Roman", serif;
    color: var(--navy);
}

.two-up-grid,
.partner-grid,
.insights-grid,
.topic-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.detail-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.partner-card,
.insight-card,
.topic-card,
.detail-card {
    padding: 18px;
}

.detail-card {
    height: 100%;
}

.partner-card h3,
.insight-card h3,
.topic-card h3,
.detail-card h3 {
    margin-top: 0;
    font-size: 23px;
}

.focus-pill {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #dceaf7;
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.65px;
    text-transform: uppercase;
}

.cta-panel {
    padding: 18px 20px;
    background: linear-gradient(180deg, #0f325b 0%, #0a2340 100%);
    color: #d7ebfb;
}

.cta-panel h2,
.cta-panel h3 {
    margin-top: 0;
    color: #ffffff;
}

.cta-panel p:last-child {
    margin-bottom: 0;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

.cta-panel .button--outline {
    color: #0f335c;
    background: linear-gradient(180deg, #ffffff 0%, #e8eff8 100%);
}

.note-box {
    margin: 14px 0 0;
    padding: 14px 16px;
    border-left: 4px solid var(--blue);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: #edf4fb;
    color: var(--navy);
}

.contact-grid {
    grid-template-columns: minmax(340px, 0.95fr) minmax(420px, 1.05fr);
    align-items: start;
}

.contact-card {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.contact-card h2 {
    font-size: 26px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-grid .full-width {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 6px;
    color: var(--navy);
    font-weight: 700;
    font-size: 13px;
}

input,
select,
textarea {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #b9c9dc;
    border-radius: 8px;
    background: #ffffff;
    color: var(--text);
    font: inherit;
    box-shadow: inset 0 1px 2px rgba(11, 39, 69, 0.05);
}

textarea {
    min-height: 165px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(60, 122, 180, 0.28);
    outline-offset: 0;
    border-color: var(--blue);
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.form-helper {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.flash-message,
.error-box {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.flash-message--success {
    background: #e9f7ef;
    border-color: #9fceb3;
    color: #1e5d3b;
}

.flash-message--warning {
    background: #fff6e7;
    border-color: #e4c989;
    color: #7f5920;
}

.flash-message--error,
.error-box {
    background: #fff1f1;
    border-color: #e1b4b4;
    color: #8b2d2d;
}

.error-box ul {
    margin: 8px 0 0 18px;
}

.hidden-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.support-panel {
    grid-template-columns: 90px minmax(0, 1fr);
    align-items: start;
}

.support-icon-large {
    width: 86px;
    height: 86px;
}

.info-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
    margin-top: 16px;
    align-items: stretch;
}

.info-strip .detail-card h3 {
    font-size: 21px;
}

.photo-credit-note {
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
}

.site-footer {
    padding: 0;
    border-top: 1px solid #b6c6d8;
    background: linear-gradient(180deg, #14365e 0%, #0d2644 100%);
    color: #dceaf7;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.25fr 1fr 0.85fr;
    gap: 20px;
    padding: 24px 22px 18px;
}

.site-footer h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font: 700 20px/1.1 Georgia, "Times New Roman", serif;
}

.site-footer p {
    margin: 0 0 10px;
}

.site-footer a {
    color: #e9f6ff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 22px 16px;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: #b9d5eb;
    font-size: 12px;
}

@keyframes slow-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.globe-spin {
    animation: slow-spin 30s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
    .globe-spin {
        animation: none;
    }
}

@media (max-width: 1360px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .page-layout {
        display: block;
    }

    .sidebar-column {
        margin-top: 18px;
    }
}

@media (max-width: 980px) {
    .site-header,
    .spotlight-grid,
    .executive-panel,
    .page-layout,
    .intro-split,
    .contact-grid,
    .footer-columns,
    .service-grid,
    .two-up-grid,
    .partner-grid,
    .insights-grid,
    .topic-grid,
    .detail-grid,
    .metric-grid,
    .info-strip {
        grid-template-columns: 1fr;
    }

    .site-header {
        justify-items: start;
    }

    .header-callout {
        max-width: none;
        text-align: left;
    }

    .page-layout {
        display: block;
    }

    .sidebar-column {
        margin-top: 18px;
    }
}

@media (max-width: 760px) {
    .utility-bar,
    .site-header,
    .page-main,
    .footer-columns,
    .footer-bottom {
        padding-left: 16px;
        padding-right: 16px;
    }

    .site-nav ul {
        padding: 0 6px;
    }

    .nav-item a {
        padding: 12px 10px;
        font-size: 11px;
    }

    .brand-name {
        font-size: 31px;
    }

    .brand-subname {
        font-size: 15px;
        letter-spacing: 1.8px;
    }

    .home-spotlight,
    .content-section,
    .highlight-band {
        padding: 16px;
    }

    .page-banner-media {
        min-height: 250px;
    }

    .page-banner h1,
    .spotlight-copy h1 {
        font-size: 29px;
    }

    .footer-bottom,
    .utility-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}
