:root {
    --blue: #0062FE;
    --orange: #F36434;
    --navy: #07152E;
    --navy2: #0B172A;
    --ink: #161616;
    --muted: #596579;
    --light: #EFF7FE;
    --line: #DCE4EF;
    --white: #fff;
    --mint: #2DA771;
    --radius: 18px;
    --shadow: 0 24px 70px rgba(7, 21, 46, .12);
    --page-max: 1560px;
    --page-gutter: 32px;
    --shell: min(var(--page-max), calc(100% - var(--page-gutter)));
    --container: var(--page-max);
    font-family: "Poppins", Arial, sans-serif;
    color: var(--ink);
    background: #fff
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    margin: 0;
    overflow-x: hidden;
    min-width: 320px;
    background: #fff;
    color: var(--ink);
    line-height: 1.55
}

body.nav-open {
    overflow: hidden
}

a {
    color: inherit;
    text-decoration: none
}

button,
input,
select,
textarea {
    font: inherit
}

button {
    cursor: pointer
}

img,
svg {
    display: block;
    max-width: 100%
}

.shell,
.container {
    width: var(--shell);
    margin-inline: auto
}

.container.narrow {
    width: min(900px, calc(100% - var(--page-gutter)))
}

.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
}

.skip-link {
    position: fixed;
    z-index: 9999;
    left: 16px;
    top: -60px;
    background: #fff;
    color: var(--navy);
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: var(--shadow)
}

.skip-link:focus {
    top: 16px
}

.site-header {
    position: relative;
    z-index: 100;
    background: #fff
}

.utility-bar {
    background: var(--blue);
    color: #fff;
    font-size: 12px;
    font-weight: 600
}

.utility-bar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.utility-bar__left,
.utility-bar__right {
    display: flex;
    align-items: center;
    gap: 20px
}

.utility-bar__right a:hover {
    text-decoration: underline
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #36E198;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(54, 225, 152, .16)
}

.nav-wrap {
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(7, 21, 46, .08);
    position: sticky;
    top: 0;
    z-index: 200;
    backdrop-filter: blur(18px)
}

.nav-wrap__inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative
}

.brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto
}

.brand img {
    width: 190px;
    height: auto
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    flex-wrap: nowrap;
    min-width: 0
}

.nav-item {
    position: relative
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    padding: 10px 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #202B3C;
    border-radius: 9px;
    white-space: nowrap
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--blue);
    background: var(--light)
}

.nav-button i {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: .2s
}

.nav-button[aria-expanded="true"] i {
    transform: rotate(225deg) translate(-1px, -1px)
}

.nav-cta {
    margin-left: 10px;
    flex: 0 0 auto;
    white-space: nowrap
}

.nav-cta.button--sm {
    min-height: 42px;
    padding: 9px 16px;
    font-size: 13px
}

/* Language converter (after Careers) */
.nav-item--lang {
    position: relative;
    margin-left: 8px;
    margin-right: 4px;
    flex: 0 0 auto
}

.language-switcher {
    position: relative
}

.language-switcher>summary {
    list-style: none;
    cursor: pointer
}

.language-switcher>summary::-webkit-details-marker {
    display: none
}

.language-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 7px 11px 7px 10px;
    border: 1px solid #D5DEEA;
    border-radius: 999px;
    background: #F7FAFD;
    color: #1B2B44;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .02em;
    white-space: nowrap;
    transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease
}

.language-button:hover,
.language-switcher[open] .language-button {
    color: #0062FE;
    border-color: #B7CFFF;
    background: #EFF7FE;
    box-shadow: 0 0 0 3px rgba(0, 98, 254, .08)
}

.language-button__icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    color: currentColor
}

.language-button__code {
    min-width: 1.4em;
    line-height: 1
}

.language-button__chevron {
    width: 8px;
    height: 8px;
    margin-left: 1px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform .2s ease;
    opacity: .75
}

.language-switcher[open] .language-button__chevron {
    transform: rotate(225deg) translate(-1px, -1px)
}

.language-popover {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    z-index: 120;
    width: 220px;
    padding: 10px;
    border: 1px solid #DCE4EF;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(7, 21, 46, .14)
}

.language-popover__title {
    display: block;
    padding: 4px 10px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #7A8799
}

.language-popover button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 12px;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: #202B3C;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background .15s ease, color .15s ease
}

.language-popover button span {
    display: flex;
    align-items: center;
    gap: 10px
}

.language-popover button small {
    color: #7A8799;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em
}

.language-popover button:hover {
    color: #0062FE;
    background: #F3F7FC
}

.language-popover button.is-active {
    color: #0062FE;
    background: #EFF7FE
}

.language-popover button.is-active::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0062FE;
    box-shadow: 0 0 0 3px rgba(0, 98, 254, .15);
    flex: 0 0 auto
}

.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover {
    display: none !important
}

body {
    top: 0 !important
}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important
}

.skiptranslate,
.goog-te-gadget {
    height: 0 !important;
    overflow: hidden !important
}

.mega-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translate(-50%, 10px);
    width: min(760px, 90vw);
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(7, 21, 46, .18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 24px;
    transition: .2s
}

.nav-item--dropdown:nth-of-type(3) .mega-menu {
    width: min(830px, 90vw)
}

.mega-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0)
}

.mega-menu__intro {
    padding: 18px;
    background: var(--navy);
    color: #fff;
    border-radius: 13px
}

.mega-menu__intro .eyebrow {
    color: #F36434;
}

.mega-menu__intro .eyebrow::before {
    background: #F36434;
}

.mega-menu__intro p {
    font-size: 13px;
    color: #CBD4E2
}

.mega-menu__intro a {
    font-size: 13px;
    color: #fff;
    font-weight: 700
}

.mega-menu__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
}

.mega-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600
}

.mega-card:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px)
}

.mega-menu--units {
    grid-template-columns: 1fr !important;
    width: min(960px, 92vw) !important;
    padding: 28px
}

.mega-menu__columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

.mega-col {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.mega-col__title {
    font-size: 11px;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 12px
}

.mega-col a {
    padding: 7px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    transition: color .15s
}

.mega-col a:hover {
    color: var(--blue)
}

.mega-menu__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid var(--line)
}

.mega-menu__foot span {
    font-size: 13px;
    color: var(--muted)
}

.mega-menu__foot a {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    white-space: nowrap
}

.nav-toggle {
    display: none;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 10px;
    background: var(--navy);
    padding: 11px
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: transform .2s ease, opacity .2s ease
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.service-ribbon {
    background: var(--navy);
    color: #fff
}

.service-ribbon__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 28px;
    overflow: auto
}

.service-ribbon a {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    color: #C9D3E3
}

.service-ribbon a:hover {
    color: #fff
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: var(--orange)
}

.eyebrow:before {
    content: "";
    width: 28px;
    height: 3px;
    background: currentColor
}

.eyebrow--blue {
    color: var(--blue)
}

.eyebrow--light {
    color: #fff
}

.eyebrow--white {
    color: rgba(255, 255, 255, .76)
}

.eyebrow--white:before {
    background: var(--orange)
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 7px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 14px;
    transition: .2s
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(7, 21, 46, .12)
}

.button svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform .2s ease
}

.button:hover svg {
    transform: translateX(3px)
}

.button--sm {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 13px
}

.button--orange {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 12px 26px rgba(243, 100, 52, .25)
}

.button--orange:hover {
    background: #E0521F;
    box-shadow: 0 16px 34px rgba(243, 100, 52, .32)
}

.button--blue {
    background: var(--blue);
    color: #fff
}

.button--light {
    background: #fff;
    color: var(--navy)
}

.button--outline {
    border-color: var(--blue);
    color: var(--blue);
    background: #fff
}

.button--outline-light {
    border-color: rgba(255, 255, 255, .6);
    color: #fff;
    background: transparent
}

.button--ghost-light {
    color: #fff;
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .22);
    backdrop-filter: blur(6px)
}

