:root {
    --official-ink: #172033;
    --official-muted: #5d6b82;
    --official-line: #d7e0ea;
    --official-bg: #f6f8fb;
    --official-panel: #ffffff;
    --official-brand: #116466;
    --official-brand-dark: #0b3f40;
    --official-amber: #d97706;
    --official-blue: #2563eb;
    --official-red: #b42318;
}

* {
    letter-spacing: 0;
}

body.official-page {
    margin: 0;
    background: var(--official-bg);
    color: var(--official-ink);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.official-nav {
    height: 72px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 clamp(18px, 4vw, 56px);
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--official-line);
    position: sticky;
    top: 0;
    z-index: 20;
}

.official-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--official-ink);
    text-decoration: none;
    min-width: 246px;
}

.official-brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--official-brand);
    color: #fff;
    font-weight: 800;
}

.official-brand strong,
.official-brand small {
    display: block;
}

.official-brand small {
    color: var(--official-muted);
    font-size: 12px;
}

.official-links {
    display: flex;
    gap: 18px;
    flex: 1;
    justify-content: center;
}

.official-links a {
    color: #344054;
    text-decoration: none;
    font-weight: 650;
    font-size: 14px;
}

.official-links a:hover {
    color: var(--official-brand);
}

.btn-primary {
    --bs-btn-bg: var(--official-brand);
    --bs-btn-border-color: var(--official-brand);
    --bs-btn-hover-bg: var(--official-brand-dark);
    --bs-btn-hover-border-color: var(--official-brand-dark);
}

.official-hero {
    min-height: clamp(520px, 78svh, 720px);
    position: relative;
    overflow: hidden;
    background: #111827;
    color: #fff;
}

#officialHeroScene,
.official-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.official-hero-shade {
    background: rgba(8, 19, 31, .62);
}

.official-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1080px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(56px, 10svh, 104px) 0 42px;
}

.official-eyebrow,
.official-kicker {
    color: #d99d2b;
    font-size: 13px;
    font-weight: 800;
}

.official-hero h1 {
    font-size: clamp(44px, 8vw, 94px);
    line-height: 1;
    margin: 12px 0 18px;
    max-width: 780px;
}

.official-hero-copy {
    max-width: 720px;
    color: #edf2f7;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.75;
}

.official-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.official-hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 38px;
    max-width: 980px;
}

.official-hero-metrics span {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 8px;
    padding: 10px 12px;
    color: #f8fafc;
}

.official-hero-metrics strong {
    color: #fbbf24;
}

.official-band,
.official-cta {
    padding: clamp(56px, 8vw, 96px) 0;
    background: #fff;
}

.official-band-muted {
    background: #f1f5f9;
}

.official-container {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
}

.official-section-head {
    max-width: 760px;
    margin-bottom: 30px;
}

.official-section-head h2,
.official-two-col h2,
.official-cta h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin: 8px 0 12px;
}

.official-section-head p,
.official-two-col p,
.official-cta p {
    color: var(--official-muted);
    font-size: 17px;
    line-height: 1.8;
}

.official-feature-grid,
.official-proof-grid,
.official-advantage-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.official-feature,
.official-proof-grid > div,
.official-advantage-list article {
    background: var(--official-panel);
    border: 1px solid var(--official-line);
    border-radius: 8px;
    padding: 22px;
}

.official-feature i,
.official-advantage-list i {
    color: var(--official-brand);
    font-size: 28px;
}

.official-feature h3,
.official-proof-grid h3,
.official-advantage-list h3 {
    font-size: 19px;
    margin: 14px 0 8px;
}

.official-feature p,
.official-proof-grid p,
.official-advantage-list p {
    color: var(--official-muted);
    margin: 0;
    line-height: 1.75;
}

.official-two-col {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    gap: clamp(24px, 6vw, 72px);
    align-items: center;
}

.official-check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
}

.official-check-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #334155;
}

.official-check-list i {
    color: var(--official-brand);
    margin-top: 2px;
}

.official-process {
    display: grid;
    gap: 12px;
}

.official-process div,
.official-limit-list div {
    background: #fff;
    border: 1px solid var(--official-line);
    border-radius: 8px;
    padding: 18px;
    display: grid;
    gap: 5px;
}

.official-process strong,
.official-limit-list strong {
    color: var(--official-ink);
    font-size: 17px;
}

.official-process span,
.official-limit-list span {
    color: var(--official-muted);
}

.official-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.official-advantage-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.official-limits {
    align-items: start;
}

.official-limit-list {
    display: grid;
    gap: 12px;
}

.official-limit-list div:last-child {
    border-color: #f2b84b;
    background: #fffaf0;
}

.official-cta {
    text-align: center;
    background: #0f172a;
    color: #fff;
}

.official-cta p {
    color: #dbe4ef;
    max-width: 720px;
    margin: 0 auto 24px;
}

.official-footer {
    background: #fff;
    border-top: 1px solid var(--official-line);
    padding: 22px 0;
    color: var(--official-muted);
}

.official-footer .official-container {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 991.98px) {
    .official-nav {
        height: auto;
        min-height: 68px;
        flex-wrap: wrap;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .official-brand {
        flex: 1;
        min-width: 220px;
    }

    .official-links {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .official-feature-grid,
    .official-proof-grid,
    .official-advantage-list,
    .official-two-col {
        grid-template-columns: 1fr;
    }

    .official-hero-inner {
        padding-top: 48px;
    }
}

@media (max-width: 575.98px) {
    .official-links {
        display: none;
    }

    .official-nav {
        gap: 12px;
    }

    .official-brand {
        min-width: 0;
    }

    .official-brand small {
        font-size: 11px;
    }

    .official-hero {
        min-height: 560px;
    }

    #officialHeroScene {
        opacity: .7;
    }

    .official-hero-actions .btn {
        width: 100%;
    }

    .official-hero-metrics span {
        width: 100%;
    }
}
