:root {
    --mbh-navy: #10233f;
    --mbh-navy-deep: #09172b;
    --mbh-blue: #2f6fed;
    --mbh-blue-dark: #2258c5;
    --mbh-ink: #172033;
    --mbh-muted: #667085;
    --mbh-line: #e4e9f1;
    --mbh-surface: #f6f8fb;
    --mbh-white: #ffffff;
    --mbh-success: #157347;
    --mbh-danger: #b42318;
    --mbh-radius: 14px;
    --mbh-shadow: 0 18px 50px rgba(16, 35, 63, 0.08);
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
    margin: 0;
    min-height: 100vh;
    color: var(--mbh-ink);
    background: var(--mbh-surface);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

a { color: inherit; }

.site-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--mbh-line);
    backdrop-filter: blur(12px);
}

.site-header__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--mbh-navy);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.site-brand__mark {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--mbh-navy);
    color: #fff;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.04em;
}

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

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    font-weight: 650;
}

.site-nav a {
    text-decoration: none;
    color: #344054;
}

.site-nav a:hover { color: var(--mbh-blue); }

.site-nav__button {
    padding: 10px 16px;
    border-radius: 9px;
    background: var(--mbh-navy);
    color: #fff !important;
}

.site-main { min-height: calc(100vh - 240px); }

.button {
    appearance: none;
    border: 0;
    border-radius: 10px;
    padding: 12px 18px;
    font: inherit;
    font-weight: 750;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button--primary {
    background: var(--mbh-blue);
    color: #fff;
}

.button--primary:hover { background: var(--mbh-blue-dark); }

.button--secondary {
    background: #fff;
    color: var(--mbh-navy);
    border: 1px solid #cfd8e6;
}

.button--secondary:hover {
    border-color: #9fb1ca;
    background: #f9fbfd;
}

.button--light {
    background: #fff;
    color: var(--mbh-navy);
}

.button--light:hover { background: #f0f4fa; }

.section-eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--mbh-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

/* Homepage */

.home-hero {
    background:
        radial-gradient(circle at 80% 20%, rgba(47,111,237,.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
    border-bottom: 1px solid var(--mbh-line);
}

.home-hero__inner {
    min-height: 610px;
    padding: 78px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .82fr);
    gap: 72px;
    align-items: center;
}

.home-hero__content h1 {
    max-width: 760px;
    margin: 0;
    color: var(--mbh-navy-deep);
    font-size: clamp(44px, 5.4vw, 72px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.home-hero__lead {
    max-width: 700px;
    margin: 24px 0 0;
    color: #475467;
    font-size: 19px;
    line-height: 1.7;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.home-hero__note {
    margin-top: 20px;
    color: #7a8799;
    font-size: 13px;
}

.home-hero__panel {
    padding: 26px;
    background: #fff;
    border: 1px solid #dfe6ef;
    border-radius: 20px;
    box-shadow: var(--mbh-shadow);
}

.home-hero__panel-head {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--mbh-line);
}

.home-hero__panel-head strong {
    display: block;
    color: var(--mbh-navy);
    font-size: 17px;
}

.home-hero__panel-head span:last-child {
    display: block;
    margin-top: 2px;
    color: var(--mbh-muted);
    font-size: 13px;
}

.home-hero__feature {
    padding: 20px 0;
    border-bottom: 1px solid var(--mbh-line);
}

.home-hero__feature:last-child {
    padding-bottom: 2px;
    border-bottom: 0;
}

.home-hero__feature strong {
    display: block;
    margin-bottom: 5px;
    color: var(--mbh-ink);
    font-size: 15px;
}

.home-hero__feature span {
    display: block;
    color: var(--mbh-muted);
    font-size: 14px;
    line-height: 1.6;
}

.home-section {
    padding: 82px 0;
    background: #fff;
}

.home-section__heading {
    max-width: 720px;
    margin-bottom: 36px;
}

.home-section__heading h2 {
    margin: 0;
    color: var(--mbh-navy-deep);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -.03em;
}

.home-section__heading p {
    margin: 16px 0 0;
    color: var(--mbh-muted);
    font-size: 17px;
}

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

.home-card {
    padding: 28px;
    border: 1px solid var(--mbh-line);
    border-radius: 16px;
    background: #fff;
}

.home-card__number {
    display: block;
    margin-bottom: 22px;
    color: var(--mbh-blue);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
}

.home-card h3 {
    margin: 0;
    color: var(--mbh-navy);
    font-size: 20px;
}

.home-card p {
    margin: 10px 0 0;
    color: var(--mbh-muted);
    font-size: 14px;
    line-height: 1.7;
}

.home-cta {
    padding: 0 0 76px;
    background: #fff;
}

.home-cta__inner {
    padding: 40px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-radius: 20px;
    background: var(--mbh-navy);
    color: #fff;
}

.home-cta__inner .section-eyebrow { color: #8db4ff; }

.home-cta__inner h2 {
    margin: 0;
    font-size: 30px;
    letter-spacing: -.02em;
}

.home-cta__inner p {
    margin: 8px 0 0;
    color: #bdcbe0;
}

.site-footer {
    margin-top: 0;
    background: var(--mbh-navy-deep);
    color: #dbe5f2;
}

.site-footer__inner {
    padding: 42px 0 24px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.site-footer__brand strong {
    color: #fff;
    font-size: 18px;
}

.site-footer__brand p {
    margin: 7px 0 0;
    color: #9fb0c6;
}

.site-footer__links {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.site-footer__links a {
    color: #dbe5f2;
    text-decoration: none;
    font-size: 14px;
}

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

.site-footer__legal {
    padding: 18px 0 26px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: #8fa2bb;
    font-size: 13px;
}

@media (max-width: 900px) {
    .home-hero__inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0;
    }

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

    .home-hero__panel { max-width: 680px; }
}

@media (max-width: 760px) {
    .site-shell { width: min(100% - 28px, 1180px); }

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

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

    .site-nav > a:first-child { display: none; }

    .site-nav { gap: 12px; }

    .home-hero__inner { padding: 48px 0; }

    .home-hero__content h1 { font-size: 42px; }

    .home-hero__lead { font-size: 17px; }

    .home-section { padding: 60px 0; }

    .home-cta__inner {
        padding: 30px;
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer__inner { flex-direction: column; }

    .site-footer__links { flex-wrap: wrap; }
}

@media (max-width: 520px) {
    .site-brand__mark {
        width: 38px;
        height: 38px;
    }

    .site-nav {
        gap: 8px;
        font-size: 13px;
    }

    .site-nav__button { padding: 9px 11px; }

    .home-hero__content h1 { font-size: 36px; }

    .home-hero__panel { padding: 20px; }

    .home-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .home-hero__actions .button { width: 100%; }

    .home-cta__inner h2 { font-size: 25px; }
}