.button--ghost-light:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .44)
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px
}

.lead {
    font-size: clamp(1.12rem, 1.55vw, 1.36rem);
    line-height: 1.65;
    color: var(--muted)
}

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(110deg, rgba(5, 16, 31, .98) 0%, rgba(7, 24, 49, .98) 48%, rgba(7, 27, 58, .95) 100%)
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to right, transparent, #000 28%, #000 100%)
}

.hero::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -130px;
    z-index: 1;
    height: 220px;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    background: #fff;
    pointer-events: none
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
    align-items: center;
    gap: 70px;
    padding: 96px 0 140px
}

.hero .home-stat-strip {
    position: relative;
    z-index: 2;
    margin-top: 56px;
    background: #fff;
    color: var(--ink);
    border-radius: 14px 14px 0 0;
    border-bottom: 3px solid var(--orange);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, .18);
    overflow: hidden
}

.eco-strip {
    position: relative;
    z-index: 2;
    background: #fff;
    border-bottom: 1px solid var(--line)
}

.eco-strip__inner {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    align-items: center;
    gap: 24px;
    padding: 30px 0
}

.eco-strip__title {
    margin: 0;
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    line-height: 1.45;
    color: #5e6b80
}

.eco-strip__step {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink, #0f2138);
    font-size: .9rem;
    font-weight: 650
}

.eco-strip__num {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e9f2ff;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700
}

.eco-strip__label {
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink, #0f2138)
}

@media (max-width: 900px) {
    .eco-strip__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 24px;
        padding: 24px 0
    }

    .eco-strip__title {
        grid-column: 1 / -1
    }
}

.hero .home-stat-strip div {
    padding: 26px 28px;
    border-right: 1px solid var(--line)
}

.hero .home-stat-strip div:last-child {
    border-right: 0
}

.hero .home-stat-strip strong {
    display: block;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1;
    color: var(--blue);
    margin-bottom: 6px
}

.hero .home-stat-strip span {
    font-size: 12px;
    color: var(--muted)
}

.hero-copy {
    max-width: 750px
}

.hero h1 {
    max-width: 760px
}

.hero h1 .accent {
    color: var(--orange)
}

.hero .lead {
    margin-top: 26px;
    max-width: 720px;
    color: rgba(255, 255, 255, .74)
}

.hero .button-row {
    margin-top: 34px
}

.hero-support {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, .68);
    font-size: .9rem;
    font-weight: 680;
    letter-spacing: .035em;
    text-transform: uppercase
}

.hero-support::before {
    content: "";
    width: 42px;
    height: 1px;
    background: var(--orange)
}

.hero-visual {
    position: relative;
    min-height: 560px;
    margin-bottom: 70px;
    display: grid;
    place-items: center
}

.orbit {
    position: relative;
    width: min(520px, 100%);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);
    background: radial-gradient(circle at center, rgba(11, 98, 255, .16), rgba(255, 255, 255, .02) 58%, transparent 59%)
}

.orbit::before,
.orbit::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    inset: 12%;
    border: 1px dashed rgba(255, 255, 255, .14)
}

.orbit::after {
    inset: 28%;
    border-style: solid;
    border-color: rgba(255, 91, 33, .24)
}

.orbit-core {
    position: absolute;
    inset: 35%;
    z-index: 3;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .05));
    border: 1px solid rgba(255, 255, 255, .25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
    backdrop-filter: blur(18px)
}

.orbit-core strong {
    display: block;
    font-size: 1.35rem;
    letter-spacing: -.03em
}

.orbit-core span {
    display: block;
    color: rgba(255, 255, 255, .62);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase
}

.orbit-node {
    position: absolute;
    z-index: 4;
    width: 156px;
    min-height: 84px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(9, 25, 51, .82);
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
    backdrop-filter: blur(12px);
    animation: float 5.5s ease-in-out infinite
}

.orbit-node:nth-child(even) {
    animation-delay: -2.3s
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.orbit-node .number {
    display: inline-flex;
    width: 27px;
    height: 27px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--white);
    background: var(--node, var(--blue));
    font-size: .76rem;
    font-weight: 820
}

.orbit-node strong {
    display: block;
    margin-top: 8px;
    font-size: .87rem;
    line-height: 1.25;
    letter-spacing: -.01em
}

.orbit-node small {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, .54);
    font-size: .68rem
}

.orbit-node--1 {
    top: 1%;
    left: 35%
}

.orbit-node--2 {
    top: 22%;
    right: -6%
}

.orbit-node--3 {
    bottom: 16%;
    right: 0
}

.orbit-node--4 {
    bottom: -1%;
    left: 33%
}

.orbit-node--5 {
    bottom: 18%;
    left: -7%
}

.orbit-node--6 {
    top: 20%;
    left: -6%
}

.orbit-chip {
    position: absolute;
    right: 7%;
    top: 6%;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 91, 33, .13);
    border: 1px solid rgba(255, 91, 33, .3);
    color: #ffb59a;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase
}

@media (max-width: 1040px) {
    .hero-inner,
    .hero-section .shell.hero-layout,
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .hero,
    .hero-section {
        min-height: auto
    }

    .hero-copy {
        max-width: 900px
    }

    .hero-visual {
        min-height: 530px
    }
}

@media (max-width: 860px) {
    .hero-inner,
    .hero-section .shell.hero-layout,
    .hero-layout {
        padding: 72px 0 80px
    }

    .hero-visual {
        min-height: 480px
    }

    .orbit {
        width: min(430px, 92vw)
    }

    .orbit-node {
        width: 132px;
        min-height: 75px;
        padding: 11px 12px
    }

    .orbit-node small {
        display: none
    }
}

@media (max-width: 620px) {
    .hero-inner {
        padding-top: 54px
    }

    .hero-support {
        font-size: .75rem
    }

    .hero-visual {
        min-height: auto;
        padding: 10px 0 24px
    }

    .orbit {
        aspect-ratio: auto;
        border: 0;
        background: transparent;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    .orbit::before,
    .orbit::after,
    .orbit-core,
    .orbit-chip {
        display: none
    }

    .orbit-node {
        position: static;
        width: auto;
        min-height: 92px;
        animation: none
    }
}

.hero-section,
.home-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(110deg, rgba(5, 16, 31, .98) 0%, rgba(7, 24, 49, .98) 48%, rgba(7, 27, 58, .95) 100%)
}

.hero-section {
    min-height: 760px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0
}

/* Keep solution-page themes aligned to home hero colors */
.hero-section.theme-blue,
.hero-section.theme-orange,
.hero-section.theme-navy,
.hero-section.theme-mint {
    background: linear-gradient(110deg, rgba(5, 16, 31, .98) 0%, rgba(7, 24, 49, .98) 48%, rgba(7, 27, 58, .95) 100%)
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    right: -180px;
    top: -210px;
    background: radial-gradient(circle, rgba(11, 98, 255, .32), rgba(11, 98, 255, 0) 68%);
    pointer-events: none
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    opacity: 1;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to right, transparent, #000 28%, #000 100%)
}

/* Same content width/layout as home `.shell.hero-inner` */
.hero-section .shell.hero-layout,
.hero-layout {
    position: relative;
    z-index: 2;
    width: var(--shell);
    max-width: var(--page-max);
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
    align-items: center;
    gap: 70px;
    padding: 96px 0 44px
}

.hero-section .hero-copy .eyebrow {
    gap: 12px;
    color: #f36434;
    font-size: .78rem;
    letter-spacing: .14em
}

.hero-section .hero-copy .eyebrow::before {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 4px;
    background: #f36434
}

.hero-section .hero-copy {
    max-width: 750px
}

.hero-copy h1,
.home-hero__copy h1 {
    font-size: clamp(48px, 6vw, 82px);
    line-height: .98;
    letter-spacing: -.045em;
    margin: 18px 0 24px;
    max-width: 780px;
    color: #fff
}

