:root {
    --font-body: 'Open Sans', 'Segoe UI', Arial, sans-serif;
    --font-heading: 'Open Sans', 'Segoe UI', Arial, sans-serif;
    --ink: #0f172a;
    --ink-soft: #1f3650;
    --muted: #475467;
    --line: #c9d8ea;
    --surface: #ffffff;
    --surface-soft: #f5f8fc;
    --surface-warm: #edf4fb;
    --brand: #0a4f8a;
    --brand-strong: #083b68;
    --accent: #d4a017;
    --accent-strong: #9a6d08;
    --danger: #b42318;
    --deep: #0b3b75;
    --radius: 8px;
    --shadow: 0 18px 48px rgba(7, 91, 184, 0.12);
    --shadow-soft: 0 10px 28px rgba(15, 64, 128, 0.09);
    --page-gutter: clamp(20px, 3.5vw, 56px);
    --container: min(1440px, calc(100vw - (var(--page-gutter) * 2)));
    --site-header-offset: 140px;
    --app-field-height: 42px;
    --app-field-radius: 8px;
    --app-field-border: #cfd8e3;
    --app-field-border-focus: #075bb8;
    --app-field-shadow-focus: 0 0 0 3px rgba(7, 91, 184, 0.14);
    --app-field-bg: #fff;
    --app-field-text: #102033;
    --app-field-placeholder: #98a2b3;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    min-height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    min-height: 100%;
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.72;
    color: var(--ink);
    background:
        linear-gradient(rgba(10, 79, 138, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 79, 138, 0.03) 1px, transparent 1px),
        #f5f7fa;
    background-size: 32px 32px;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--font-heading);
    color: var(--ink);
    letter-spacing: 0;
    font-weight: 600;
}

p {
    margin: 0;
}

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

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

.website-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.website-shell {
    min-height: 100vh;
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    width: 100%;
    overflow: visible;
}

.website-main {
    flex: 1 0 auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: var(--site-header-offset);
    padding-bottom: 56px;
}

.website-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.modal-backdrop {
    z-index: 3000 !important;
}

.modal,
.modal.show {
    z-index: 3010 !important;
}

.modal-dialog {
    position: relative;
    z-index: 3020;
}

.assistant-widget {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8rem;
}

.assistant-widget__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.58rem;
    padding: 0.68rem 0.92rem;
    border: 0;
    border-radius: 999px;
    background: #0a4f8a;
    color: #fff;
    box-shadow: 0 18px 42px rgba(10, 79, 138, 0.34);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.assistant-widget__toggle:hover {
    transform: translateY(-1px);
    filter: saturate(1.06);
    box-shadow: 0 24px 50px rgba(10, 79, 138, 0.4);
}

.assistant-widget__toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.95rem;
    height: 1.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 0.88rem;
}

.assistant-widget__toggle-text {
    font-size: 0.83rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.assistant-widget__panel {
    width: min(420px, calc(100vw - 1.5rem));
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 1.35rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 253, 0.98)),
        #fff;
    box-shadow: 0 30px 70px rgba(15, 64, 128, 0.24);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.assistant-widget__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1rem 0.8rem;
    background: linear-gradient(135deg, rgba(7, 91, 184, 0.1), rgba(15, 118, 110, 0.08));
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.assistant-widget__eyebrow {
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #0f4c81;
    margin-bottom: 0.22rem;
}

.assistant-widget__header h3 {
    font-size: 1rem;
    line-height: 1.45;
    max-width: 18rem;
}

.assistant-widget__close {
    border: 0;
    background: transparent;
    color: #475467;
    cursor: pointer;
    padding: 0.35rem;
}

.assistant-widget__messages {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-height: 360px;
    overflow-y: auto;
    padding: 1rem;
}

.assistant-message {
    max-width: 92%;
    padding: 0.88rem 0.95rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(15, 64, 128, 0.08);
}

.assistant-message--bot {
    align-self: flex-start;
    background: #fff;
    border: 1px solid rgba(191, 219, 254, 0.9);
}

.assistant-message--user {
    align-self: flex-end;
    background: linear-gradient(135deg, #075bb8, #0f766e);
    color: #fff;
}

.assistant-message--loading {
    opacity: 0.82;
}

.assistant-thinking {
    display: inline-flex;
    align-items: flex-end;
    gap: 0.28rem;
    height: 1.25rem;
    margin: 0.18rem 0 0.48rem;
}

.assistant-thinking__wave {
    display: inline-block;
    width: 0.3rem;
    height: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #38bdf8 0%, #075bb8 100%);
    transform-origin: center bottom;
    animation: assistant-wave 1s ease-in-out infinite;
}

.assistant-thinking__wave:nth-child(2) {
    animation-delay: 0.12s;
}

.assistant-thinking__wave:nth-child(3) {
    animation-delay: 0.24s;
}

.assistant-thinking__wave:nth-child(4) {
    animation-delay: 0.36s;
}

@keyframes assistant-wave {
    0%,
    100% {
        transform: scaleY(0.75);
        opacity: 0.45;
    }

    50% {
        transform: scaleY(1.9);
        opacity: 1;
    }
}

.assistant-message__label {
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.38rem;
    color: #0f4c81;
}

.assistant-message--user .assistant-message__label {
    color: rgba(255, 255, 255, 0.82);
}

.assistant-message p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: inherit;
}

.assistant-message__list {
    margin: 0.7rem 0 0;
    padding-left: 1rem;
    display: grid;
    gap: 0.42rem;
}

.assistant-message__list li {
    font-size: 0.84rem;
    line-height: 1.5;
}

.assistant-message__sources {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.78rem;
}

.assistant-message__source {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.58rem;
    border-radius: 999px;
    background: #eaf2ff;
    color: #0f4c81;
    font-size: 0.72rem;
    font-weight: 800;
}

.assistant-widget__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0 1rem 1rem;
}

.assistant-widget__chip {
    border: 1px solid rgba(125, 177, 234, 0.7);
    border-radius: 999px;
    background: #fff;
    color: #0f4c81;
    padding: 0.48rem 0.78rem;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
}

.assistant-widget__form {
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    padding: 0.95rem 1rem 1rem;
    background: rgba(255, 255, 255, 0.88);
}

.assistant-widget__form textarea {
    min-height: 92px;
    border-radius: 1rem;
    background: #fff;
}

.assistant-widget__actions {
    margin-top: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.assistant-widget__hint {
    color: #667085;
    font-size: 0.77rem;
    line-height: 1.5;
}

.assistant-widget__submit {
    border: 0;
    border-radius: 999px;
    background: #075bb8;
    color: #fff;
    font-weight: 800;
    padding: 0.72rem 1.1rem;
    cursor: pointer;
}

.site-container {
    width: var(--container);
    max-width: 100%;
    margin: 0 auto;
}

.website-page-shell {
    width: var(--container);
    max-width: 100%;
    margin: 0 auto;
    font-size: 1.05rem;
}

.website-page-shell .section-heading__title {
    font-size: clamp(22px, 2.55vw, 32px);
}

.website-page-shell .section-heading__text {
    font-size: 15px;
}

.website-page-shell .feature-card h3,
.website-page-shell .serve-card h3,
.website-page-shell .how-detail-card h3,
.website-page-shell .story-card h3,
.website-page-shell .partner-card h3,
.website-page-shell .contact-card h3,
.website-page-shell .info-card h3,
.website-page-shell .process-card h3,
.website-page-shell .opportunity-card h3,
.website-page-shell .testimonial-card__person {
    font-size: 20px;
}

.website-page-shell .feature-card p,
.website-page-shell .serve-card p,
.website-page-shell .how-detail-card p,
.website-page-shell .story-card p,
.website-page-shell .partner-card p,
.website-page-shell .contact-card p,
.website-page-shell .info-card p,
.website-page-shell .process-card p,
.website-page-shell .opportunity-card p,
.website-page-shell .testimonial-card__quote,
.website-page-shell .faq-item__content p,
.website-page-shell .detail-main p,
.website-page-shell .detail-sidebar p,
.website-page-shell .home-contact-cta__card p {
    font-size: 15px;
}

.igsc-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding: 0.95rem 1rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.igsc-pagination__meta {
    color: var(--muted);
    font-size: 0.83rem;
    line-height: 1.45;
}

.igsc-pagination__meta strong {
    color: var(--ink);
    font-weight: 800;
}

.igsc-pagination__controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-left: auto;
}

.igsc-pagination__button,
.igsc-pagination__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-width: 2.4rem;
    min-height: 2.4rem;
    padding: 0.48rem 0.78rem;
    border: 1px solid var(--line);
    border-radius: 0.75rem;
    background: #fff;
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: 0.18s ease;
}

.igsc-pagination__button:hover,
.igsc-pagination__page:hover {
    border-color: #9dc7f7;
    background: #eff6ff;
    color: var(--brand);
    text-decoration: none;
}

.igsc-pagination__button--disabled {
    background: #f8fafc;
    color: #94a3b8;
    cursor: default;
}

.igsc-pagination__pages {
    display: flex;
    align-items: center;
    gap: 0.38rem;
    flex-wrap: wrap;
}

.igsc-pagination__page {
    padding-inline: 0.72rem;
}

.igsc-pagination__page--active {
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
    box-shadow: 0 8px 20px rgba(7, 91, 184, 0.2);
}

.igsc-pagination__ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    color: #94a3b8;
    font-size: 0.96rem;
    font-weight: 700;
}

.form-control,
input,
select,
textarea {
    width: 100%;
    min-height: var(--app-field-height);
    padding: 10px 12px;
    border: 1px solid var(--app-field-border);
    border-radius: var(--app-field-radius);
    background: var(--app-field-bg);
    color: var(--app-field-text);
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea.form-control,
textarea {
    min-height: 118px;
    resize: vertical;
}

.form-control::placeholder,
input::placeholder,
textarea::placeholder {
    color: var(--app-field-placeholder);
}

.required-marker {
    color: var(--danger);
    font-weight: 900;
}

.form-control:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--app-field-border-focus);
    box-shadow: var(--app-field-shadow-focus);
}

