.site-header {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    padding-top: 16px;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    pointer-events: none;
    isolation: isolate;
}

.site-header .navbar {
    min-height: 72px;
    padding: 0;
    pointer-events: auto;
}

.site-header .navbar > .container {
    position: relative;
    overflow: visible;
    min-height: 68px;
    padding: .5rem 1.15rem .5rem 1.35rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    background: rgba(7, 29, 59, .82);
    box-shadow:
        0 10px 40px rgba(3, 17, 39, .28),
        inset 0 1px 0 rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    transition:
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        min-height .28s ease,
        border-radius .28s ease;
}

.site-header .navbar > .container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    width: 42%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
    pointer-events: none;
}

.site-header .navbar > .container::after {
    content: none;
}

.site-header .navbar > .container > * {
    position: relative;
    z-index: 1;
}

.site-header .brand-main {
    color: #fff;
    letter-spacing: .14em;
}

.site-header .brand-sub {
    color: #8eb6ff;
}

.site-header .navbar-nav .nav-link {
    position: relative;
    color: rgba(226, 236, 250, .82);
    font-size: .9rem;
    font-weight: 650;
    letter-spacing: .01em;
    padding: .35rem 0 !important;
}

.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link.active {
    color: #fff;
}

.site-header .navbar-nav .nav-link.active::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    margin: .28rem auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, #4c91ff, #7eb0ff);
}