.hero-section .hero-copy h1 {
    font-weight: 800;
    background: linear-gradient(92deg, #fff 0%, #fff 42%, #ffb35d 68%, #66a2ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.hero-copy p,
.home-hero__copy p {
    font-size: 18px;
    line-height: 1.75;
    color: #d8e1ef;
    max-width: 710px
}

.hero-section .hero-copy p {
    color: rgba(255, 255, 255, .74);
    font-size: clamp(1.05rem, 1.5vw, 1.2rem)
}

.hero-section .button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px
}

.hero-section .button {
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 650;
    box-shadow: none
}

.hero-section .button--orange {
    color: #fff;
    background: #f36434;
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(243, 100, 52, .28)
}

.hero-section .button--orange:hover {
    background: #ed5425;
    transform: translateY(-2px)
}

.hero-section .button--outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .06)
}

.hero-section .button--outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    transform: translateY(-2px)
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    font-size: .77rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #9fb1c9
}

.hero-section .hero-trust span {
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: #d5e0ef
}

.hero-trust i {
    display: none
}

.hero-console {
    position: relative;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(4, 13, 29, .72);
    border-radius: 28px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .38),
        0 0 0 1px rgba(11, 98, 255, .12),
        0 22px 60px rgba(11, 98, 255, .22);
    overflow: hidden;
    backdrop-filter: blur(16px);
    animation: hero-console-float 7s ease-in-out infinite
}

.hero-console::before {
    content: "";
    position: absolute;
    inset: -35%;
    z-index: 0;
    background: conic-gradient(from 0deg, transparent 0 55%, rgba(11, 98, 255, .28) 70%, rgba(243, 100, 52, .18) 82%, transparent 100%);
    animation: triad-orbit 12s linear infinite;
    pointer-events: none
}

.hero-console > * {
    position: relative;
    z-index: 1
}

@keyframes hero-console-float {
    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-console,
    .hero-console::before {
        animation: none
    }
}

.console-top,
.console-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-family: monospace;
    font-size: 10px;
    letter-spacing: .08em;
    color: #AFC2DC
}

.console-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 0
}

.console-status {
    display: flex;
    align-items: center;
    gap: 8px
}

.console-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #36E198;
    box-shadow: 0 0 0 5px rgba(54, 225, 152, .12)
}

.console-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 330px
}

.console-map {
    position: relative;
    min-height: 330px;
    background: radial-gradient(circle at center, rgba(0, 98, 254, .25), transparent 50%)
}

.console-core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 82px;
    height: 82px;
    transform: translate(-50%, -50%);
    border-radius: 22px;
    background: var(--blue);
    display: grid;
    place-items: center;
    z-index: 2;
    box-shadow: 0 0 0 14px rgba(0, 98, 254, .12)
}

.hero-section .console-core,
.theme-orange .console-core,
.theme-mint .console-core,
.theme-blue .console-core,
.theme-navy .console-core {
    background: #0b62ff;
    box-shadow: 0 0 0 14px rgba(11, 98, 255, .14), 0 16px 40px rgba(11, 98, 255, .35)
}
}

.console-core svg {
    width: 42px;
    stroke: #fff;
    fill: none;
    stroke-width: 2
}

.node {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, .1);
    z-index: 2
}

.node--1 {
    left: 15%;
    top: 18%
}

.node--2 {
    right: 13%;
    top: 24%;
    background: var(--orange)
}

.node--3 {
    right: 18%;
    bottom: 18%
}

.node--4 {
    left: 17%;
    bottom: 21%;
    background: var(--orange)
}

.route {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .7));
    transform-origin: left
}

.route--1 {
    width: 130px;
    transform: rotate(-142deg)
}

.route--2 {
    width: 120px;
    transform: rotate(-33deg)
}

.route--3 {
    width: 120px;
    transform: rotate(38deg)
}

.route--4 {
    width: 125px;
    transform: rotate(140deg)
}

.console-data {
    padding: 35px 26px;
    border-left: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.console-data small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #9FB0C9
}

.console-data strong {
    font-size: 52px;
    line-height: 1;
    color: #fff;
    margin: 12px 0
}

.console-data>span {
    font-size: 13px;
    color: #D5DFEC
}

.mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    height: 80px;
    margin-top: 30px
}

.mini-bars i {
    display: block;
    flex: 1;
    background: linear-gradient(var(--orange), var(--blue));
    border-radius: 4px 4px 0 0
}

.mini-bars i:nth-child(1) {
    height: 34%
}

.mini-bars i:nth-child(2) {
    height: 65%
}

.mini-bars i:nth-child(3) {
    height: 48%
}

.mini-bars i:nth-child(4) {
    height: 88%
}

.mini-bars i:nth-child(5) {
    height: 72%
}

.section {
    padding: 100px 0
}

.section--light {
    background: var(--light)
}

.section--dark {
    background: var(--navy);
    color: #fff
}

.section-heading {
    max-width: 760px;
    margin-bottom: 46px
}

.section-heading--center {
    text-align: center;
    margin-inline: auto
}

.section-heading--center .eyebrow {
    justify-content: center
}

.section-heading h2 {
    font-size: clamp(34px, 4.6vw, 58px);
    line-height: 1.08;
    letter-spacing: -.035em;
    margin: 15px 0
}

.section-heading p {
    font-size: 17px;
    color: var(--muted);
    max-width: 720px
}

.section--dark .section-heading p {
    color: #B7C3D5
}

.split-intro,
.narrative-grid,
.architect-grid,
.contact-grid,
.intelligence-grid,
.career-panel,
.africa-grid,
.multiplier {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
    gap: 70px;
    align-items: start
}

.statement-card,
.quote-panel,
.strategy-output,
.career-cta {
    background: var(--navy);
    color: #fff;
    padding: 38px;
    border-radius: 20px;
    box-shadow: var(--shadow)
}

.statement-card blockquote,
.quote-panel blockquote {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
    margin: 20px 0
}

.statement-card p {
    color: #BEC9D8
}

.quote-mark {
    font-size: 74px;
    line-height: .6;
    color: var(--orange)
}

.quote-metric {
    display: flex;
    align-items: end;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .16);
    padding-top: 24px
}

.quote-metric strong {
    font-size: 42px;
    color: var(--orange)
}

.quote-metric span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #B7C3D5
}

.story-copy p {
    font-size: 18px;
    color: var(--muted)
}

.capability-grid,
.principle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.capability-card,
.principle-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px;
    min-height: 280px;
    transition: .2s
}

.capability-card:hover,
.principle-card:hover {
    transform: translateY(-5px);
    border-color: var(--blue);
    box-shadow: var(--shadow)
}

.capability-card__top {
    display: flex;
    justify-content: space-between;
    align-items: start
}

.icon-tile {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--light);
    display: grid;
    place-items: center;
    color: var(--blue)
}

.icon-tile svg {
    width: 30px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2
}

.icon-tile--small {
    width: 44px;
    height: 44px
}

.card-index {
    font-family: monospace;
    font-size: 12px;
    color: #8B98AA
}

.capability-card h3,
.principle-card h3 {
    font-size: 20px;
    line-height: 1.25;
    margin: 24px 0 12px
}

.capability-card p,
.principle-card p {
    font-size: 14px;
    color: var(--muted)
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .14)
}

.process-step {
    padding: 34px;
    background: var(--navy)
}

.process-step span {
    font-family: monospace;
    color: var(--orange)
}

.process-step h3 {
    font-size: 22px
}

.process-step p {
    color: #B7C3D5;
    font-size: 14px
}

.outcome-grid,
.challenge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.outcome-card,
.challenge-card {
    padding: 28px;
    border-top: 4px solid var(--blue);
    background: #fff;
    box-shadow: 0 16px 40px rgba(7, 21, 46, .08)
}

.outcome-card span,
.challenge-card span {
    font-family: monospace;
    color: var(--orange)
}

.outcome-card h3,
.challenge-card h3 {
    font-size: 21px
}

.outcome-card p,
.challenge-card p {
    font-size: 14px;
    color: var(--muted)
}