.select2-container {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

.select2-container--bootstrap4 .select2-selection,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
    min-height: var(--app-field-height) !important;
    border: 1px solid var(--app-field-border) !important;
    border-radius: var(--app-field-radius) !important;
    background: var(--app-field-bg) !important;
    box-shadow: none !important;
    font-size: 0.95rem;
}

.select2-container--bootstrap4 .select2-selection--single,
.select2-container--default .select2-selection--single {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    padding-right: 2.3rem !important;
    overflow: hidden !important;
    min-width: 0 !important;
}

.select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--app-field-text) !important;
    display: block !important;
    flex: 1 1 auto;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    line-height: 1.25 !important;
    padding-left: 12px !important;
    padding-right: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.select2-container--bootstrap4 .select2-selection--multiple,
.select2-container--default .select2-selection--multiple {
    min-width: 0 !important;
    overflow: hidden !important;
}

.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__rendered,
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0.25rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice,
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow,
.select2-container--default .select2-selection--single .select2-selection__arrow {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 2.25rem !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: none !important;
}

.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow b,
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    position: static !important;
    margin: 0 !important;
}

.select2-container--bootstrap4.select2-container--focus .select2-selection,
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--bootstrap4.select2-container--open .select2-selection,
.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--multiple {
    border-color: var(--app-field-border-focus) !important;
    box-shadow: var(--app-field-shadow-focus) !important;
}

.select2-dropdown {
    max-width: calc(100vw - 12px);
    overflow-x: hidden;
}

.select2-search--dropdown {
    padding: 6px !important;
}

.select2-search--dropdown .select2-search__field {
    width: 100% !important;
    min-height: 36px !important;
    padding: 7px 9px !important;
}

.site-header {
    background: #ffffff;
    color: var(--ink);
    border-bottom: 0 !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.site-header::after {
    content: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-strong) 0%, var(--accent) 50%, var(--brand) 100%);
    pointer-events: none;
}

.site-header__notice {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__notice-inner {
    display: grid;
    grid-template-columns: auto minmax(220px, 1fr) auto;
    align-items: center;
    gap: 16px;
    min-height: 38px;
    font-size: 12px;
}

.site-header__notice-pill {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #dbeafe;
    font-weight: 800;
    text-transform: uppercase;
}

.site-header__notice-text {
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-header__notice-links {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.78);
}

.site-header__notice-links a:hover {
    color: #fff;
}

.site-header__main {
    min-height: 74px;
    border-bottom: 0;
}

.site-header__inner {
    display: grid;
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    min-height: 74px;
}

.site-brand {
    display: inline-grid;
    grid-template-columns: 44px auto;
    align-items: center;
    gap: 18px;
    min-width: 0;
    width: 100%;
    max-width: 420px;
}

.site-brand__mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: transparent !important;
}

.site-brand__mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
    mix-blend-mode: multiply;
}

.site-brand__content {
    display: grid;
    gap: 2px;
    min-width: 0;
    width: 100%;
}

.site-brand__eyebrow {
    color: var(--brand);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-brand__name {
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.11;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 0;
    flex-wrap: nowrap;
    overflow: hidden;
}

.site-nav__link,
.site-mobile-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    border-radius: var(--radius);
    color: #243b53;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
    background: #eef6ff;
    color: var(--brand-strong);
}

.site-nav__link.is-active::after {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 3px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
}

.site-header__actions,
.site-mobile-nav__actions,
.hero-actions,
.page-hero__actions,
.cta-banner__actions,
.filters-actions,
.site-footer__lead-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.site-header__actions {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 10px;
}

.site-header__account {
    position: relative;
    flex: 0 0 auto;
}

.site-header__account summary {
    list-style: none;
}

.site-header__account summary::-webkit-details-marker {
    display: none;
}

.site-header__avatar-link {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 3px;
    border: 1px solid rgba(7, 91, 184, 0.16);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header__avatar-link:hover {
    transform: translateY(-2px);
    border-color: rgba(7, 91, 184, 0.28);
    box-shadow: 0 14px 28px rgba(7, 91, 184, 0.12);
}

.site-header__avatar {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 999px;
    object-fit: cover;
}

.site-header__account-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(320px, calc(100vw - 2rem));
    padding: 0.95rem;
    border: 1px solid rgba(201, 216, 234, 0.95);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.14);
    display: none;
    z-index: 20;
}

.site-header__account[open] .site-header__account-menu {
    display: grid;
    gap: 0.9rem;
}

.site-header__account-head {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #e5edf6;
}

.site-header__account-avatar {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    border-radius: 999px;
    object-fit: cover;
}

.site-header__account-copy {
    min-width: 0;
    display: grid;
    gap: 0.16rem;
}

.site-header__account-copy strong,
.site-header__account-copy span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-header__account-copy strong {
    color: #102033;
    font-size: 0.95rem;
    font-weight: 900;
}

.site-header__account-copy span {
    color: #526173;
    font-size: 0.8rem;
    font-weight: 700;
}

.site-header__account-meta {
    display: grid;
    gap: 0.5rem;
}

.site-header__account-meta-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
    color: #243b53;
    font-size: 0.82rem;
    font-weight: 700;
}

.site-header__account-meta-row i {
    width: 1rem;
    color: #0a4f8a;
    flex: 0 0 auto;
    text-align: center;
}

.site-header__account-meta-row span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-header__account-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.site-header__account-actions form {
    margin: 0;
}

.site-header__account-btn {
    width: 100%;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.95rem;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-header__account-btn:hover {
    transform: translateY(-1px);
}

.site-header__account-btn--primary {
    background: #eef6ff;
    border-color: rgba(7, 91, 184, 0.12);
    color: #075bb8;
}

.site-header__account-btn--danger {
    background: #fff5f5;
    border-color: rgba(180, 35, 24, 0.12);
    color: #b42318;
}

.site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-btn:hover {
    transform: translateY(-2px);
}

.site-btn--primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 12px 28px rgba(7, 91, 184, 0.22);
}

.site-btn--primary:hover {
    background: var(--brand-strong);
}

.site-btn--ghost {
    background: #fff;
    border-color: var(--line);
    color: var(--ink);
}

.site-btn--ghost:hover {
    border-color: var(--brand);
    color: var(--brand-strong);
}

.site-btn--dark {
    background: var(--deep);
    color: #fff;
}

.site-btn--dark:hover {
    background: #123f76;
}

.site-mobile-nav {
    display: none;
    position: relative;
    justify-self: end;
}

.site-mobile-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 42px;
    height: 42px;
    list-style: none;
    cursor: pointer;
    border: 1px solid rgba(7, 91, 184, 0.18);
    border-radius: 12px;
    background: #f2f7fd;
    color: #0a4f8a;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.site-mobile-nav__toggle::-webkit-details-marker {
    display: none;
}

.site-mobile-nav__bar {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--brand);
}