.site-header .btn-navy {
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    background: #fff;
    color: #071d3b;
    font-size: .86rem;
    padding: .62rem 1.05rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.site-header .btn-navy:hover {
    border-color: #2d7cff;
    background: #2d7cff;
    color: #fff;
}

/* Services dropdown */
.site-header .dropdown-toggle::after {
    margin-left: .4rem;
    vertical-align: .15em;
}

.site-header .site-dropdown {
    z-index: 1080;
    margin-top: .55rem;
    min-width: 240px;
    padding: .45rem;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 14px;
    background: rgba(7, 29, 59, .96);
    box-shadow: 0 18px 40px rgba(3, 17, 39, .35);
}

.site-header .site-dropdown .dropdown-item {
    border-radius: 10px;
    color: #d7e3f2;
    font-size: .88rem;
    font-weight: 650;
    padding: .65rem .8rem;
}

.site-header .site-dropdown .dropdown-item:hover,
.site-header .site-dropdown .dropdown-item:focus,
.site-header .site-dropdown .dropdown-item.active {
    background: rgba(45, 124, 255, .22);
    color: #fff;
}

.site-header .site-dropdown .dropdown-divider {
    border-color: rgba(255, 255, 255, .12);
    margin: .35rem .25rem;
}

.site-header.is-scrolled .site-dropdown {
    border-color: rgba(7, 29, 59, .1);
    background: #fff;
    box-shadow: 0 16px 36px rgba(7, 29, 59, .12);
}

.site-header.is-scrolled .site-dropdown .dropdown-item {
    color: #334155;
}

.site-header.is-scrolled .site-dropdown .dropdown-item:hover,
.site-header.is-scrolled .site-dropdown .dropdown-item:focus,
.site-header.is-scrolled .site-dropdown .dropdown-item.active {
    background: #eef5ff;
    color: #071d3b;
}

.site-header.is-scrolled .site-dropdown .dropdown-divider {
    border-color: #e2eaf4;
}

/* Scrolled: solid professional bar — does not tint page sections */
.site-header.is-scrolled {
    padding-top: 10px;
}

.site-header.is-scrolled .navbar {
    min-height: 62px;
}

.site-header.is-scrolled .navbar > .container {
    min-height: 58px;
    border-radius: 14px;
    border-color: rgba(7, 29, 59, .08);
    background: rgba(255, 255, 255, .96);
    box-shadow:
        0 12px 36px rgba(7, 29, 59, .1),
        0 1px 0 rgba(255, 255, 255, .9);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-header.is-scrolled .navbar > .container::before {
    background: linear-gradient(90deg, transparent, rgba(23, 103, 237, .35), transparent);
}

.site-header.is-scrolled .brand-main {
    color: #071d3b;
}

.site-header.is-scrolled .brand-sub {
    color: #0a55cc;
}

.site-header.is-scrolled .navbar-nav .nav-link {
    color: #4a5d75;
}

.site-header.is-scrolled .navbar-nav .nav-link:hover,
.site-header.is-scrolled .navbar-nav .nav-link.active {
    color: #071d3b;
}

.site-header.is-scrolled .navbar-nav .nav-link.active::after {
    background: #1767ed;
}

.site-header.is-scrolled .btn-navy {
    border-color: #071d3b;
    background: #071d3b;
    color: #fff;
}

.site-header.is-scrolled .btn-navy:hover {
    border-color: #1767ed;
    background: #1767ed;
}

.site-header .brand-main,
.site-header .brand-sub,
.site-header .navbar-nav .nav-link,
.site-header .btn-navy {
    transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.site-header .navbar-toggler {
    border-color: rgba(255, 255, 255, .35);
}

.site-header .navbar-toggler-icon {
    filter: invert(1);
}

.site-header.is-scrolled .navbar-toggler {
    border-color: #c5d2e3;
}

.site-header.is-scrolled .navbar-toggler-icon {
    filter: none;
}

.home-hero {
    isolation: isolate;
    background:
        radial-gradient(circle at 74% 28%, #244f984f 0, transparent 25rem),
        radial-gradient(circle at 92% 84%, #7720713b 0, transparent 28rem),
        linear-gradient(135deg, #031127 0%, #071d3b 52%, #0b2145 100%);
}

.home-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -15%;
    right: 5%;
    width: 540px;
    height: 740px;
    border: 1px solid #67a1ff2b;
    border-radius: 48% 52% 38% 62%;
    transform: rotate(31deg);
    box-shadow:
        0 0 0 65px #3c80ed0b,
        0 0 0 130px #7d42dc08;
}

.home-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 28%;
    bottom: 10%;
    width: 190px;
    height: 190px;
    border: 1px solid #b683ff35;
    border-radius: 50%;
    box-shadow: 0 0 90px #566fff20;
}

.home-hero .hero-grid {
    opacity: .09;
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, #000 8%, transparent 86%);
}

.hero-glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(4px);
    pointer-events: none;
}

.hero-glow-one {
    top: 13%;
    left: -160px;
    width: 430px;
    height: 430px;
    background: #075fc91f;
}

.hero-glow-two {
    right: 8%;
    bottom: -170px;
    width: 400px;
    height: 400px;
    background: #8c1d7f1d;
}

.home-hero .hero-content {
    padding-top: 11.5rem;
    padding-bottom: 4rem;
}

body:not(.page-home) .page-hero .page-hero-inner,
body:not(.page-home) .contact-layout {
    padding-top: 12rem;
}

.home-hero .hero-kicker {
    margin-bottom: 1.8rem;
    color: #abc4e5;
}

.home-hero h1 {
    max-width: 790px;
    margin-bottom: 1.75rem;
    font-size: clamp(3.8rem, 6.4vw, 6.7rem);
    line-height: .94;
}

.home-hero h1 span {
    display: block;
    width: fit-content;
    padding-bottom: .08em;
    background: linear-gradient(90deg, #6ba7ff, #ad7cff 58%, #ed8fcf);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.home-hero .hero-lede {
    max-width: 650px;
    color: #c5d3e5;
    font-size: 1.18rem;
}

.home-hero .hero-actions .btn {
    border-radius: 999px;
    padding: .9rem 1.25rem;
}

.hero-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 2.2rem;
    color: #9eb2cc;
    font-size: .82rem;
    font-weight: 650;
}

.hero-signals span {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.hero-signals i,
.console-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #47d69a;
    box-shadow: 0 0 0 4px #47d69a1c;
}

.capability-console {
    position: relative;
    padding: 1.2rem;
    border: 1px solid #ffffff25;
    border-radius: 26px;
    background: linear-gradient(150deg, #ffffff16, #ffffff08);
    box-shadow: 28px 34px 80px #00081566;
    backdrop-filter: blur(16px);
}

.capability-console::before {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: -1;
    border-radius: 18px;
    background: #06172fd9;
}

.console-topline {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .8rem .8rem 1.2rem;
    color: #8ea7c6;
    font-size: .67rem;
    font-weight: 850;
    letter-spacing: .12em;
}

.console-status {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #8bdab9;
}

.console-heading {
    display: flex;
    flex-direction: column;
    padding: 1.2rem .8rem 1.5rem;
    border-top: 1px solid #ffffff1c;
}

.console-heading small,
.console-grid small {
    color: #7795bc;
    font-size: .64rem;
    font-weight: 850;
    letter-spacing: .11em;
}

.console-heading strong {
    max-width: 350px;
    margin-top: .55rem;
    color: #fff;
    font-size: 1.55rem;
    line-height: 1.2;
}

.console-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
}

.console-grid a {
    display: flex;
    min-height: 230px;
    flex-direction: column;
    padding: 1.15rem;
    border: 1px solid #ffffff1c;
    border-radius: 15px;
    background: #ffffff08;
    color: #fff;
    text-decoration: none;
    transition: .2s ease;
}

.console-grid a:hover {
    border-color: #72a7ff80;
    background: #397ce51a;
    transform: translateY(-3px);
}

.console-icon {
    display: grid;
    width: 44px;
    height: 44px;
    margin-bottom: 1.3rem;
    place-items: center;
    border: 1px solid #6a9ce264;
    border-radius: 12px;
    background: #2a6ed829;
    color: #8fbbff;
    font-weight: 850;
}

.console-grid strong {
    margin-top: .55rem;
    font-size: 1rem;
    line-height: 1.35;
}

.console-grid em {
    margin-top: auto;
    color: #8fa5c0;
    font-size: .72rem;
    font-style: normal;
}

.console-footer {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 1.1rem .7rem .25rem;
    color: #718aa9;
    font-size: .62rem;
    font-weight: 750;
}

.console-footer i {
    height: 1px;
    flex: 1;
    background: #ffffff20;
}

.home-hero .trust-bar {
    border: 1px solid #ffffff1f;
    border-bottom: 0;
    border-radius: 22px 22px 0 0;
    background: #ffffff0b;
    backdrop-filter: blur(12px);
}

.home-hero .trust-bar .col-lg-4 {
    justify-content: flex-start;
    gap: 1rem;
    min-height: 104px;
    padding: 1.1rem 1.5rem;
}

.proof-index {
    color: #629eff;
    font-size: .7rem;
    font-weight: 850;
}

.home-hero .trust-bar .col-lg-4 > div {
    display: flex;
    flex-direction: column;
}

.home-hero .trust-bar strong {
    color: #fff;
    font-size: .94rem;
}

.home-hero .trust-bar small {
    color: #8fa5c0;
    font-size: .76rem;
}

/* —— Verified team roster (home) —— */
.team-roster {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 55% at 100% 0%, #c9dcff55 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 0% 100%, #dce8f8 0%, transparent 50%),
        linear-gradient(180deg, #f7fafd 0%, #eef3f9 100%);
}

.team-roster-glow {
    position: absolute;
    top: 12%;
    left: -8%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: #1767ed12;
    filter: blur(40px);
    pointer-events: none;
}

.team-roster .section-heading h2 {
    max-width: 16ch;
}

.team-verify-rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 0;
    margin-bottom: 2rem;
    border: 1px solid #b8cce4;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 50px #071d3b0d;
    overflow: hidden;
}

.team-verify-rail > div {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    padding: 1.25rem 1.5rem;
    border-right: 1px solid #d5e1ef;
}

.team-verify-rail strong {
    color: var(--navy);
    font-size: .92rem;
    font-weight: 750;
    letter-spacing: -.01em;
}

.team-verify-rail span {
    color: var(--muted);
    font-size: .8rem;
    line-height: 1.45;
}

.team-verify-seal {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: .65rem;
    min-width: 168px;
    padding-inline: 1.35rem !important;
    border-right: 0 !important;
    background: linear-gradient(145deg, #071d3b 0%, #0a2c5c 55%, #12407a 100%);
    color: #fff !important;
}

.team-verify-seal i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #47d69a;
    box-shadow: 0 0 0 5px #47d69a28;
    flex-shrink: 0;
}

.team-verify-seal span {
    color: #d7e6f8 !important;
    font-size: .72rem !important;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.team-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
    align-items: start;
}

.team-member {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.team-member:nth-child(even) {
    margin-top: 2.4rem;
}

.team-portrait {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 22px 22px 8px 8px;
    background: var(--navy);
    aspect-ratio: 4 / 5;
    box-shadow:
        0 0 0 1px #071d3b14,
        18px 28px 55px #071d3b18;
}

.team-portrait img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .55s cubic-bezier(.2, .7, .2, 1), filter .55s ease;
    filter: saturate(.92) contrast(1.04);
}

.team-member:hover .team-portrait img {
    transform: scale(1.045);
    filter: saturate(1.05) contrast(1.06);
}

.team-portrait::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(180deg, transparent 0%, #031127cc 72%, #031127f0 100%);
    pointer-events: none;
}

.team-portrait figcaption {
    position: absolute;
    z-index: 1;
    right: .9rem;
    bottom: .9rem;
    left: .9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}

.team-verified {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .38rem .7rem;
    border: 1px solid #ffffff2e;
    border-radius: 999px;
    background: #ffffff14;
    color: #b8f0d4;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.team-verified i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #47d69a;
    box-shadow: 0 0 0 3px #47d69a33;
}

.team-years {
    color: #9ec0ef;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
}

.team-meta {
    padding: 1.15rem .35rem .25rem;
}

.team-meta h3 {
    margin: 0 0 .2rem;
    color: var(--navy);
    font-size: 1.18rem;
    font-weight: 750;
    letter-spacing: -.02em;
}

.team-role {
    margin: 0 0 .55rem;
    color: #0a55cc;
    font-size: .82rem;
    font-weight: 750;
}

.team-focus {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.5;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.team-skills li {
    padding: .28rem .65rem;
    border: 1px solid #b9cde4;
    border-radius: 999px;
    background: #fff;
    color: #334155;
    font-size: .68rem;
    font-weight: 750;
    letter-spacing: .04em;
}

.team-roster-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 2rem;
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--blue);
    border-radius: 0 16px 16px 0;
    background: linear-gradient(90deg, #ffffffd9, #ffffff88);
}

.team-roster-foot p {
    max-width: 42ch;
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
}

.team-roster-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.team-roster-foot .btn,
.team-roster-actions .btn {
    border-radius: 999px;
    white-space: nowrap;
}

.btn-outline-team {
    border: 1px solid #7a96b8;
    background: #fff;
    color: #071d3b;
    padding: .85rem 1.2rem;
    font-weight: 750;
}

.btn-outline-team:hover {
    border-color: var(--blue);
    background: #f2f7ff;
    color: var(--blue);
}

.closing-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .7rem;
}

.closing-cta-actions .btn {
    border-radius: 999px;
    text-align: center;
}

.btn-outline-cta {
    border: 1px solid #ffffff55;
    background: transparent;
    color: #fff;
    padding: .85rem 1.2rem;
    font-weight: 750;
}

.btn-outline-cta:hover {
    border-color: #fff;
    background: #ffffff18;
    color: #fff;
}

@media (max-width: 991.98px) {
    .team-verify-rail {
        grid-template-columns: 1fr 1fr;
    }

    .team-verify-rail > div:nth-child(2) {
        border-right: 0;
    }

    .team-verify-rail > div:nth-child(3),
    .team-verify-seal {
        border-top: 1px solid #d5e1ef;
    }

    .team-verify-seal {
        grid-column: 1 / -1;
        justify-content: center;
        min-width: 0;
        border-top-color: #ffffff18 !important;
    }

    .team-strip {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1.1rem;
    }

    .team-member:nth-child(even) {
        margin-top: 0;
    }

    .team-member:nth-child(2),
    .team-member:nth-child(4) {
        margin-top: 1.75rem;
    }

    .team-roster-foot {
        flex-direction: column;
        align-items: flex-start;
    }

    .team-roster-actions {
        width: 100%;
    }

    .team-roster-actions .btn {
        flex: 1 1 auto;
        text-align: center;
    }

    .site-header .navbar {
        min-height: 72px;
    }

    .site-header .navbar-toggler {
        border-color: #ffffff38;
    }

    .site-header .navbar-toggler-icon {
        filter: invert(1);
    }

    .site-header.is-scrolled .navbar-toggler-icon {
        filter: none;
    }

    .site-header .navbar-nav .nav-link.active::after {
        margin-left: 0;
    }

    .site-header .navbar-collapse {
        border-top: 1px solid #ffffff17;
        margin-top: .8rem;
        padding-top: .5rem;
    }

    .site-header.is-scrolled .navbar-collapse {
        border-top-color: #e2eaf4;
    }

    .site-header .site-dropdown {
        margin-top: .35rem;
        border: 0;
        border-radius: 10px;
        background: rgba(255, 255, 255, .08);
        box-shadow: none;
    }

    .site-header.is-scrolled .site-dropdown {
        background: #f4f8fd;
    }

    .home-hero .hero-content {
        padding-top: 10rem;
    }

    body:not(.page-home) .page-hero .page-hero-inner,
    body:not(.page-home) .contact-layout {
        padding-top: 10rem;
    }

    .capability-console {
        max-width: 650px;
    }

    .home-hero .trust-bar {
        padding: .5rem 1.2rem;
    }

    .home-hero .trust-bar .col-lg-4 {
        min-height: 76px;
        padding: .8rem 0;
    }

    .home-hero .trust-bar .col-lg-4 + .col-lg-4 {
        border-top: 1px solid #ffffff1f;
    }
}

@media (max-width: 575.98px) {
    .team-verify-rail {
        grid-template-columns: 1fr;
    }

    .team-verify-rail > div {
        border-right: 0;
        border-bottom: 1px solid #d5e1ef;
    }

    .team-verify-rail > div:nth-child(3) {
        border-top: 0;
    }

    .team-strip {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-inline: auto;
    }

    .team-member:nth-child(2),
    .team-member:nth-child(4) {
        margin-top: 0;
    }

    .team-portrait {
        border-radius: 18px 18px 6px 6px;
    }

    .site-header {
        padding-top: 12px;
    }

    .site-header .navbar > .container {
        margin-inline: .75rem;
        border-radius: 14px;
    }

    .home-hero .hero-content {
        padding-top: 8.5rem;
        padding-bottom: 4rem;
    }

    body:not(.page-home) .page-hero .page-hero-inner,
    body:not(.page-home) .contact-layout {
        padding-top: 8.5rem;
    }

    .home-hero h1 {
        font-size: clamp(3rem, 15vw, 4.2rem);
    }

    .hero-signals {
        align-items: flex-start;
        flex-direction: column;
        gap: .65rem;
    }

    .capability-console {
        padding: .8rem;
        border-radius: 20px;
    }

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

    .console-grid a {
        min-height: 190px;
    }

    .console-footer {
        display: none;
    }
}