.related-grid,
.company-link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.company-link-grid {
    grid-template-columns: repeat(4, 1fr)
}

.related-card,
.company-link {
    background: #fff;
    border: 1px solid var(--line);
    padding: 26px;
    border-radius: 15px;
    transition: .2s
}

.related-card:hover,
.company-link:hover {
    transform: translateY(-4px);
    border-color: var(--blue)
}

.related-card h3,
.company-link h3 {
    font-size: 22px
}

.related-card p {
    font-size: 14px;
    color: var(--muted)
}

.related-card b,
.company-link b {
    color: var(--blue);
    font-size: 13px
}

.company-link {
    position: relative
}

.company-link>b {
    position: absolute;
    right: 20px;
    top: 20px
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-bottom: 38px
}

.filter-button {
    border: 1px solid var(--line);
    background: #fff;
    padding: 11px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600
}

.filter-button.is-active,
.filter-button:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff
}

.solution-directory {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.solution-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: .2s
}

.solution-card[hidden] {
    display: none
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.solution-card a {
    display: block;
    padding: 26px
}

.solution-card__head {
    display: flex;
    align-items: start;
    justify-content: space-between
}

.solution-card h2 {
    font-size: 22px
}

.solution-card p {
    font-size: 14px;
    color: var(--muted);
    min-height: 86px
}

.solution-card b {
    color: var(--blue);
    font-size: 13px
}

.empty-state {
    text-align: center;
    color: var(--muted)
}

.industry-directory {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.industry-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 24px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    transition: .2s
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--blue)
}

.industry-card__icon {
    width: 94px;
    height: 94px;
    border-radius: 24px;
    background: var(--light);
    display: grid;
    place-items: center;
    color: var(--blue)
}

.industry-card__icon svg {
    width: 52px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2
}

.industry-card h2 {
    font-size: 26px;
    margin: 7px 0
}

.industry-card p {
    font-size: 14px;
    color: var(--muted)
}

.industry-card b {
    color: var(--blue);
    font-size: 13px
}

.multiplier {
    align-items: center
}

.multiplier-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px
}

.multiplier-metrics div {
    background: var(--navy);
    color: #fff;
    border-radius: 15px;
    padding: 22px
}

.multiplier-metrics strong {
    display: block;
    font-size: 36px;
    color: var(--orange)
}

.multiplier-metrics span {
    font-size: 12px;
    color: #C5D0DF
}

.home-hero {
    padding: 84px 0 0
}

.home-hero__layout {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 56px;
    align-items: center
}

.home-hero__copy em {
    font-style: normal;
    color: var(--orange)
}

.home-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 25px
}

.home-proof span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 8px 10px;
    border-radius: 999px
}

.home-dashboard {
    background: rgba(4, 13, 29, .78);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .4)
}

.dashboard-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.dashboard-head>div {
    display: flex;
    align-items: center;
    gap: 12px
}

.dashboard-head img {
    width: 38px
}

.dashboard-head span {
    display: flex;
    flex-direction: column
}

.dashboard-head small {
    font-size: 9px;
    color: #9FB0C9
}

.dashboard-head i {
    font-style: normal;
    font-size: 9px;
    color: #36E198
}

.dashboard-body {
    display: grid;
    grid-template-columns: 1.1fr .9fr
}

.dashboard-map {
    position: relative;
    min-height: 390px;
    background: radial-gradient(circle at center, rgba(0, 98, 254, .28), transparent 55%)
}

.map-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    z-index: 2;
    box-shadow: 0 0 0 16px rgba(255, 255, 255, .08)
}

.map-core img {
    width: 58px
}

.map-point {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    z-index: 2
}

.map-point.p1 {
    left: 15%;
    top: 20%
}

.map-point.p2 {
    right: 14%;
    top: 22%;
    background: var(--orange)
}

.map-point.p3 {
    right: 18%;
    bottom: 18%
}

.map-point.p4 {
    left: 17%;
    bottom: 20%;
    background: var(--orange)
}

.map-line {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 1px;
    width: 150px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .7));
    transform-origin: left
}

.map-line.l1 {
    transform: rotate(-145deg)
}

.map-line.l2 {
    transform: rotate(-32deg)
}

.map-line.l3 {
    transform: rotate(38deg)
}

.map-line.l4 {
    transform: rotate(142deg)
}

.map-label {
    position: absolute;
    font-size: 9px;
    color: #AFC2DC
}

.map-label.ml1 {
    left: 8%;
    top: 12%
}

.map-label.ml2 {
    right: 5%;
    top: 14%
}

.map-label.ml3 {
    right: 8%;
    bottom: 10%
}

.dashboard-metrics {
    border-left: 1px solid rgba(255, 255, 255, .12)
}

.dashboard-metrics article {
    padding: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.dashboard-metrics small,
.dashboard-metrics span {
    display: block;
    color: #9FB0C9;
    font-size: 9px
}

.dashboard-metrics strong {
    display: block;
    font-size: 34px;
    margin: 5px 0;
    color: #fff
}

.home-stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 64px;
    background: #fff;
    color: var(--ink);
    border-radius: 18px 18px 0 0;
    overflow: hidden
}

.home-stat-strip div {
    padding: 24px;
    border-right: 1px solid var(--line)
}

.home-stat-strip strong {
    display: block;
    font-size: 25px;
    color: var(--blue)
}

.home-stat-strip span {
    font-size: 11px;
    color: var(--muted)
}

.position-band {
    background: var(--orange);
    color: #fff;
    padding: 42px 0
}

.position-band__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center
}

.position-band h2 {
    font-size: 30px;
    margin: 0
}

.position-band p {
    margin: 0;
    color: #FFF0EA
}

.convergence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.convergence-card {
    padding: 34px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--line)
}

.convergence-card--dark {
    background: var(--navy);
    color: #fff
}

.convergence-card--orange {
    background: var(--orange);
    color: #fff
}

.convergence-card h3 {
    font-size: 26px
}

.convergence-card p {
    font-size: 14px;
    color: var(--muted)
}

.convergence-card--dark p,
.convergence-card--orange p {
    color: #D7E0ED
}

.convergence-card a {
    font-weight: 700;
    font-size: 13px;
    color: var(--blue)
}

.convergence-card--dark a,
.convergence-card--orange a {
    color: #fff
}

.triad {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--light)
}

.triad__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: center
}

.triad__intro h2 {
    margin: 14px 0 0;
    font-size: clamp(30px, 3.4vw, 40px);
    line-height: 1.1;
    letter-spacing: -.03em
}

.triad__intro > p {
    margin: 16px 0 0;
    font-size: 16px;
    color: var(--muted);
    max-width: 520px
}

.triad__list {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px
}

.triad__item {
    display: flex;
    align-items: flex-start;
    gap: 14px
}

.triad__dot {
    flex: none;
    margin-top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(7, 21, 46, .06)
}

.triad__dot--strategy {
    background: var(--orange)
}

.triad__dot--ai {
    background: var(--blue)
}

.triad__dot--procure {
    background: var(--mint)
}

.triad__item-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink)
}

.triad__item-desc {
    margin: 2px 0 0;
    font-size: 14px;
    color: var(--muted)
}

.triad__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 26px;
    font-size: 14px;
    font-weight: 700;
    color: var(--blue)
}

.triad__link svg {
    width: 16px;
    height: 16px
}

.triad__link:hover {
    text-decoration: underline
}

.triad__visual {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
    aspect-ratio: 1 / 1;
    overflow: visible
}

.triad__glow {
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 98, 254, .16), rgba(0, 98, 254, 0) 68%);
    filter: blur(30px)
}

.triad__disc {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 46%;
    height: 46%;
    margin: auto;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 28px 46px -8px rgba(0, 98, 254, .65);
    animation: triad-shadow-orbit 6s linear infinite
}

.triad__chart {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: visible
}

.triad__sector {
    cursor: pointer;
    transition: fill .25s ease;
    outline: none
}

.triad__sector--strategy {
    fill: var(--orange)
}