.site-mobile-nav__panel {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: min(360px, calc(100vw - 32px));
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.site-mobile-nav[open] .site-mobile-nav__panel {
    display: grid;
    gap: 4px;
    animation: menuDrop 0.22s ease both;
}

.site-mobile-nav__link {
    justify-content: space-between;
    color: #38516f;
}

.site-mobile-nav__link:hover,
.site-mobile-nav__link.is-active {
    background: #eef6ff;
    color: var(--brand-strong);
}

.site-mobile-nav__actions {
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

.site-alert {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: var(--radius);
    font-weight: 700;
    line-height: 1.55;
}

.site-alert--success {
    background: #dcfce7;
    color: #166534;
}

.site-alert--warning {
    background: #fef3c7;
    color: #92400e;
}

.site-alert--info {
    background: #dbeafe;
    color: #1d4ed8;
}

.site-alert--danger {
    background: #fee2e2;
    color: #991b1b;
}

.section {
    padding: 42px 0;
}

.section--soft,
.section--band-light {
    padding: 42px 24px;
    margin: 18px 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
}

.section--band {
    padding: 44px 24px;
    margin: 18px 0;
    border: 1px solid #d6e8ff;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #eef6ff 0%, #ffffff 100%);
    color: var(--ink);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.section--band .section-heading__title,
.section--band .section-heading__text,
.section--band .section-heading__eyebrow {
    color: inherit;
}

.section--band .section-heading__eyebrow {
    color: var(--brand);
}

.section--band .section-heading__text {
    color: var(--muted);
}

.section-heading {
    width: 100%;
    margin-bottom: 22px;
    animation: riseIn 0.55s ease both;
}

.section-heading--centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading--split {
    max-width: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.section-heading--light .section-heading__eyebrow,
.section-heading--light .section-heading__title,
.section-heading--light .section-heading__text {
    color: #fff;
}

.section-heading__eyebrow,
.hero-eyebrow,
.page-hero__eyebrow,
.partner-card__type,
.home-value-panel__eyebrow,
.home-contact-cta__label,
.metric-card__label,
.detail-sidebar__label,
.home-hero__floating-label {
    color: var(--brand);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.section-heading__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    background: #eaf5ff;
    color: var(--brand-strong);
}

.section-heading__title {
    margin-top: 8px;
    color: #526173;
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 500;
    line-height: 1.22;
}

.section-heading__text {
    margin-top: 10px;
    color: #8a96a6;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
}

.home-hero {
    position: relative;
    min-height: auto;
    margin-top: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    align-items: center;
    gap: clamp(22px, 4vw, 48px);
    overflow: hidden;
    padding: clamp(28px, 5vw, 50px);
    border: 1px solid #d6e8ff;
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, #ffffff 0%, #f4f9ff 54%, #eaf5ff 100%);
    box-shadow: var(--shadow);
    isolation: isolate;
}

.home-hero::before {
    content: '';
    position: absolute;
    inset: auto auto -120px -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    z-index: -1;
    background: rgba(56, 189, 248, 0.16);
}

.home-hero__copy {
    max-width: none;
    color: var(--ink);
    animation: riseIn 0.7s ease both;
}

.home-hero__visual {
    position: relative;
    min-height: 440px;
    max-width: 500px;
    width: 100%;
    justify-self: end;
    z-index: 1;
}

.home-hero__image-card {
    position: relative;
    height: 100%;
    min-height: 440px;
    overflow: hidden;
    border: 8px solid #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 42px rgba(7, 91, 184, 0.16);
}

.home-hero__image-card img {
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    animation: imageDrift 18s ease-in-out infinite alternate;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-left: 3px solid var(--accent);
    background: #eaf5ff;
    color: var(--brand-strong);
    border-radius: var(--radius);
}

.hero-title {
    margin-top: 16px;
    color: var(--ink);
    font-size: clamp(24px, 3.5vw, 35px);
    line-height: 1.1;
}

.hero-text {
    margin-top: 18px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
        text-align: justify;

}

.hero-actions {
    margin-top: 24px;
}

.home-hero__mini-grid,
.home-trust-strip,
.feature-grid,
.how-detail-grid,
.serve-grid,
.stats-grid,
.story-grid,
.partner-grid,
.opportunities-grid,
.cards-grid,
.contact-grid,
.impact-grid,
.faq-grid,
.process-flow,
.why-list,
.home-value-panel__stats {
    display: grid;
    gap: 12px;
}

.home-hero__mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.hero-highlight {
    padding: 16px;
    border: 1px solid #d6e8ff;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 24px rgba(7, 91, 184, 0.08);
}

.hero-highlight strong {
    display: block;
    color: var(--ink);
    font-size: 14px;
}

.hero-highlight span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.home-hero__floating {
    position: absolute;
    width: min(220px, 24vw);
    padding: 12px;
    border: 1px solid #d6e8ff;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    box-shadow: 0 12px 26px rgba(7, 91, 184, 0.14);
    backdrop-filter: blur(12px);
    animation: floatPanel 5s ease-in-out infinite;
}

.home-hero__floating--top {
    left: -14px;
    top: 28px;
}

.home-hero__floating--bottom {
    right: -14px;
    bottom: 28px;
    animation-delay: 1.4s;
}

.home-hero__floating-label {
    color: var(--brand);
}

.home-hero__floating-title {
    margin-top: 6px;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.home-trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 8px;
}

.metric-card,
.feature-card,
.serve-card,
.story-card,
.partner-card,
.contact-card,
.info-card,
.process-card,
.opportunity-card,
.testimonial-card,
.faq-item,
.cta-banner,
.filter-panel,
.detail-sidebar,
.detail-main,
.home-value-panel,
.home-contact-cta__copy,
.home-contact-cta__card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.metric-card,
.feature-card,
.serve-card,
.story-card,
.partner-card,
.contact-card,
.info-card,
.process-card,
.opportunity-card,
.testimonial-card,
.faq-item,
.filter-panel,
.detail-sidebar,
.detail-main,
.home-contact-cta__card {
    padding: 18px;
}

.metric-card {
    position: relative;
    overflow: hidden;
    min-height: 112px;
}

.metric-card--summary {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 120px;
    padding: 12px;
    border: 1px solid #dbe7f4;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 64, 128, 0.05);
}

.metric-card::after {
    content: none;
}

.metric-card__icon {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: #eef5ff;
    color: var(--brand);
    font-size: 16px;
    box-shadow: inset 0 0 0 1px rgba(7, 91, 184, 0.04);
}

.metric-card__content {
    min-width: 0;
}

.metric-card__label {
    color: var(--brand);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.metric-card__value {
    margin-top: 6px;
    font-family: var(--font-heading);
    color: #18233b;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 800;
    line-height: 1;
}

.metric-card__text {
    margin-top: 6px;
    color: #74839c;
    font-size: 11px;
    line-height: 1.35;
}

.metric-card--blue .metric-card__icon {
    background: #eef5ff;
    border-color: #bfd7ff;
    color: #365edc;
}

.metric-card--teal .metric-card__icon {
    background: #eefaf8;
    border-color: #b9ebe3;
    color: #2c7a6b;
}

.metric-card--gold .metric-card__icon {
    background: #fff9eb;
    border-color: #f5dd95;
    color: #c37d2a;
}

.metric-card--dark {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.metric-card--dark .metric-card__label,
.metric-card--dark .metric-card__value {
    color: #fff;
}

.feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.how-detail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.feature-grid--compact,
.why-list,
.home-value-panel__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.serve-card,
.how-detail-card,
.process-card,
.partner-card,
.story-card,
.testimonial-card,
.opportunity-card {
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    animation: riseIn 0.55s ease both;
}

.feature-card:hover,
.serve-card:hover,
.how-detail-card:hover,
.process-card:hover,
.partner-card:hover,
.story-card:hover,
.testimonial-card:hover,
.opportunity-card:hover {
    transform: translateY(-4px);
    border-color: rgba(7, 91, 184, 0.28);
    box-shadow: var(--shadow);
}

.feature-card__icon,
.serve-card__icon,
.process-card__index {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: var(--radius);
    background: var(--deep);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
}

.feature-card h3,
.serve-card h3,
.how-detail-card h3,
.story-card h3,
.partner-card h3,
.contact-card h3,
.info-card h3,
.process-card h3,
.opportunity-card h3,
.testimonial-card__person {
    margin-top: 14px;
    font-size: 18px;
    line-height: 1.25;
}

.feature-card p,
.serve-card p,
.how-detail-card p,
.story-card p,
.partner-card p,
.contact-card p,
.info-card p,
.process-card p,
.opportunity-card p,
.testimonial-card__quote,
.faq-item__content p,
.detail-main p,
.detail-sidebar p,
.home-contact-cta__card p {
    margin-top: 10px;
    color: #344054;
    font-size: 14px;
    line-height: 1.65;
}

.split-panel,
.home-split,
.home-value-grid,
.home-serve-layout,
.home-contact-cta,
.opportunity-layout,
.contact-grid {
    display: grid;
    gap: 16px;
}

.split-panel,
.home-split {
    grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
}

.home-value-grid,
.home-contact-cta {
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
}

.home-serve-layout {
    grid-template-columns: minmax(330px, 0.88fr) minmax(0, 1.12fr);
}

.home-split__media,
.home-serve-intro__card,
.contact-map,
.text-panel {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.home-split__media img,
.home-serve-intro__card img {
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-split__media:hover img,
.home-serve-intro__card:hover img {
    transform: scale(1.035);
}

.home-split__content {
    align-self: center;
}

.text-panel {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 22px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(248, 250, 252, 0.96) 0%, rgba(255, 255, 255, 1) 100%);
}

.text-panel--soft {
    background:
        linear-gradient(180deg, rgba(245, 249, 255, 0.96) 0%, rgba(255, 255, 255, 1) 100%);
}

.text-panel__kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(10, 79, 138, 0.08);
    color: #0a4f8a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.text-panel__title {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(24px, 2.4vw, 30px);
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.text-panel__text {
    margin: 0;
    color: #526072;
    font-size: 14px;
    line-height: 1.65;
}

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

.sector-list-grid__item {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: #415164;
    font-size: 14px;
    line-height: 1.45;
}

.why-list--stacked {
    grid-template-columns: 1fr;
}

.why-list__item {
    position: relative;
    padding: 14px 14px 14px 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.why-list__item::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 17px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: inset 0 0 0 4px #dbeafe;
}

.how-detail-card {
    position: relative;
    padding: 18px;
    border: 1px solid #d6e8ff;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 253, 0.98) 100%);
    box-shadow: 0 16px 32px rgba(15, 64, 128, 0.08);
}

.how-detail-card__label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    background: #eaf5ff;
    color: var(--brand-strong);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.how-detail-card h3 {
    margin-top: 14px;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.25;
}

.how-detail-card p {
    margin-top: 10px;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.7;
}

.home-value-panel,
.home-contact-cta__copy,
.home-impact-panel {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(7, 91, 184, 0.12) 0%, rgba(11, 114, 217, 0.1) 58%, rgba(56, 189, 248, 0.16) 100%);
    color: var(--ink);
}

.home-value-panel,
.home-contact-cta__copy {
    padding: 24px;
}

.home-value-panel::after,
.home-contact-cta__copy::after,
.home-impact-panel::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, #dbeafe, var(--accent), var(--brand));
    animation: scanLine 4s ease-in-out infinite alternate;
}

.home-value-panel__eyebrow,
.home-contact-cta__label {
    color: var(--brand);
}

.home-value-panel h3,
.home-contact-cta__copy h2,
.home-impact-panel h2,
.home-contact-cta__copy .section-heading__eyebrow {
    color: var(--ink);
}

.home-value-panel h3,
.home-contact-cta__copy h2 {
    margin-top: 10px;
    font-size: clamp(28px, 3.8vw, 48px);
    line-height: 1.05;
}

.home-value-panel p,
.home-contact-cta__copy p {
    margin-top: 12px;
    color: var(--ink-soft);
    line-height: 1.7;
}

.home-value-panel__stats {
    margin-top: 18px;
}

.home-value-panel__list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.home-value-panel__stat {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.07);
}

.home-value-panel__item {
    padding: 14px 16px;
    border: 1px solid rgba(7, 91, 184, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
}

.home-value-panel__item strong {
    display: block;
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.home-value-panel__item span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.home-value-panel__stat strong {
    display: block;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 26px;
}

.home-value-panel__stat span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.process-flow {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-card {
    position: relative;
}

.process-card__index {
    background: var(--brand);
}

.process-flow--timeline {
    position: relative;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
    margin: 0 auto;
}

.process-flow--timeline::before {
    content: '';
    position: absolute;
    left: 29px;
    top: 12px;
    bottom: 12px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--brand) 0%, var(--accent) 100%);
    opacity: 0.22;
}

.process-card--timeline {
    position: relative;
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.process-card--timeline:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.process-card__rail {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding-top: 14px;
}

.process-card--timeline .process-card__index {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 3px solid rgba(255, 255, 255, 0.94);
    box-shadow:
        0 0 0 6px rgba(7, 91, 184, 0.12),
        0 12px 24px rgba(7, 91, 184, 0.18);
    font-size: 13px;
}

.process-card__body {
    position: relative;
    padding: 20px 18px 20px 20px;
    border: 1px solid #d6e8ff;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 253, 0.98) 100%);
    box-shadow: 0 18px 38px rgba(15, 64, 128, 0.1);
}

.process-card__body::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 34px;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border-left: 1px solid #d6e8ff;
    border-bottom: 1px solid #d6e8ff;
    background: #f9fbfe;
    transform: rotate(45deg);
}

.process-card__eyebrow {
    display: inline-block;
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.process-card--timeline h3 {
    margin-top: 10px;
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.2;
}

.process-card--timeline p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.75;
}

.opportunities-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.opportunities-shell {
    display: grid;
    gap: 22px;
}

.opportunities-listing__head {
    margin-bottom: 16px;
}

.opportunities-grid--listing {
    grid-template-columns: 1fr;
    gap: 10px;
}

.opportunity-card {
    min-height: auto;
    display: flex;
    flex-direction: column;
    border: 1px solid #d7e1ea;
    background: #ffffff;
    box-shadow: none;
}

.opportunity-card__top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}

.opportunity-card__tag,
.opportunity-card__status {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.opportunity-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 7px;
    border: 1px solid #d7e1ea;
    border-radius: 999px;
    background: #f8fafc;
    color: #334155;
}

.opportunity-card__status {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 7px;
    border: 1px solid #d7e1ea;
    border-radius: 999px;
    background: #ffffff;
    color: #166534;
}

.opportunity-card__funder {
    margin-top: 6px;
    color: #475467;
    font-size: 12px;
    font-weight: 800;
}

.opportunity-card__facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px 12px;
    margin-top: 10px;
}

.opportunity-card__facts div {
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.opportunity-card__facts span,
.opportunity-card__footer span {
    display: block;
    color: #667085;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.opportunity-card__facts strong {
    display: block;
    margin-top: 3px;
    color: #1f2937;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.opportunity-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #eef2f6;
}

.opportunity-card__link {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 10px;
    border-radius: var(--radius);
    border: 1px solid #d7e1ea;
    background: #ffffff;
    color: #0a4f8a;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.opportunity-card__title-link {
    color: #0a4f8a !important;
    font-size: 0.96rem;
    font-weight: 700;
    text-decoration: none;
}

.opportunity-card__title-link:hover {
    color: #075bb8 !important;
    text-decoration: none;
}

.opportunity-card__link::after {
    content: ' ->';
    margin-left: 6px;
}

.home-opportunities-list {
    gap: 10px;
}

.opportunity-card--horizontal {
    padding: 14px 16px;
}

.opportunity-card__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.9fr) auto;
    gap: 14px;
    align-items: start;
    margin-top: 8px;
}

.opportunity-card__main {
    min-width: 0;
}

.opportunity-card--horizontal .opportunity-card__main h3 {
    margin-top: 0;
}

.opportunity-card--horizontal .opportunity-card__main p {
    max-width: 60ch;
    margin-top: 6px;
    color: #475467;
    font-size: 13px;
    line-height: 1.55;
}

.opportunity-card__facts--horizontal {
    margin-top: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: stretch;
}

.opportunity-card__footer--horizontal {
    margin-top: 0;
    padding-top: 0;
    min-width: 132px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    border-top: 0;
    gap: 8px;
}

.opportunity-card--horizontal h3 {
    font-size: 18px;
    line-height: 1.3;
}

.opportunity-card--horizontal .opportunity-card__footer span {
    text-align: right;
}

.serve-grid,
.story-grid,
.partner-grid,
.impact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.serve-grid--tall .serve-card,
.partner-grid--strip .partner-card {
    min-height: 190px;
}

.stats-grid,
.stats-grid--impact {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-impact-panel {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.partner-card__type {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border-left: 3px solid var(--accent);
    background: var(--surface-warm);
    color: var(--accent-strong);
}

.testimonial-card__quote {
    margin-top: 0;
    color: var(--ink-soft);
    font-size: 16px;
}

.testimonial-card__org {
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}

.home-contact-cta__card h3 {
    font-size: 28px;
    line-height: 1.12;
}

.section-actions {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.page-hero {
    display: block;
    padding: 24px 0 8px;
}

.page-hero__content {
    position: relative;
    width: 100%;
    padding: clamp(18px, 2.4vw, 26px);
    border: 1px solid #dbe5f0;
    border-radius: 14px;
    background:
        linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
    color: var(--ink);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.page-hero__content::after {
    content: none;
}

.page-hero__eyebrow {
    color: var(--brand);
}

.page-hero__title {
    margin-top: 8px;
    color: var(--ink);
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.08;
}

.page-hero__text {
    margin-top: 10px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.page-hero__actions {
    margin-top: 16px;
}

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

.filter-panel__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.filter-panel__head h2 {
    margin-top: 6px;
    color: #526173;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.filter-panel__count {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 10px;
    border: 1px solid #cfe4ff;
    border-radius: 999px;
    background: #ffffff;
    color: var(--brand-strong);
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.filter-panel,
.detail-sidebar {
    position: sticky;
    top: 124px;
}

.filter-panel--horizontal {
    position: static;
    padding: 18px;
    border-color: #d6e8ff;
    background:
        linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
}

.filters-form {
    display: grid;
    gap: 12px;
}

.filters-form--horizontal {
    grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(150px, 1fr));
    align-items: end;
}

.filter-field {
    min-width: 0;
}

.filter-field--search {
    grid-column: span 1;
}

.filters-form--horizontal .filters-actions {
    grid-column: span 2;
    align-self: end;
}

.filters-form--horizontal .site-btn {
    min-height: var(--app-field-height);
}

.detail-main section + section {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.detail-main h2 {
    font-size: 22px;
}

.detail-sidebar__list {
    display: grid;
    gap: 14px;
}

.detail-sidebar__value {
    margin-top: 4px;
    color: var(--ink);
    font-weight: 800;
}

.attachment-list {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.attachment-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
}

.faq-grid {
    grid-template-columns: minmax(0, 1fr);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    color: var(--ink);
    font-family: var(--font-heading);
    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    float: right;
    color: var(--brand);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item__content {
    padding-top: 8px;
}

.contact-grid {
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: stretch;
}

.contact-form {
    display: grid;
    gap: 12px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-card,
.contact-form-card {
    height: 100%;
}

.contact-card {
    display: flex;
    flex-direction: column;
}

.contact-card__content {
    min-width: 0;
}

.contact-socials {
    margin-top: auto;
    padding-top: 18px;
}

.contact-socials__title {
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
}

.contact-socials__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.contact-socials__links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid #d8e5f4;
    border-radius: var(--radius);
    background: #f8fbff;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 700;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-socials__links a:hover {
    border-color: rgba(7, 91, 184, 0.35);
    background: #eef6ff;
    color: var(--brand-strong);
    transform: translateY(-1px);
}

.contact-socials__links i {
    color: var(--brand);
    font-size: 13px;
}

.contact-map {
    border: 1px solid var(--line);
}

.contact-map iframe {
    width: 100%;
    height: 360px;
    border: 0;
}

.site-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.site-pagination__meta {
    color: var(--ink-soft);
    font-weight: 800;
}

.auth-main {
    padding-top: 34px;
    padding-bottom: 42px;
}

.auth-shell {
    width: var(--container);
    max-width: 100%;
    margin: 0 auto;
}

.auth-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
    gap: clamp(22px, 4vw, 52px);
    align-items: center;
    min-height: 620px;
    padding: clamp(24px, 4vw, 52px);
    border: 1px solid #d6e8ff;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.auth-layout--single {
    grid-template-columns: minmax(320px, 520px);
    justify-content: center;
    min-height: 520px;
}

.auth-intro {
    max-width: 680px;
}

.auth-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    background: #eaf5ff;
    color: var(--brand-strong);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.auth-intro h1 {
    max-width: 12ch;
    margin-top: 14px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
}

.auth-intro p {
    max-width: 580px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.auth-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.auth-benefits div {
    padding: 16px;
    border: 1px solid #d6e8ff;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 10px 24px rgba(7, 91, 184, 0.08);
}

.auth-benefits strong,
.auth-benefits span {
    display: block;
}

.auth-benefits strong {
    color: var(--ink);
    font-size: 14px;
}

.auth-benefits span {
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.auth-card {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid #cfe4ff;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.auth-layout--single .auth-card {
    margin: 0 auto;
}

.auth-card__head {
    margin-bottom: 20px;
}

.auth-card__head h2 {
    margin-top: 10px;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.08;
}

.auth-card__head p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.auth-form {
    display: grid;
    gap: 14px;
}

.auth-form--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-field--full {
    grid-column: 1 / -1;
}

.auth-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.auth-check {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.auth-check input {
    width: 16px;
    min-height: 16px;
    height: 16px;
    accent-color: var(--brand);
}

.auth-submit {
    width: 100%;
    margin-top: 4px;
}

.auth-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 14px;
}

.auth-links--single {
    justify-content: center;
}

.auth-links a {
    color: var(--brand);
    font-weight: 800;
}

.auth-links a:hover {
    color: var(--brand-strong);
    text-decoration: underline;
}

.register-page {
    width: 100%;
}

.register-page > .auth-card {
    width: 100%;
    max-width: none;
    margin: 0;
}

.register-panel {
    padding: 1.5rem;
    border: 1px solid #dbeafe;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 14px 34px rgba(7, 91, 184, 0.08);
}

.register-panel__header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e3eefc;
}

.register-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 1.25rem;
    align-items: start;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    border: 1px solid #d6e8ff;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
}

.register-overview__title {
    margin: 0.75rem 0 0;
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1.05;
    color: var(--ink);
}

.register-overview__text {
    margin: 0.85rem 0 0;
    max-width: 62ch;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.register-benefits {
    display: grid;
    gap: 0.85rem;
}

.register-benefits__item {
    padding: 0.95rem 1rem;
    border: 1px solid #d6e8ff;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 24px rgba(7, 91, 184, 0.07);
}

.register-benefits__item strong,
.register-benefits__item span {
    display: block;
}

.register-benefits__item span {
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.register-section-badge {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 2.8rem;
    padding: 0.75rem 1rem;
    border: 1px solid #cfe4ff;
    border-radius: 0.55rem;
    background: linear-gradient(90deg, #edf6ff 0%, #f8fbff 52%, #ffffff 100%);
    color: #0b4f8a;
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(7, 91, 184, 0.06);
}

.register-form .auth-field {
    margin-top: 0.5rem;
}

.register-form .auth-field label {
    margin-bottom: 0.75rem;
}

.register-form .auth-kicker {
    min-height: 0;
}

.register-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
}

.register-col-12 {
    grid-column: 1 / -1;
}

.register-section-note {
    margin: 0.3rem 0 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.site-footer {
    margin-top: auto;
    padding: 34px 0 24px;
    border-top: 1px solid var(--line);
    background: #edf3f8;
    color: #243b53;
}

.site-footer__grid,
.site-footer__bottom,
.site-footer__lead {
    width: var(--container);
    max-width: 100%;
    margin: 0 auto;
}

.site-footer__lead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
    padding: 22px;
    border: 1px solid #cfe4ff;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.site-footer__lead-copy h2 {
    color: var(--ink);
    font-size: clamp(26px, 3vw, 42px);
}

.site-footer__lead-copy p {
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.65;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.site-footer__brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-footer__logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    background: transparent;
    mix-blend-mode: multiply;
}

.site-footer__brand {
    color: var(--brand-strong);
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 900;
}

.site-footer__copy,
.site-footer__stack div {
    margin-top: 9px;
    line-height: 1.65;
    color: #344054;
}

.site-footer__brand-block {
    max-width: 420px;
}

.site-footer__title {
    color: var(--brand);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.site-footer__links {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.site-footer__links a,
.site-footer__links span {
    color: #38516f;
}

.site-footer__links a:hover {
    color: var(--brand-strong);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid #cfe4ff;
    font-size: 13px;
}

.site-footer__bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes menuDrop {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imageDrift {
    from {
        transform: scale(1.04) translateX(0);
    }

    to {
        transform: scale(1.1) translateX(-18px);
    }
}

@keyframes floatPanel {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes scanLine {
    from {
        transform: translateX(-12%);
    }

    to {
        transform: translateX(12%);
    }
}

@media (max-width: 1080px) {
    .site-header__inner {
        grid-template-columns: minmax(170px, 1fr) auto;
    }

    .site-nav,
    .site-header__actions {
        display: none;
    }

    .site-mobile-nav {
        display: block;
    }

    .feature-grid,
    .how-detail-grid,
    .process-flow,
    .stats-grid,
    .stats-grid--impact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .opportunities-grid,
    .opportunities-grid--listing {
        grid-template-columns: 1fr;
    }

    .opportunity-card__facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .filters-form--horizontal {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .site-header__notice-inner {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 8px 0;
    }

    .site-header__notice-text {
        white-space: normal;
    }

    .home-hero {
        min-height: auto;
        padding: 38px 24px;
        grid-template-columns: 1fr;
    }

    .home-hero::before {
        width: 260px;
        height: 260px;
        background: rgba(56, 189, 248, 0.14);
    }

    .home-hero__visual,
    .home-hero__image-card {
        min-height: 360px;
    }

    .home-hero__floating {
        width: min(230px, 44vw);
    }

    .split-panel,
    .home-split,
    .home-value-grid,
    .home-serve-layout,
    .home-contact-cta,
    .opportunity-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .filter-panel,
    .detail-sidebar {
        position: static;
    }

    .serve-grid,
    .story-grid,
    .partner-grid,
    .impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-flow--timeline {
        grid-template-columns: 1fr;
    }

    .filter-panel__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .auth-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .auth-intro,
    .auth-card {
        max-width: none;
    }

    .auth-card {
        margin-left: 0;
    }

    .register-overview {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    :root {
        --page-gutter: 10px;
        --container: min(1440px, calc(100vw - (var(--page-gutter) * 2)));
    }

    .website-main {
        padding-bottom: 36px;
    }

    .site-header__notice-links {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .site-header__inner {
        min-height: 68px;
    }

    .site-brand {
        grid-template-columns: 40px minmax(0, 1fr);
        max-width: 210px;
    }

    .site-brand__mark {
        width: 40px;
        height: 40px;
    }

    .site-brand__name {
        font-size: 14px;
    }

    .site-brand__eyebrow {
        display: none;
    }

    .home-hero__mini-grid,
    .home-trust-strip,
    .feature-grid,
    .how-detail-grid,
    .feature-grid--compact,
    .serve-grid,
    .story-grid,
    .partner-grid,
    .impact-grid,
    .process-flow,
    .stats-grid,
    .stats-grid--impact,
    .opportunities-grid,
    .opportunities-grid--listing,
    .why-list,
    .home-value-panel__stats,
    .filters-form--horizontal,
    .opportunity-card__facts,
    .contact-form__row,
    .site-footer__grid {
        grid-template-columns: 1fr !important;
    }

    .auth-main {
        padding-top: 20px;
    }

    .auth-layout {
        padding: 18px;
    }

    .auth-form--grid,
    .auth-benefits,
    .register-grid {
        grid-template-columns: 1fr;
    }

    .auth-intro h1 {
        max-width: none;
        font-size: clamp(30px, 10vw, 42px);
    }

    .auth-links {
        align-items: flex-start;
        flex-direction: column;
    }

    .auth-links--single {
        align-items: center;
    }

    .register-col-12 {
        grid-column: auto;
    }

    .register-panel {
        padding: 1.1rem;
    }

    .register-overview {
        padding: 1rem;
    }

    .home-hero {
        padding: 30px 18px;
    }

    .home-hero__visual,
    .home-hero__image-card {
        min-height: 280px;
    }

    .process-flow--timeline::before {
        left: 22px;
    }

    .process-card--timeline {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 14px;
    }

    .process-card--timeline .process-card__index {
        width: 44px;
        height: 44px;
        border-width: 3px;
        box-shadow:
            0 0 0 6px rgba(7, 91, 184, 0.1),
            0 12px 24px rgba(7, 91, 184, 0.14);
        font-size: 12px;
    }

    .process-card__rail {
        padding-top: 16px;
    }

    .process-card__body {
        padding: 18px 18px 18px 20px;
        border-radius: 14px;
    }

    .process-card__body::before {
        left: -6px;
        top: 29px;
        width: 12px;
        height: 12px;
    }

    .process-card--timeline h3 {
        font-size: 19px;
    }

    .process-card--timeline p {
        font-size: 14px;
        line-height: 1.65;
    }

    .home-hero__floating {
        display: none;
    }

    .hero-title {
        font-size: clamp(34px, 12vw, 54px);
    }

    .hero-text {
        font-size: 15px;
    }

    .section,
    .section--soft,
    .section--band,
    .section--band-light {
        padding: 30px 0;
        margin: 10px 0;
    }

    .section--soft,
    .section--band,
    .section--band-light,
    .home-impact-panel {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-heading--split,
    .site-footer__bottom,
    .site-footer__lead {
        display: grid;
        align-items: start;
    }

    .page-hero__content {
        padding: 24px;
    }

    .home-split__media img,
    .home-serve-intro__card img {
        min-height: 240px;
    }

    .site-btn {
        width: 100%;
        white-space: normal;
    }

    .hero-actions,
    .page-hero__actions,
    .cta-banner__actions,
    .filters-actions,
    .site-mobile-nav__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .attachment-item,
    .site-pagination {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}

/* Government website redesign layer */
.site-header {
    width: 100%;
    border-bottom: 1px solid #d7e1ea !important;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.site-header__utility {
    background: #0a4f8a;
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
}

.site-header__utility-inner {
    width: 100%;
    max-width: none;
    min-height: 36px;
    margin: 0 auto;
    padding: 0 0.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-header__utility-copy,
.site-header__utility-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.site-header__utility-kicker {
    display: inline-flex;
    align-items: center;
    min-height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.88);
}

.site-header__utility-links a {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
}

.site-header__utility-links a:hover {
    color: #ffffff;
    opacity: 0.86;
}

.site-header__main {
    min-height: 76px;
}

.site-header__inner {
    width: 100%;
    max-width: none;
    grid-template-columns: minmax(320px, 460px) minmax(0, 1fr) auto;
    min-height: 76px;
    gap: 20px;
    padding: 0 0.9rem;
}

.site-header__mobilebar {
    display: none;
}

.site-brand {
    max-width: 460px;
}

.site-brand__mark {
    width: 46px;
    height: 46px;
}

.site-brand__content {
    gap: 4px;
}

.site-brand__eyebrow {
    color: #8a6b12;
    font-size: 11px;
}

.site-brand__name {
    font-size: 16px;
    line-height: 1.1;
}

.site-nav {
    justify-content: flex-start;
    gap: 8px;
}

.site-nav__link,
.site-mobile-nav__link {
    min-height: 46px;
    padding: 0 14px;
    color: #20364f;
    font-weight: 800;
}

.site-nav__link:hover,
.site-nav__link.is-active {
    background: #edf3f8;
    color: #0a4f8a;
}

.site-header__actions .site-btn {
    min-height: 46px;
}

.site-btn--primary {
    background: #0a4f8a;
    border-color: #0a4f8a;
    color: #fff;
}

.site-btn--dark {
    background: #0a4f8a;
    border-color: #0a4f8a;
    color: #fff;
}

.site-btn--ghost {
    background: #0a4f8a;
    border-color: #0a4f8a;
    color: #fff;
}

.site-btn--primary:hover,
.site-btn--dark:hover,
.site-btn--ghost:hover {
    background: #083b68;
    border-color: #083b68;
    color: #fff;
}

.home-notice {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin: 20px 0 16px;
    padding: 18px 22px;
    border: 1px solid #d7e1ea;
    border-left: 6px solid #c49819;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.home-notice__kicker {
    color: #8a6b12;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-notice__primary h2 {
    margin-top: 6px;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.2;
}

.home-notice__primary p {
    margin-top: 8px;
    color: #475467;
    font-size: 15px;
    line-height: 1.7;
}

.home-notice__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.home-hero--government {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 28px;
    padding: 28px;
    border: 1px solid #d7e1ea;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 251, 0.98)),
        #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.home-hero--government .hero-eyebrow {
    color: #8a6b12;
    font-weight: 900;
}

.home-hero--government .hero-title {
    font-size: clamp(40px, 4.8vw, 62px);
    line-height: 1.04;
}

.home-hero--government .hero-text {
    max-width: 60ch;
    color: #475467;
    font-size: 16px;
    line-height: 1.75;
}

.home-hero__panel {
    margin-top: 16px;
    padding: 18px;
    border: 1px solid #d7e1ea;
    border-radius: 14px;
    background: #f7fafc;
}

.home-hero__panel-title {
    color: #0a4f8a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-hero__panel-list {
    display: grid;
    gap: 14px;
    margin-top: 14px;
}

.home-hero__panel-item strong,
.home-hero__panel-item span {
    display: block;
}

.home-hero__panel-item strong {
    color: #0f172a;
    font-size: 15px;
}

.home-hero__panel-item span {
    margin-top: 4px;
    color: #475467;
    font-size: 14px;
    line-height: 1.6;
}

.home-trust-strip--government {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.metric-card--government {
    position: relative;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 112px;
    padding: 16px 18px;
    border: 1px solid #d7e1ea;
    border-left: 4px solid #0a4f8a;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.metric-card--government .metric-card__label {
    color: #475467;
    font-size: 11px;
    letter-spacing: 0.04em;
}

.metric-card__serial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #f3f6f9;
    color: #0a4f8a;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.metric-card--government .metric-card__content {
    min-width: 0;
}

.metric-card--government .metric-card__value {
    margin-top: 8px;
    color: #0f172a;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
}

.metric-card--government .metric-card__text {
    margin-top: 8px;
    color: #667085;
    font-size: 12px;
    line-height: 1.45;
}

.feature-grid--government {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card--government,
.serve-card--government {
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.home-gov-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    gap: 24px;
}

.home-value-panel--government,
.home-process-compact {
    padding: 24px;
    border: 1px solid #d7e1ea;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.home-value-panel--government h3,
.home-process-compact h3 {
    margin-top: 8px;
    font-size: 28px;
    line-height: 1.2;
}

.home-value-panel--government p,
.home-process-compact p {
    color: #475467;
}

.home-process-compact__list {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.home-process-compact__item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.home-process-compact__item > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: linear-gradient(180deg, #0a4f8a 0%, #083b68 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.home-process-compact__item strong {
    display: block;
    color: #0f172a;
    font-size: 15px;
}

.home-process-compact__item p {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.65;
}

.page-hero {
    width: var(--container);
    max-width: 100%;
    margin: 16px auto 18px;
}

.page-hero__content {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
    gap: 18px;
    padding: 18px;
    border: 1px solid #dbe5f0;
    border-radius: 14px;
    background:
        radial-gradient(circle at top right, rgba(13, 110, 253, 0.05), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    align-items: start;
}

.page-hero__copy {
    min-width: 0;
    display: grid;
    gap: 12px;
}

.page-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eef4fb;
    color: #0a4f8a;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-hero__title {
    font-size: clamp(30px, 3.6vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.page-hero__text {
    max-width: 60ch;
    color: #475467;
    font-size: 15px;
    line-height: 1.65;
}

.page-hero__panel {
    min-width: 0;
}

.page-hero__summary {
    display: grid;
    gap: 14px;
    padding: 15px;
    border: 1px solid #dbe5f0;
    border-radius: 14px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.page-hero__summary-head {
    display: block;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.page-hero__summary-kicker {
    color: #0a4f8a;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-hero__summary-grid {
    display: grid;
    gap: 10px;
}

.page-hero__summary-title {
    margin-top: 4px;
    color: #0f172a;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-hero__summary-text {
    margin-top: 8px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
}

.page-hero__summary-item {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
}

.page-hero__summary-item > div {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.page-hero__summary-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #0a4f8a;
    color: #ffffff;
    font-size: 14px;
}

.page-hero__summary-icon i {
    color: #ffffff;
}

.page-hero__summary-item strong {
    color: #0f172a;
    font-size: 13px;
    line-height: 1.2;
}

.page-hero__summary-item span {
    color: #475467;
    font-size: 14px;
    line-height: 1.45;
}

.opportunity-card,
.feature-card,
.serve-card,
.info-card,
.contact-card,
.contact-form-card,
.process-card__body,
.faq-item,
.detail-sidebar,
.detail-main {
    border-color: #d7e1ea;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.site-footer {
    padding-top: 42px;
    background: linear-gradient(180deg, #f0f4f8 0%, #e8eef4 100%);
}

@media (max-width: 1100px) {
    .site-header__inner,
    .page-hero__content,
    .home-hero--government,
    .home-gov-grid,
    .home-notice,
    .feature-grid--government {
        grid-template-columns: 1fr;
    }

    .site-header__utility-inner {
        padding-top: 8px;
        padding-bottom: 8px;
        align-items: flex-start;
        flex-direction: column;
    }

    .home-notice__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 1239.98px) {
    :root {
        --site-header-offset: 68px;
    }

    .site-header__utility {
        display: none;
    }

    .site-header__main {
        display: none;
    }

    .site-header__mobilebar {
        min-height: 68px;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 0.8rem;
    }

    .site-mobile-nav {
        position: relative;
        justify-self: start;
        min-width: 42px;
    }

    .site-mobile-nav__toggle i,
    .site-header__mobile-action i {
        font-size: 0.95rem;
    }

    .site-mobile-nav__bar {
        display: none;
    }

    .site-header__mobilebrand {
        min-width: 0;
        width: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.65rem;
        color: #0f172a;
        overflow: hidden;
    }

    .site-header__mobilebrand .site-brand__mark {
        width: 30px;
        height: 30px;
    }

    .site-header__mobilebrand-text {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        font-family: var(--font-heading);
        font-size: clamp(0.78rem, 1.55vw, 0.9rem);
        font-weight: 800;
        line-height: 1.08;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .site-header__mobile-action {
        width: 42px;
        min-width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        justify-self: end;
        flex-shrink: 0;
        border: 1px solid rgba(7, 91, 184, 0.18);
        border-radius: 12px;
        background: #f2f7fd;
        color: #0a4f8a;
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    }

    .site-mobile-nav__panel {
        position: fixed;
        top: var(--site-header-offset);
        left: 0.75rem;
        right: 0.75rem;
        width: auto;
        max-height: calc(100vh - var(--site-header-offset) - 1rem);
        overflow-y: auto;
        padding: 0.8rem;
        border-radius: 16px;
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    }

}

@media (max-width: 767.98px) {
    .home-hero--government,
    .page-hero__content,
    .home-value-panel--government,
    .home-process-compact,
    .home-notice {
        padding: 18px;
    }

    .page-hero__summary-head {
        flex-direction: column;
    }

    .home-hero--government .hero-title,
    .page-hero__title {
        font-size: clamp(28px, 10vw, 38px);
    }

    .sector-list-grid {
        grid-template-columns: 1fr;
    }
}

.home-modern {
    display: grid;
    gap: 0;
    padding-top: 20px;
}

.home-modern__hero,
.home-modern__section,
.home-modern__cta {
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(16px, calc((100vw - 1440px) / 2 + 16px));
    padding-right: max(16px, calc((100vw - 1440px) / 2 + 16px));
}

.home-modern__hero {
    padding: 28px 30px;
    background:
        radial-gradient(circle at top left, rgba(10, 79, 138, 0.14), transparent 30%),
        linear-gradient(90deg, rgba(10, 79, 138, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
    background-size: auto, 32px 32px, auto;
    position: relative;
}

/* .home-modern__hero::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 180px;
    height: 4px;
    background: linear-gradient(90deg, #0a4f8a 0%, #c4972f 100%);
} */

.home-modern__hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(300px, 0.68fr);
    gap: 28px;
}

.home-modern__hero-copy {
    display: grid;
    align-content: center;
    gap: 14px;
    max-width: 920px;
}

.home-modern__hero-title {
    font-size: clamp(1.9rem, 3.8vw, 3.2rem);
    line-height: 1;
    max-width: 22ch;
    letter-spacing: -0.03em;
}

.home-modern__hero-text {
    max-width: 84ch;
    color: #334155;
    font-size: 1rem;
    line-height: 1.72;
}

.home-modern__hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.home-modern__hero-points span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid #dbe5ef;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #0f172a;
    font-size: 0.86rem;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.home-modern__hero-visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.home-modern__flow-card {
    display: grid;
    width: 100%;
    max-width: 432px;
    gap: 12px;
    padding-top: 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.home-modern__flow-heading {
    color: #0a4f8a;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-modern__flow-subtitle {
    margin-top: 4px;
    color: #475467;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
}

.home-modern__diagram-header {
    max-width: 31rem;
}

.home-modern__diagram {
    display: grid;
    gap: 12px;
    padding: 18px 18px 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 252, 0.98)),
        linear-gradient(90deg, rgba(10, 79, 138, 0.05), rgba(10, 79, 138, 0));
    position: relative;
    overflow: hidden;
}

.home-modern__diagram::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #0a4f8a, #64a5d8);
}

.home-modern__diagram::after {
    content: '';
    position: absolute;
    inset: auto 0 0 auto;
    width: 56%;
    height: 56%;
    background: radial-gradient(circle at center, rgba(148, 194, 230, 0.18), rgba(148, 194, 230, 0) 70%);
    pointer-events: none;
}

.home-modern__diagram-priority {
    display: grid;
    justify-items: center;
    gap: 7px;
}

.home-modern__diagram-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(106px, 1fr) 164px minmax(106px, 1fr);
    gap: 12px;
    align-items: center;
}

.home-modern__diagram-grid::before {
    content: '';
    position: absolute;
    left: calc(50% - 1px);
    top: -12px;
    width: 2px;
    height: 16px;
    background: linear-gradient(180deg, rgba(10, 79, 138, 0.75), rgba(10, 79, 138, 0.25));
}

.home-modern__diagram-lane {
    display: grid;
    gap: 7px;
}

.home-modern__diagram-kicker {
    color: #64748b;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-modern__diagram-box {
    min-height: 36px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.98);
    color: #0f172a;
    font-size: 0.75rem;
    font-weight: 800;
    display: grid;
    align-items: center;
    line-height: 1.35;
    box-shadow: inset 0 0 0 1px rgba(219, 229, 239, 0.9);
}

.home-modern__diagram-box--priority {
    min-width: 180px;
    padding-inline: 16px;
    justify-items: center;
    text-align: center;
    box-shadow:
        inset 0 0 0 1px rgba(10, 79, 138, 0.16),
        0 10px 24px rgba(10, 79, 138, 0.06);
}

.home-modern__diagram-engine-wrap {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 10px 0;
}

.home-modern__diagram-engine-wrap::before,
.home-modern__diagram-engine-wrap::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, rgba(10, 79, 138, 0.28), rgba(10, 79, 138, 0.78));
    transform: translateY(-50%);
}

.home-modern__diagram-engine-wrap::before {
    left: -18px;
}

.home-modern__diagram-engine-wrap::after {
    right: -18px;
}

.home-modern__diagram-engine-line {
    width: 2px;
    height: 18px;
    background: linear-gradient(180deg, rgba(10, 79, 138, 0.76), rgba(10, 79, 138, 0.2));
}

.home-modern__diagram-engine {
    width: 100%;
    min-height: 74px;
    padding: 12px 14px;
    background: linear-gradient(135deg, #0a4f8a 0%, #083b68 72%, #062f54 100%);
    color: #fff;
    display: grid;
    gap: 3px;
    align-content: center;
    text-align: center;
    box-shadow: 0 14px 28px rgba(10, 79, 138, 0.14);
}

.home-modern__diagram-engine-title {
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.home-modern__diagram-engine-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.67rem;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
}

.home-modern__section {
    padding: 42px 30px;
}

.home-modern__section--alt {
    background: #f2f2f2 !important;
}

.home-modern__section--flush {
    padding-left: 0;
    padding-right: 0;
}

.home-modern__section-inner {
    width: var(--container);
    max-width: calc(100vw - 32px);
    margin: 0 auto;
}

.home-modern__section--metrics {
    padding: 18px 22px;
    background: linear-gradient(180deg, #eef6ff 0%, #e3f0ff 100%);
    border-color: #cfe0f2;
}

.home-modern__heading {
    margin-bottom: 18px;
}

.home-modern__heading--split {
    margin-bottom: 18px;
    align-items: center;
}

.home-modern__heading--split .section-heading__title {
    margin-top: 0;
}

.home-modern__join-grid,
.home-modern__priority-grid,
.home-modern__metrics-row {
    display: grid;
    gap: 14px;
}

.home-modern__issues-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-modern__issue-card {
    position: relative;
    padding: 22px 22px 20px;
    border-radius: 24px 0 24px 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98)),
        linear-gradient(135deg, rgba(10, 79, 138, 0.05), rgba(10, 79, 138, 0));
    box-shadow:
        0 14px 28px rgba(15, 23, 42, 0.05),
        inset 0 0 0 1px rgba(220, 228, 236, 0.95);
}

.home-modern__issue-card-kicker {
    color: #0a4f8a;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-modern__issue-card-title {
    margin: 10px 0 0;
    color: #101828;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.32;
}

.home-modern__issue-card-reality {
    margin: 12px 0 0;
    color: #344054;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.55;
}

.home-modern__issue-card-detail {
    margin: 12px 0 0;
    color: #667085;
    font-size: 0.88rem;
    line-height: 1.62;
}

.home-modern__response-panel {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    padding: 18px 0 0;
    border-top: 1px solid #dbe5ef;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    background: transparent;
}

.home-modern__response-title {
    color: #0a4f8a;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-modern__response-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-modern__response-list span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 0.25rem 0 0;
    border-radius: 0;
    background: transparent;
    color: #0f172a;
    font-weight: 800;
}

.home-modern__join-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.home-modern__join-card {
    padding: 20px 16px;
    text-align: center;
}

.home-modern__membership-panel {
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.home-modern__membership-kicker {
    margin-bottom: 42px;
    color: #667085;
    font-size: 0.9rem;
    font-weight: 500;
}

.home-modern__join-grid--showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 44px 56px;
}

.home-modern__join-card--showcase {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 0;
    text-align: left;
}

.home-modern__join-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin: 0;
    border-radius: 14px;
    background: #0a4f8a;
    color: #ffffff;
    font-size: 1.45rem;
    box-shadow: 0 14px 30px rgba(10, 79, 138, 0.18);
}

.home-modern__join-icon i {
    color: inherit;
}

.home-modern__join-card h3 {
    margin-top: 0;
    margin-bottom: 0;
    color: #101828;
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.32;
}

.home-modern__join-card p {
    margin-top: 10px;
    color: #667085;
    font-size: 0.96rem;
    line-height: 1.62;
}

.home-modern__summary-table-wrap {
    overflow-x: auto;
}

.home-modern__summary-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 0;
    border-bottom: 1px solid #d7e1ea;
    background: #fff;
    min-width: 880px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.025);
}

.home-modern__summary-head {
    border-bottom: 1px solid #d7e1ea;
    background: #fbfbfc;
}

.home-modern__summary-head th {
    padding: 16px 18px;
    color: #1f2937;
    background: #fbfbfc;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-align: left;
}

.home-modern__summary-priority {
    width: 24%;
    padding: 16px 18px;
    color: #2a6ebb;
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
}

.home-modern__summary-metric {
    width: 11%;
    padding: 16px 18px;
    color: #101828;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
    white-space: nowrap;
    vertical-align: top;
}

.home-modern__summary-metric--gap {
    color: #b42318;
}

.home-modern__summary-opportunity {
    width: 32%;
    padding: 16px 18px;
    color: #344054;
    font-size: 0.9rem;
    line-height: 1.55;
    vertical-align: top;
}

.home-modern__summary-row {
    border-bottom: 1px solid #e5e7eb;
}

.home-modern__timeline {
    display: grid;
    grid-template-columns: repeat(9, auto);
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
}

.home-modern__timeline-item {
    display: grid;
    justify-items: center;
    gap: 10px;
    min-width: 120px;
}

.home-modern__timeline-number {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0a4f8a 0%, #083b68 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
}

.home-modern__timeline-title {
    color: #0f172a;
    font-size: 0.92rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.4;
}

.home-modern__timeline-arrow {
    color: #0a4f8a;
    font-size: 1.4rem;
    font-weight: 900;
}

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

.home-modern__benefits-card {
    padding: 22px;
}

.home-modern__benefits-grid--cards {
    gap: 28px;
}

.home-modern__benefits-card--modern {
    position: relative;
    padding: 28px 28px 26px;
    border-radius: 30px 12px 30px 12px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98)),
        linear-gradient(135deg, rgba(10, 79, 138, 0.06), rgba(10, 79, 138, 0));
    box-shadow:
        0 18px 38px rgba(15, 23, 42, 0.06),
        inset 0 0 0 1px rgba(220, 228, 236, 0.95);
    overflow: hidden;
}

.home-modern__benefits-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.home-modern__benefits-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-modern__benefits-badge--users {
    background: #eaf4ff;
    color: #0a4f8a;
}

.home-modern__benefits-badge--government {
    background: #edf7f1;
    color: #166534;
}

.home-modern__benefits-shape {
    flex: 0 0 auto;
    width: 62px;
    height: 62px;
    border-radius: 20px 10px 20px 10px;
}

.home-modern__benefits-shape--users {
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 45%),
        linear-gradient(135deg, #0a4f8a 0%, #2d7ed0 100%);
}

.home-modern__benefits-shape--government {
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 45%),
        linear-gradient(135deg, #0f766e 0%, #45b58a 100%);
}

.home-modern__benefits-card--modern h3 {
    margin: 0;
    color: #101828;
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.3;
}

.home-modern__benefits-intro {
    margin: 10px 0 0;
    max-width: 42ch;
    color: #667085;
    font-size: 0.94rem;
    line-height: 1.6;
}

.home-modern__benefits-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 11px;
}

.home-modern__benefits-list li {
    position: relative;
    padding: 0 0 0 18px;
    color: #344054;
    font-size: 0.94rem;
    line-height: 1.55;
}

.home-modern__benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.58rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #0a4f8a;
}

.home-modern__priority-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-modern__priority-card {
    display: grid;
    place-items: center;
    min-height: 72px;
    padding: 16px;
    font-weight: 800;
    text-align: center;
    border-top: 1px solid #d7e1ea;
    border-right: 1px solid #d7e1ea;
}

.home-modern__priority-grid--flat {
    gap: 0;
    border-left: 1px solid #d7e1ea;
    border-bottom: 1px solid #d7e1ea;
}

.home-modern__section-bar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.home-modern__section-bar-title {
    margin-top: 8px;
}

.home-modern__opportunity-table-wrap {
    overflow-x: auto;
}

.home-modern__opportunity-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    border-bottom: 1px solid #d7e1ea;
    background: #fff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.025);
}

.home-modern__opportunity-head {
    border-bottom: 1px solid #d7e1ea;
    background: #fbfbfc;
}

.home-modern__opportunity-head th {
    padding: 13px 18px;
    color: #1f2937;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-align: left;
}

.home-modern__opportunity-action-head {
    text-align: right;
}

.home-modern__opportunity-row {
    border-bottom: 1px solid #e5e7eb;
}

.home-modern__opportunity-row th,
.home-modern__opportunity-row td {
    padding: 13px 18px;
    vertical-align: top;
}

.home-modern__opportunity-title-cell {
    width: 56%;
    text-align: left;
}

.home-modern__opportunity-title-link {
    color: #0a4f8a;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.45;
    text-decoration: none;
}

.home-modern__opportunity-row td {
    color: #344054;
    font-size: 0.84rem;
    line-height: 1.45;
    white-space: nowrap;
}

.home-modern__opportunity-action-cell {
    text-align: right;
}

.home-modern__opportunity-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #0a4f8a;
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
    text-decoration: none;
}

.home-modern__metrics-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-modern__metric {
    padding: 10px 8px;
    text-align: center;
}

.home-modern__metric-value {
    color: #0f172a;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1;
}

.home-modern__metric-label {
    margin-top: 8px;
    color: #35506b;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-modern__cta {
    padding: 30px 32px;
    background: #f3f3f3;
}

.home-modern__cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.home-modern__cta-copy {
    max-width: 640px;
}

.home-modern__cta h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.08;
}

.home-modern__cta p {
    margin-top: 12px;
    color: #475467;
    font-size: 1rem;
    line-height: 1.65;
}

@media (max-width: 1200px) {
    .home-modern__join-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .home-modern__hero-inner,
    .home-modern__benefits-grid,
    .home-modern__priority-grid,
    .home-modern__issues-grid,
    .home-modern__metrics-row {
        grid-template-columns: 1fr;
    }

    .home-modern__hero-inner {
        gap: 20px;
    }

    .home-modern__timeline {
        grid-template-columns: 1fr;
        justify-content: stretch;
    }

    .home-modern__timeline-item {
        justify-items: start;
        min-width: 0;
        grid-template-columns: 52px minmax(0, 1fr);
        align-items: center;
    }

    .home-modern__timeline-arrow {
        justify-self: center;
        transform: rotate(90deg);
    }

    .home-modern__join-grid--showcase {
        grid-template-columns: 1fr 1fr;
        gap: 32px 28px;
    }

    .home-modern__membership-panel {
        padding: 0;
    }

    .home-modern__issues-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-modern__summary-detail {
        padding: 0 12px 12px;
    }

    .home-modern__cta-inner {
        display: grid;
    }

    .home-modern__section-bar {
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .home-modern {
        gap: 18px;
        padding-top: 16px;
    }

    .home-modern__hero,
    .home-modern__section,
    .home-modern__cta {
        padding-left: 22px;
        padding-right: 22px;
    }

    .home-modern__hero-title {
        max-width: 100%;
        font-size: clamp(1.9rem, 10vw, 2.8rem);
    }

    .home-modern__priority-grid,
    .home-modern__metrics-row {
        grid-template-columns: 1fr;
    }

    .home-modern__join-grid--showcase {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-modern__issues-grid {
        grid-template-columns: 1fr;
    }

    .home-modern__membership-panel {
        padding: 0;
        border-radius: 0;
    }

    .home-modern__membership-kicker {
        margin-bottom: 28px;
    }

    .home-modern__diagram {
        padding: 16px;
    }

    .home-modern__diagram-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-modern__diagram-box--priority {
        min-width: 0;
        width: 100%;
    }

    .home-modern__diagram-grid::before,
    .home-modern__diagram-engine-wrap::before,
    .home-modern__diagram-engine-wrap::after {
        display: none;
    }

    .home-modern__heading--split {
        align-items: flex-start;
    }
}

.priority-page__toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
    gap: 1.5rem;
    align-items: end;
}

.priority-page__year-form,
.priority-page__panel,
.priority-page__metric-card,
.priority-page__empty-card {
    border: 1px solid rgba(11, 59, 117, 0.12);
    border-radius: 0.95rem;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 64, 128, 0.05);
}

.priority-page__year-form {
    padding: 1.2rem;
}

.priority-page__year-label {
    display: block;
    margin-bottom: 0.68rem;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-strong);
}

.priority-page__year-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
}

.priority-page__metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.2rem;
}

.priority-page__metric-card {
    position: relative;
    overflow: hidden;
    padding: 1.1rem 1.15rem;
}

.priority-page__metric-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0a4f8a, #1d70b8);
}

.priority-page__metric-card--gap::before {
    background: linear-gradient(90deg, #9a6d08, #d4a017);
}

.priority-page__metric-kicker {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0f4c81;
}

.priority-page__metric-value {
    margin-top: 0.5rem;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1;
    color: var(--ink);
}

.priority-page__metric-card p {
    margin-top: 0.58rem;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.92rem;
}

.priority-page__panel {
    padding: 1.2rem;
}

.priority-page__graph {
    display: grid;
    gap: 0.9rem;
    margin-top: 1rem;
}

.priority-page__graph-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.25rem;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.priority-page__graph-legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
}

.priority-page__graph-dot {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 999px;
    display: inline-block;
}

.priority-page__graph-dot--need {
    background: #1d70b8;
}

.priority-page__graph-dot--capacity {
    background: #14b8a6;
}

.priority-page__graph-dot--gap {
    background: #d4a017;
}

.priority-page__graph-item {
    padding: 1rem 1rem 0.95rem;
    border: 1px solid rgba(7, 91, 184, 0.1);
    border-radius: 0.9rem;
    background: #fff;
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 1rem 1.2rem;
    align-items: start;
}

.priority-page__graph-priority {
    display: grid;
    gap: 0.45rem;
}

.priority-page__graph-priority h3 {
    font-size: 1rem;
}

.priority-page__graph-priority p {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.88rem;
}

.priority-page__graph-gap {
    flex-shrink: 0;
    padding: 0.35rem 0.55rem;
    border-radius: 0.6rem;
    background: #f8f0d6;
    color: #835b07;
    font-size: 0.78rem;
    font-weight: 800;
}

.priority-page__graph-rows {
    display: grid;
    gap: 0.65rem;
}

.priority-page__graph-row {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) 110px;
    gap: 0.7rem;
    align-items: center;
}

.priority-page__graph-label,
.priority-page__graph-value {
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--ink-soft);
}

.priority-page__graph-track {
    position: relative;
    height: 0.68rem;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.16);
    overflow: hidden;
}

.priority-page__graph-bar {
    display: block;
    height: 100%;
    border-radius: 999px;
}

.priority-page__graph-bar--need {
    background: linear-gradient(90deg, #0a4f8a, #1d70b8);
}

.priority-page__graph-bar--capacity {
    background: linear-gradient(90deg, #0f766e, #14b8a6);
}

.priority-page__graph-bar--gap {
    background: linear-gradient(90deg, #b07a08, #d4a017);
}

.priority-page__empty-card {
    padding: 1rem 1.1rem;
    color: var(--muted);
}

.priority-page__table-wrap {
    margin-top: 1.25rem;
    overflow-x: auto;
    border-radius: 1.15rem;
    border: 1px solid rgba(11, 59, 117, 0.12);
}

.priority-page__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1024px;
    background: rgba(255, 255, 255, 0.96);
}

.priority-page__table thead th {
    padding: 1rem 1.1rem;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-strong);
    background: linear-gradient(180deg, rgba(237, 244, 251, 0.96), rgba(248, 250, 252, 0.96));
}

.priority-page__table tbody td {
    padding: 1rem 1.1rem;
    vertical-align: top;
    border-top: 1px solid rgba(11, 59, 117, 0.08);
    color: var(--ink-soft);
    line-height: 1.6;
}

.priority-page__table-title {
    font-weight: 800;
    color: var(--ink);
}

.priority-page__table-subtitle {
    margin-top: 0.32rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.priority-page__table-gap {
    color: #8c6407;
    font-weight: 800;
}

.priority-page__empty {
    text-align: center;
    color: var(--muted);
}

@media (max-width: 1199.98px) {
    .priority-page__toolbar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .priority-page__metric-grid {
        grid-template-columns: 1fr;
    }

    .priority-page__graph-item {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .priority-page__year-row,
    .priority-page__graph-row {
        grid-template-columns: 1fr;
    }

    .priority-page__graph-value {
        justify-self: start;
    }
}