.triad__sector--ai {
    fill: var(--blue)
}

.triad__sector--procure {
    fill: var(--mint)
}

.triad__sector--strategy:hover,
.triad__sector--strategy:focus-visible {
    fill: #ff7a45
}

.triad__sector--ai:hover,
.triad__sector--ai:focus-visible {
    fill: #2b7cff
}

.triad__sector--procure:hover,
.triad__sector--procure:focus-visible {
    fill: #3dd6b5
}

.triad__labels {
    pointer-events: none
}

@media (prefers-reduced-motion: reduce) {
    .triad__sector {
        transition: none
    }
}

.triad__center {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24%;
    pointer-events: none
}

.triad__center-eyebrow {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--muted)
}

.triad__center-title {
    margin: 4px 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--ink)
}

.triad__center-sub {
    margin-top: 4px;
    font-size: 12px;
    color: var(--muted)
}

@keyframes triad-orbit {
    to {
        transform: rotate(360deg)
    }
}

@keyframes triad-shadow-orbit {
    0% {
        box-shadow: 0 28px 46px -8px rgba(0, 98, 254, .65)
    }

    25% {
        box-shadow: 28px 0 46px -8px rgba(0, 98, 254, .65)
    }

    50% {
        box-shadow: 0 -28px 46px -8px rgba(0, 98, 254, .65)
    }

    75% {
        box-shadow: -28px 0 46px -8px rgba(0, 98, 254, .65)
    }

    100% {
        box-shadow: 0 28px 46px -8px rgba(0, 98, 254, .65)
    }
}

@media (prefers-reduced-motion: reduce) {
    .triad__disc {
        animation: none
    }
}

@media (max-width: 860px) {
    .triad__inner {
        grid-template-columns: 1fr;
        gap: 44px
    }
}

.why-besong .section-heading {
    margin-bottom: 44px
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.why-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(7, 21, 46, .06);
    transition: transform .3s ease, box-shadow .3s ease
}

.why-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--blue));
    opacity: 0;
    transition: opacity .3s ease
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.why-card:hover::before {
    opacity: 1
}

.why-card__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--navy);
    color: var(--orange);
    box-shadow: inset 0 0 0 1px rgba(243, 100, 52, .25)
}

.why-card__icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2
}

.why-card h3 {
    margin: 18px 0 6px;
    font-size: 18px;
    font-weight: 600
}

.why-card p {
    margin: 0;
    font-size: 14px;
    color: var(--muted)
}

@media (max-width: 980px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr
    }
}

.phase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 48px
}

.phase-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    box-shadow: var(--shadow);
    transition: box-shadow .55s ease
}

.phase-card:hover {
    box-shadow: 0 18px 40px rgba(7, 21, 46, .14)
}

.phase-card__media {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #07152E
}

/* Full image — no crop, same 4-column layout */
.phase-card__media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
    transition: transform .55s ease
}

.phase-card:hover .phase-card__media img {
    transform: scale(1.04)
}

.phase-card__media::after {
    display: none
}

.phase-card__number {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--orange);
    color: #fff;
    font-size: 12px;
    font-weight: 700
}

.phase-card__title {
    display: none
}

.phase-card__body {
    padding: 20px 22px
}

.phase-card__body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink, #161616)
}

.phase-card__body p {
    margin: 0;
    font-size: 14px;
    color: var(--muted)
}

.units-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px
}

.units-head .section-heading {
    margin: 0;
    max-width: 640px
}

.units-head .section-heading p {
    margin-top: 8px
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 40px
}

.unit-card {
    position: relative;
    overflow: hidden;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform .3s ease, box-shadow .3s ease
}

.unit-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), rgba(243, 100, 52, .4) 45%, var(--blue));
    opacity: .65
}

.unit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(7, 21, 46, .18)
}

.unit-card h3 {
    margin: 16px 0 6px;
    font-size: 15px;
    font-weight: 600
}

.unit-card p {
    margin: 0 0 14px;
    font-size: 13px;
    color: var(--muted)
}

.home-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.home-solution-card {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
    min-height: 270px
}

.home-solution-card:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-4px)
}

.home-solution-card__number {
    font-family: monospace;
    color: var(--orange)
}

.home-solution-card h3 {
    font-size: 24px
}

.home-solution-card p {
    font-size: 13px;
    color: #B8C4D5
}

.home-solution-card b {
    font-size: 13px
}

.section-link {
    text-align: center;
    margin-top: 34px
}

.africa-grid {
    align-items: center
}

.africa-visual {
    height: 500px;
    border-radius: 30px;
    background: var(--navy);
    position: relative;
    overflow: hidden
}

.africa-visual:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 44%, rgba(0, 98, 254, .45), transparent 45%), linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: auto, 40px 40px, 40px 40px
}

.africa-outline {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 230px;
    height: 300px;
    background: linear-gradient(145deg, var(--blue), #36A6FF);
    clip-path: polygon(42% 0, 67% 10%, 76% 29%, 94% 39%, 80% 55%, 71% 81%, 50% 100%, 32% 85%, 20% 62%, 4% 44%, 17% 25%, 31% 17%);
    display: grid;
    place-items: center
}

.africa-outline span {
    font-size: 90px;
    font-weight: 800;
    color: #fff
}

.africa-node {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 7px rgba(243, 100, 52, .2)
}

.africa-node.n1 {
    left: 22%;
    top: 28%
}

.africa-node.n2 {
    right: 20%;
    top: 36%
}

.africa-node.n3 {
    left: 28%;
    bottom: 22%
}

.mini-principles {
    display: grid;
    gap: 15px;
    margin: 30px 0
}

.mini-principles div {
    border-left: 3px solid var(--orange);
    padding-left: 16px
}

.mini-principles b,
.mini-principles span {
    display: block
}

.mini-principles span {
    font-size: 13px;
    color: var(--muted)
}

.text-link {
    font-weight: 700;
    color: var(--blue)
}

.sector-pill-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.sector-pill {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--line);
    font-weight: 600
}

.sector-pill:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px)
}

.architect-form,
.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px;
    box-shadow: var(--shadow)
}

.architect-form {
    display: grid;
    gap: 18px
}

.architect-form label,
.contact-form label {
    display: grid;
    gap: 7px;
    font-size: 13px;
    font-weight: 600
}

.architect-form input,
.architect-form select,
.architect-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #C9D4E4;
    border-radius: 8px;
    padding: 13px 14px;
    background: #fff;
    color: var(--ink)
}

.architect-form input:focus,
.architect-form select:focus,
.architect-form textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(0, 98, 254, .15);
    border-color: var(--blue)
}

.strategy-output__head {
    display: flex;
    justify-content: space-between;
    font: 11px monospace;
    color: #AFC2DC
}

.strategy-output__head i {
    font-style: normal;
    color: #36E198
}

.strategy-output h3 {
    font-size: 30px
}

.strategy-output p {
    color: #B9C5D6
}

.strategy-output__rows {
    display: grid;
    gap: 8px;
    margin-top: 24px
}

.strategy-output__rows span {
    background: rgba(255, 255, 255, .08);
    padding: 12px;
    border-radius: 8px;
    font-size: 12px
}

.strategy-tabs {
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden
}

.tab-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--light)
}

.tab-button {
    border: 0;
    background: transparent;
    padding: 18px;
    font-weight: 700
}

.tab-button.is-active {
    background: var(--blue);
    color: #fff
}

.tab-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    padding: 42px;
    align-items: center
}

.tab-panel.is-active {
    display: grid
}

.tab-panel h3 {
    font-size: 34px
}

.check-list {
    padding: 0;
    margin: 24px 0;
    list-style: none;
    display: grid;
    gap: 10px
}

.check-list li {
    position: relative;
    padding-left: 26px
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 800
}

.check-list--light li {
    color: #D2DCE9
}

.upload-lab {
    background: #fff;
    color: var(--ink);
    padding: 35px;
    border-radius: 20px
}

.upload-lab__spark {
    font-size: 36px
}

.upload-box {
    display: grid;
    place-items: center;
    text-align: center;
    min-height: 150px;
    border: 2px dashed #B8C7DB;
    border-radius: 14px;
    background: var(--light);
    padding: 22px;
    cursor: pointer
}

.upload-box input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.upload-box span {
    font-weight: 700
}

.upload-box small {
    color: var(--muted)
}

.upload-preview {
    margin-top: 14px;
    min-height: 120px;
    border-radius: 12px;
    background: #F4F6F9;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px
}

.upload-preview img {
    width: 100%;
    height: 220px;
    object-fit: cover
}

.contact-details {
    display: grid;
    gap: 12px
}

.contact-details a,
.contact-details div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line)
}

.contact-details b {
    color: var(--blue)
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.form-span {
    grid-column: 1/-1
}

.checkbox-row {
    display: flex !important;
    grid-template-columns: auto 1fr !important;
    align-items: start
}

.checkbox-row input {
    width: 18px !important;
    height: 18px
}

.role-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px
}

.role-tags span {
    background: var(--light);
    border: 1px solid var(--line);
    padding: 9px 12px;
    border-radius: 999px;
    font-size: 12px
}

.career-cta h3 {
    font-size: 30px
}

.career-cta p {
    color: #BBC7D7
}

.engagement-band {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 74px 0;
    background: linear-gradient(120deg, #030b18, #0a1f45 62%, #0062fe)
}

.engagement-band::after {
    content: "";
    position: absolute;
    right: -160px;
    top: -230px;
    width: 600px;
    height: 600px;
    border: 90px solid rgba(255, 255, 255, .05);
    border-radius: 50%;
    pointer-events: none
}

.engagement-band__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px
}

.engagement-band h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -.04em
}

.engagement-band p {
    max-width: 720px;
    margin: 14px 0 0;
    color: #c7d4e7;
    font-size: 1.05rem;
    line-height: 1.6
}

.engagement-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0
}

.site-footer {
    background: #030B18;
    color: #fff;
    padding: 70px 0 24px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .85fr .85fr .85fr 1.6fr .95fr;
    gap: 22px
}

.footer-brand img {
    width: 210px;
    filter: none
}

.footer-brand p,
.footer-newsletter p {
    color: #9EACC0;
    font-size: 13px
}

.footer-grid h3 {
    font-size: 14px;
    color: #fff;
    margin: 0 0 18px
}

.footer-grid>div>a {
    display: block;
    color: #9EACC0;
    font-size: 12px;
    margin: 10px 0
}

.footer-grid>div>a:hover {
    color: #fff
}

.footer-units__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 18px
}

.footer-units__grid a {
    display: block;
    color: #9EACC0;
    font-size: 12px;
    margin: 10px 0
}

.footer-units__grid a:hover {
    color: #fff
}

.social-row {
    display: flex;
    gap: 8px
}

.social-row a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: grid;
    place-items: center
}

.inline-form {
    display: flex
}

.inline-form input {
    min-width: 0;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, .2);
    background: #0B172A;
    color: #fff;
    padding: 12px;
    border-radius: 7px 0 0 7px
}

.inline-form button {
    border: 0;
    background: var(--orange);
    color: #fff;
    padding: 0 14px;
    border-radius: 0 7px 7px 0
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 50px;
    padding-top: 20px;
    color: #78869A;
    font-size: 11px
}

.footer-bottom div {
    display: flex;
    gap: 14px
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-weight: 800;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .2s;
    z-index: 80
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: none
}

.toast {
    position: fixed;
    z-index: 1000;
    right: 20px;
    bottom: 80px;
    max-width: 340px;
    background: var(--navy);
    color: #fff;
    padding: 14px 18px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .2s;
    font-size: 13px
}

.toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: none
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

.reveal--delay-1 {
    transition-delay: .12s
}

/* Keep full desktop header breathing room down to 1101px */
@media (min-width: 1101px) and (max-width: 1400px) {
    :root {
        --page-gutter: 28px;
        --shell: min(var(--page-max), calc(100% - var(--page-gutter)))
    }

    .brand img {
        width: 172px
    }

    .nav-wrap__inner {
        gap: 14px
    }

    .primary-nav {
        gap: 4px
    }

    .nav-link {
        padding: 9px 7px;
        font-size: 13px;
        gap: 5px
    }

    .nav-item--lang {
        margin-left: 6px
    }

    .language-button {
        min-height: 36px;
        padding: 6px 10px;
        font-size: 12px
    }

    .nav-cta {
        margin-left: 8px
    }

    .nav-cta.button--sm {
        min-height: 40px;
        padding: 8px 14px;
        font-size: 12.5px
    }
}

@media(max-width:1100px) {
    .brand img {
        width: 168px
    }

    .nav-toggle {
        display: block;
        flex: 0 0 auto;
        margin-left: auto
    }

    .primary-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        max-height: min(78vh, calc(100dvh - 90px));
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 16px 20px;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: .2s;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 40px rgba(7, 21, 46, .12);
        z-index: 210
    }

    .primary-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none
    }

    .nav-item {
        border-bottom: 1px solid var(--line);
        width: 100%
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 14px 8px;
        font-size: 15px
    }

    .nav-item--lang {
        margin: 0;
        padding: 12px 0 4px;
        border-bottom: 0;
        width: 100%
    }

    .language-switcher {
        width: 100%
    }

    .language-button {
        width: 100%;
        justify-content: flex-start;
        min-height: 48px;
        border-radius: 12px;
        padding: 12px 14px;
        font-size: 14px
    }

    .language-button__chevron {
        margin-left: auto
    }

    .language-popover {
        position: static;
        width: 100%;
        margin-top: 8px;
        box-shadow: none;
        border: 1px solid #DCE4EF;
        border-radius: 12px;
        padding: 8px
    }

    .nav-cta {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        margin: 16px 0 4px;
        min-height: 48px
    }

    .mega-menu {
        position: static;
        transform: none !important;
        width: 100% !important;
        box-shadow: none;
        border: 0;
        border-radius: 0;
        padding: 0 8px 18px;
        display: none;
        grid-template-columns: 1fr;
        opacity: 1;
        visibility: visible;
        pointer-events: auto
    }

    .mega-menu.is-open {
        display: grid
    }

    .mega-menu__intro {
        display: none
    }

    .mega-menu__links {
        grid-template-columns: 1fr
    }

    .mega-menu--units {
        padding: 4px 8px 18px
    }

    .mega-menu__columns {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .mega-menu__foot {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-top: 16px
    }

    .units-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .hero-layout,
    .home-hero__layout {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .hero-console,
    .home-dashboard {
        max-width: 760px
    }

    .capability-grid,
    .principle-grid,
    .outcome-grid,
    .challenge-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .solution-directory {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1.3fr repeat(2, 1fr)
    }

    .footer-grid>div:nth-child(4),
    .footer-newsletter {
        grid-column: auto
    }

    .home-solution-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .company-link-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:860px) {
    :root {
        --page-gutter: 28px;
        --shell: min(var(--page-max), calc(100% - var(--page-gutter)))
    }

    .utility-bar__left span:last-child {
        display: none
    }

    .utility-bar__right a:first-child {
        display: none
    }

    .nav-wrap__inner {
        min-height: 76px
    }

    .brand img {
        width: 170px
    }

    .service-ribbon__inner {
        gap: 20px
    }

    .hero-section {
        padding: 0
    }

    .split-intro,
    .narrative-grid,
    .architect-grid,
    .contact-grid,
    .intelligence-grid,
    .career-panel,
    .africa-grid,
    .multiplier {
        grid-template-columns: 1fr
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .related-grid,
    .company-link-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .industry-directory {
        grid-template-columns: 1fr
    }

    .home-stat-strip {
        grid-template-columns: repeat(2, 1fr)
    }

    .position-band__grid {
        grid-template-columns: 1fr
    }

    .convergence-grid {
        grid-template-columns: 1fr
    }

    .phase-grid,
    .units-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .tab-panel {
        grid-template-columns: 1fr
    }

    .engagement-band__inner {
        align-items: flex-start;
        flex-direction: column
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-brand,
    .footer-newsletter {
        grid-column: 1/-1
    }

    .footer-bottom {
        flex-direction: column
    }

    .dashboard-body {
        grid-template-columns: 1fr
    }

    .dashboard-metrics {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .12)
    }

    .dashboard-metrics article {
        border-right: 1px solid rgba(255, 255, 255, .12)
    }

    .home-dashboard {
        max-width: 680px
    }
}

@media(max-width:620px) {
    .nav-wrap__inner {
        min-height: 70px;
        gap: 12px
    }

    .brand img {
        width: 148px
    }

    .nav-toggle {
        width: 42px;
        height: 42px
    }

    .primary-nav {
        padding: 10px 14px 18px;
        max-height: min(80vh, calc(100dvh - 78px))
    }

    .nav-link {
        padding: 13px 6px;
        font-size: 14.5px
    }

    .utility-bar__right a:nth-child(2) {
        display: none
    }

    .hero-copy h1,
    .home-hero__copy h1 {
        font-size: 46px
    }

    .hero-copy p,
    .home-hero__copy p {
        font-size: 16px
    }

    .console-grid {
        grid-template-columns: 1fr
    }

    .console-data {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .12)
    }

    .capability-grid,
    .principle-grid,
    .outcome-grid,
    .challenge-grid,
    .solution-directory,
    .home-solution-grid,
    .related-grid,
    .company-link-grid,
    .sector-pill-grid,
    .phase-grid,
    .units-grid {
        grid-template-columns: 1fr
    }

    .process-grid {
        grid-template-columns: 1fr
    }

    .industry-card {
        grid-template-columns: 1fr
    }

    .industry-card__icon {
        width: 70px;
        height: 70px
    }

    .home-stat-strip {
        grid-template-columns: 1fr
    }

    .home-stat-strip div {
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .dashboard-metrics {
        grid-template-columns: 1fr
    }

    .dashboard-metrics article {
        border-right: 0
    }

    .africa-visual {
        height: 390px
    }

    .form-grid {
        grid-template-columns: 1fr
    }

    .form-span {
        grid-column: auto
    }

    .engagement-band {
        padding: 56px 0
    }

    .engagement-band h2 {
        font-size: clamp(1.75rem, 7vw, 2.2rem)
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-brand,
    .footer-newsletter {
        grid-column: auto
    }

    .button-row,
    .engagement-actions {
        align-items: stretch;
        flex-direction: column
    }

    .button {
        width: 100%
    }

    .tab-list {
        grid-template-columns: 1fr
    }

    .section {
        padding: 78px 0
    }

    .section-heading h2 {
        font-size: 36px
    }

    .statement-card blockquote,
    .quote-panel blockquote {
        font-size: 25px
    }

    .console-bottom {
        flex-direction: column;
        align-items: flex-start
    }

    .home-hero {
        padding-top: 65px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *:before,
    *:after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

/* ============================================================
   Contact page — ported section styles (form, map/process, FAQ).
   Scoped to the contact page only so it cannot affect other pages
   and cleanly overrides the few shared class names.
   ============================================================ */
body[data-page="contact"] .container {
    width: var(--shell);
    margin-inline: auto;
}
body[data-page="contact"] .container.narrow {
    width: min(900px, calc(100% - var(--page-gutter)));
}
body[data-page="contact"] .section-soft {
    background: #f5f8fc;
}

body[data-page="contact"] .title-lg,
body[data-page="contact"] .title-md {
    margin: 0;
    letter-spacing: -.04em;
    line-height: 1.08;
}
body[data-page="contact"] .title-lg {
    font-size: clamp(2.3rem, 4.8vw, 4.6rem);
    font-weight: 800;
}
body[data-page="contact"] .title-md {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 750;
}
body[data-page="contact"] .kicker {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #f36434;
}

body[data-page="contact"] .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 650;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
body[data-page="contact"] .btn:hover {
    transform: translateY(-2px);
}
body[data-page="contact"] .btn-primary {
    color: #fff;
    background: #0062fe;
    box-shadow: 0 12px 30px rgba(0, 98, 254, .28);
}
body[data-page="contact"] .btn-primary:hover {
    background: #0759dd;
    box-shadow: 0 18px 40px rgba(0, 98, 254, .34);
}
body[data-page="contact"] .btn-orange {
    color: #fff;
    background: #f36434;
    box-shadow: 0 12px 30px rgba(243, 100, 52, .28);
}
body[data-page="contact"] .btn-orange:hover {
    background: #ed5425;
}

body[data-page="contact"] .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 72px;
}

/* --- Contact form section --- */
body[data-page="contact"] .contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 48px;
    align-items: start;
}
body[data-page="contact"] .contact-cards {
    display: grid;
    gap: 16px;
}
body[data-page="contact"] .contact-card {
    padding: 24px;
    border: 1px solid #dce4ef;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(10, 32, 67, .08);
}
body[data-page="contact"] .contact-card h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}
body[data-page="contact"] .contact-card p,
body[data-page="contact"] .contact-card a {
    margin: 0;
    color: #5e6b80;
    font-size: .88rem;
}
body[data-page="contact"] .contact-card a:hover {
    color: #0062fe;
}
body[data-page="contact"] .form-card {
    padding: 36px;
    border: 1px solid #dce4ef;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(5, 20, 47, .16);
}
body[data-page="contact"] .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
body[data-page="contact"] .field {
    display: grid;
    gap: 8px;
}
body[data-page="contact"] .field.full {
    grid-column: 1 / -1;
}
body[data-page="contact"] .field label {
    font-size: .82rem;
    font-weight: 650;
    color: #102643;
}
body[data-page="contact"] .field input,
body[data-page="contact"] .field textarea,
body[data-page="contact"] .field select {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #cbd6e4;
    border-radius: 12px;
    color: #121a2a;
    background: #fbfdff;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
body[data-page="contact"] .field textarea {
    min-height: 150px;
    resize: vertical;
}
body[data-page="contact"] .field input:focus,
body[data-page="contact"] .field textarea:focus,
body[data-page="contact"] .field select:focus {
    border-color: #0062fe;
    box-shadow: 0 0 0 4px rgba(0, 98, 254, .12);
}
body[data-page="contact"] .field-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .8rem;
    color: #5e6b80;
}
body[data-page="contact"] .field-checkbox input {
    margin-top: 5px;
}
body[data-page="contact"] .form-note {
    margin-top: 16px;
    color: #5e6b80;
    font-size: .78rem;
}
body[data-page="contact"] .form-status {
    display: none;
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    color: #075d34;
    background: #e7f8ef;
}
body[data-page="contact"] .form-status.show {
    display: block;
}

/* --- Map / process section --- */
body[data-page="contact"] .office-map {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    border-radius: 28px;
    background: radial-gradient(circle at 48% 45%, rgba(0, 98, 254, .36), transparent 35%), linear-gradient(145deg, #061225, #173059);
    box-shadow: 0 24px 70px rgba(5, 20, 47, .16);
}
body[data-page="contact"] .office-map::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .26;
    background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 36px 36px;
}
body[data-page="contact"] .africa-shape {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 260px;
    height: 300px;
    transform: translate(-50%, -50%);
    background: linear-gradient(160deg, #6ba0ff, #0e6fff 48%, #f36434);
    clip-path: polygon(43% 0, 63% 6%, 70% 18%, 82% 24%, 80% 39%, 91% 48%, 79% 60%, 71% 80%, 55% 100%, 43% 85%, 31% 73%, 20% 59%, 6% 46%, 13% 29%, 30% 21%);
    filter: drop-shadow(0 0 28px rgba(0, 98, 254, .65));
    opacity: .88;
}
body[data-page="contact"] .map-pin {
    position: absolute;
    left: 46%;
    top: 49%;
    width: 18px;
    height: 18px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #f36434;
    box-shadow: 0 0 0 9px rgba(243, 100, 52, .2);
}
body[data-page="contact"] .map-label {
    position: absolute;
    left: calc(46% + 30px);
    top: calc(49% - 10px);
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    color: #fff;
    background: rgba(4, 17, 39, .78);
    font-size: .8rem;
}
body[data-page="contact"] .process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    counter-reset: process;
}
body[data-page="contact"] .process-step {
    position: relative;
    padding: 24px 20px;
    border: 1px solid #dce4ef;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(10, 32, 67, .08);
}
body[data-page="contact"] .process-step::before {
    counter-increment: process;
    content: counter(process, decimal-leading-zero);
    display: block;
    margin-bottom: 22px;
    color: #f36434;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
}
body[data-page="contact"] .process-step h3 {
    margin: 0 0 9px;
    font-size: 1rem;
}
body[data-page="contact"] .process-step p {
    margin: 0;
    color: #5e6b80;
    font-size: .8rem;
}

/* --- FAQ section --- */
body[data-page="contact"] .faq-list {
    display: grid;
    gap: 12px;
}
body[data-page="contact"] .faq-item {
    border: 1px solid #dce4ef;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
}
body[data-page="contact"] .faq-question {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 20px 22px;
    border: 0;
    text-align: left;
    color: #0b172b;
    background: transparent;
    font-weight: 650;
}
body[data-page="contact"] .faq-question::after {
    content: '+';
    color: #0062fe;
    font-size: 1.4rem;
}
body[data-page="contact"] .faq-question[aria-expanded="true"]::after {
    content: '−';
}
body[data-page="contact"] .faq-answer {
    display: none;
    padding: 0 22px 22px;
    color: #5e6b80;
    font-size: .9rem;
}
body[data-page="contact"] .faq-answer.open {
    display: block;
}

@media (max-width: 860px) {
    body[data-page="contact"] .contact-grid,
    body[data-page="contact"] .split {
        grid-template-columns: 1fr;
        gap: 44px;
    }
}
@media (max-width: 620px) {
    body[data-page="contact"] .form-grid {
        grid-template-columns: 1fr;
    }
    body[data-page="contact"] .field.full {
        grid-column: auto;
    }
}

/* Shared home-style hero (index + solution ribbon pages) */
.hero h1 .gradient-text {
    color: transparent;
    background: linear-gradient(90deg, #f36434, #ffb35d 45%, #66a2ff 85%);
    -webkit-background-clip: text;
    background-clip: text;
}
.hero .actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}
.hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 650;
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.hero .btn:hover {
    transform: translateY(-2px);
}
.hero .btn-orange {
    color: #fff;
    background: #f36434;
    box-shadow: 0 12px 30px rgba(243, 100, 52, .28);
}
.hero .btn-orange:hover {
    background: #ed5425;
}
.hero .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .06);
}
.hero .btn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .12);
}
.hero .hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 42px;
}
.hero .hero-proof-item {
    min-width: 125px;
}
.hero .hero-proof-item strong {
    display: block;
    font-size: 1.45rem;
    line-height: 1.1;
}
.hero .hero-proof-item span {
    color: #9fb1c9;
    font-size: .77rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}
@media (max-width: 620px) {
    .hero .hero-proof {
        gap: 18px;
    }
}

/* Home "Connected capabilities" section (group-style classes) */
body[data-page="index"] .container {
    width: var(--shell);
    margin-inline: auto;
}
body[data-page="index"] .title-lg {
    margin: 0;
    font-size: clamp(2.3rem, 4.8vw, 4.6rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.04em;
}
body[data-page="index"] .text-blue {
    color: #0062fe;
}
body[data-page="index"] .btn-outline {
    color: #0b172b;
    border-color: #b7c4d6;
    background: rgba(255, 255, 255, .75);
}
body[data-page="index"] .btn-outline:hover {
    border-color: #0062fe;
    color: #0062fe;
}
body[data-page="index"] .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
body[data-page="index"] .stat-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
}
body[data-page="index"] .stat-card strong {
    display: block;
    color: #0b172b;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1;
    letter-spacing: -.05em;
}
body[data-page="index"] .stat-card span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: .88rem;
}
@media (max-width: 960px) {
    body[data-page="index"] .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 620px) {
    body[data-page="index"] .stats-grid {
        grid-template-columns: 1fr;
    }
}
/* Business Units — ecosystem mega-menu (centered so full panel stays visible) */
.nav-item--dropdown:has(> .mega-menu[data-bu2-menu]) {
  position: static;
}
.mega-menu[data-bu2-menu] {
  left: 50%;
  right: auto;
  width: min(1080px, calc(100vw - 32px)) !important;
  max-height: min(78vh, 720px);
  overflow-y: auto;
  grid-template-columns: 1fr !important;
  padding: 28px !important;
  transform: translate(-50%, 10px);
}
.mega-menu[data-bu2-menu].is-open { transform: translate(-50%, 0); }
.bu2-eco { display: grid; grid-template-columns: 290px 1fr; gap: 40px; }
.bu2-eco__intro { display: flex; flex-direction: column; }
.bu2-eco__eyebrow { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; color: #F36434; }
.bu2-eco__title { margin: 16px 0 0; font-size: 23px; line-height: 1.18; font-weight: 800; letter-spacing: -.01em; color: #0f2138; }
.bu2-eco__desc { margin: 16px 0 0; font-size: 13px; line-height: 1.65; color: #5b6b82; }
.bu2-eco__btn { margin-top: auto; align-self: flex-start; padding: 13px 26px; border-radius: 999px; background: #0b1f3a; color: #fff; font-size: 13px; font-weight: 700; transition: background .2s ease, transform .2s ease; }
.bu2-eco__btn:hover { background: #0062fe; transform: translateY(-2px); }
.bu2-eco__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 22px; }
.bu2-card { display: flex; align-items: flex-start; gap: 14px; padding: 11px 14px; border-radius: 14px; transition: background .15s ease, transform .15s ease; }
.bu2-card:hover { background: #f2f6fc; transform: translateY(-1px); }
.bu2-card__num { flex: none; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--bu, #0062fe); color: #fff; font-size: 13px; font-weight: 800; }
.bu2-card__body { display: flex; flex-direction: column; gap: 3px; }
.bu2-card__body strong { font-size: 14px; font-weight: 700; color: #0f2138; }
.bu2-card__body span { font-size: 12px; line-height: 1.5; color: #5b6b82; }
@media (max-width: 1100px) {
  .nav-item--dropdown:has(> .mega-menu[data-bu2-menu]) { position: relative; }
  .mega-menu[data-bu2-menu] {
    width: 100% !important;
    left: auto;
    right: auto;
    max-height: none;
    overflow: visible;
    padding: 4px 8px 18px !important;
    transform: none;
  }
  .mega-menu[data-bu2-menu].is-open { transform: none; }
  .bu2-eco { grid-template-columns: 1fr; gap: 18px; }
  .bu2-eco__title { font-size: 20px; }
  .bu2-eco__btn { align-self: stretch; text-align: center; }
  .bu2-eco__grid { grid-template-columns: 1fr; gap: 2px; }
}

/* Business Units — dark popup theme */
.mega-menu[data-bu2-menu] {
  background: linear-gradient(135deg, #0a1a33 0%, #0c1f3d 55%, #10264b 100%) !important;
  border-color: rgba(255,255,255,.10) !important;
  color: #e6edf7;
}
.bu2-eco__title { color: #ffffff; }
.bu2-eco__desc { color: #c6d3e6; }
.bu2-eco__btn { background: #ffffff; color: #0b1f3a; }
.bu2-eco__btn:hover { background: #e9eef6; color: #0b1f3a; }
.bu2-card:hover { background: rgba(255,255,255,.07); transform: translateY(-1px); }
.bu2-card__body strong { color: #ffffff; }
.bu2-card__body span { color: #aebed3; }
