:root {
    --navy: #071825;
    --navy-2: #0b2232;
    --ink: #102433;
    --teal: #34c6bb;
    --teal-dark: #13988f;
    --paper: #f3f5f3;
    --white: #fff;
    --line: rgba(16, 36, 51, .14);
    --container: 1280px;
    --ease: cubic-bezier(.22, 1, .36, 1)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Manrope, Arial, sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased
}

body.menu-open {
    overflow: hidden
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 8px;
    left: 8px;
    padding: 12px 16px;
    background: var(--white);
    color: var(--navy);
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform .2s
}

.skip-link:focus {
    transform: translateY(0)
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 4px
}

a {
    color: inherit
}

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

button,
input,
select,
textarea {
    font: inherit
}

.container {
    width: min(calc(100% - 96px), var(--container));
    margin-inline: auto
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 20px;
    left: 0;
    width: 100%;
    padding-inline: 28px;
    transition: top .275s var(--ease), padding-inline .275s var(--ease)
}

.nav-shell {
    width: min(100%, 1380px);
    height: 61px;
    margin: auto;
    padding: 0 15px 0 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 17px;
    background: rgba(7, 24, 37, .32);
    box-shadow: 0 12px 38px rgba(0, 0, 0, .09);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: width .275s var(--ease), padding .275s var(--ease), background .275s var(--ease), border-color .275s var(--ease), border-radius .275s var(--ease), box-shadow .275s var(--ease), backdrop-filter .275s var(--ease), -webkit-backdrop-filter .275s var(--ease)
}

.site-header.scrolled {
    top: 0;
    padding-inline: 0
}

.site-header.scrolled .nav-shell {
    width: 100%;
    padding: 0 max(43px, calc((100% - 1350px) / 2)) 0 max(49px, calc((100% - 1338px) / 2));
    background: #fff;
    border-color: transparent;
    border-radius: 0;
    box-shadow: 0 1px 14px rgba(7, 24, 37, .08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none
}

.brand {
    display: flex;
    align-items: center;
    position: relative;
    width: 290px;
    height: 61px;
    overflow: hidden
}

.brand .nav-logo {
    position: absolute;
    top: -83px;
    left: -26px;
    width: 360px;
    height: auto;
    max-width: none;
    object-fit: contain;
    opacity: 1;
    transition: opacity .275s var(--ease)
}

.brand .nav-logo-light {
    opacity: 0
}

.site-header.scrolled .nav-logo-dark {
    opacity: 0
}

.site-header.scrolled .nav-logo-light {
    opacity: 1
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 37px;
    margin-left: auto;
    margin-right: 38px
}

.desktop-nav a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .03em;
    transition: color .275s var(--ease)
}

.site-header.scrolled .desktop-nav a {
    color: #222
}

.site-header.scrolled .desktop-nav a:hover {
    color: var(--teal)
}

.desktop-nav a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s var(--ease)
}

.desktop-nav a:hover:after {
    transform: scaleX(1);
    transform-origin: left
}

.nav-actions,
.language-switcher {
    display: flex;
    align-items: center
}

.nav-actions {
    gap: 19px
}

.language-switcher {
    gap: 6px;
    color: rgba(255, 255, 255, .48);
    font-size: .7rem;
    font-weight: 700;
    transition: color .275s var(--ease)
}

.lang-btn {
    padding: 2px;
    border: 0;
    background: none;
    color: rgba(255, 255, 255, .48);
    cursor: pointer;
    transition: color .275s var(--ease)
}

.lang-btn.active {
    color: var(--white)
}

.site-header.scrolled .language-switcher,
.site-header.scrolled .lang-btn {
    color: rgba(34, 34, 34, .58)
}

.site-header.scrolled .lang-btn.active {
    color: #222
}

.site-header.scrolled .lang-btn:hover {
    color: var(--teal)
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    min-height: 58px;
    padding: 0 26px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: .79rem;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    transition: transform .35s var(--ease), background .35s, color .35s, border-color .35s
}

.button:hover {
    transform: translateY(-3px)
}

.button i {
    font-style: normal;
    font-size: 1rem
}

.button-small {
    min-height: 42px;
    padding: 0 20px;
    background: var(--teal);
    color: var(--navy);
    font-size: .7rem
}

.button-primary {
    background: var(--teal);
    color: var(--navy)
}

.button-primary:hover {
    background: #62d8d0
}

.button-ghost {
    border-color: rgba(255, 255, 255, .36);
    color: #fff;
    background: rgba(255, 255, 255, .03)
}

.button-ghost:hover {
    background: #fff;
    color: var(--navy)
}

.menu-toggle,
.mobile-menu {
    display: none
}

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy) url("images/backgrounds/hero.jpg") center/cover no-repeat;
    color: #fff
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 17, 28, .99) 0%, rgba(3, 17, 28, .87) 42%, rgba(3, 17, 28, .38) 72%, rgba(3, 17, 28, .28) 100%)
}

.hero-shade:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(3, 17, 28, .65), transparent 40%)
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .13;
    background-image: linear-gradient(rgba(255, 255, 255, .2) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .2) 1px, transparent 1px);
    background-size: 12.5vw 12.5vw;
    mask-image: linear-gradient(90deg, #000, transparent 75%)
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 155px;
    padding-bottom: 90px;
    transform: translateY(60px)
}

.hero-copy {
    max-width: 900px
}

.eyebrow {
    margin: 0 0 28px;
    color: #86d8d2;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase
}

h1 {
    margin: 0;
    font-size: clamp(4.3rem, 7.35vw, 7.6rem);
    font-weight: 400;
    letter-spacing: -.065em;
    line-height: .91
}

h1 span {
    display: block
}

h1 span:last-child {
    color: var(--teal)
}

.hero-intro {
    max-width: 585px;
    margin: 35px 0 41px;
    color: rgba(255, 255, 255, .78);
    font-size: 1.08rem;
    font-weight: 300;
    line-height: 1.87
}

.hero-actions {
    display: flex;
    gap: 12px
}

.scroll-cue {
    position: absolute;
    z-index: 3;
    right: 35px;
    bottom: 41px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, .6);
    font-size: .62rem;
    letter-spacing: .16em;
    text-decoration: none;
    text-transform: uppercase;
    transform: rotate(90deg);
    transform-origin: right
}

.scroll-cue i {
    width: 45px;
    height: 1px;
    background: rgba(255, 255, 255, .45)
}

.section {
    padding: 165px 0
}

.section-label {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 72px;
    color: #536774;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase
}

.section-label span {
    color: var(--teal-dark)
}

.section-label p {
    margin: 0
}

.section-label.light {
    color: rgba(255, 255, 255, .55)
}

.about {
    position: relative;
    background: #fff;
    box-shadow: inset 0 1px rgba(16, 36, 51, .06)
}

.about-layout {
    display: grid;
    grid-template-columns: 1.15fr .7fr;
    gap: 11vw;
    align-items: start
}

.display-title,
.section-heading h2,
.advantage h2,
.network h2,
.contact h2 {
    margin: 0;
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: 1.08
}

.display-title {
    position: relative;
    max-width: 760px;
    font-size: clamp(3.15rem, 5.15vw, 5.35rem)
}

.display-title:after {
    content: "";
    display: block;
    width: 54px;
    height: 2px;
    margin-top: 42px;
    background: var(--teal)
}

.about-copy {
    max-width: 540px;
    padding-top: 14px
}

.about-copy>p {
    margin: 0 0 25px;
    color: #50616d;
    font-size: 1rem;
    line-height: 1.86
}

.about-copy>p:first-child {
    color: var(--ink);
    font-size: 1.18rem;
    line-height: 1.78
}

.text-link {
    display: inline-flex;
    gap: 45px;
    margin-top: 23px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--ink);
    text-decoration: none;
    font-size: .75rem;
    font-weight: 700
}

.text-link i {
    font-style: normal;
    transition: transform .3s
}

.text-link:hover i {
    transform: translate(4px, -4px)
}

.principles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 126px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.principles div {
    position: relative;
    padding: 35px 26px 34px;
    border-right: 1px solid var(--line)
}

.principles div:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 26px;
    width: 24px;
    height: 2px;
    background: var(--teal);
    opacity: .8
}

.principles div:first-child {
    padding-left: 0
}

.principles div:first-child:before {
    left: 0
}

.principles div:last-child {
    border: 0
}

.principles strong,
.principles span {
    display: block
}

.principles strong {
    margin-bottom: 6px;
    font-size: 1.05rem;
    font-weight: 600
}

.principles span {
    color: #6d7b84;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .14em
}

.services {
    background: linear-gradient(180deg, #f3f5f3 0%, #eef2f0 100%);
    box-shadow: inset 0 1px rgba(16, 36, 51, .05)
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 86px
}

.section-heading h2 {
    max-width: 700px;
    font-size: clamp(3rem, 4.7vw, 5rem)
}

.section-heading p {
    max-width: 390px;
    margin: 0 0 8px;
    color: #5b6d77;
    font-size: .91rem;
    line-height: 1.75
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 16px
}

.service-card {
    position: relative;
    min-height: 390px;
    height: 100%;
    padding: 42px 40px;
    border: 1px solid rgba(16, 36, 51, .11);
    background: rgba(255, 255, 255, .58);
    box-shadow: 0 8px 25px rgba(16, 36, 51, .025);
    overflow: hidden;
    transition: color .45s var(--ease), background .45s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s
}

.service-card:before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 0;
    background: var(--navy);
    transition: height .45s var(--ease)
}

.service-card>* {
    position: relative;
    z-index: 1
}

.service-card:hover {
    color: #fff;
    border-color: rgba(7, 24, 37, .9);
    box-shadow: 0 20px 45px rgba(7, 24, 37, .12);
    transform: translateY(-5px)
}

.service-card:hover:before {
    height: 100%
}

.card-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 58px;
    border: 1px solid rgba(19, 152, 143, .22);
    border-radius: 50%;
    background: rgba(52, 198, 187, .06);
    color: var(--teal-dark);
    transition: border-color .4s, background .4s, color .4s
}

.card-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35
}

.service-card:hover .card-icon {
    border-color: rgba(52, 198, 187, .45);
    background: rgba(52, 198, 187, .1);
    color: var(--teal)
}

.card-number {
    position: absolute;
    top: 42px;
    right: 38px;
    color: #819099;
    font-size: .64rem
}

.service-card h3 {
    margin: 0 0 18px;
    font-size: 1.36rem;
    font-weight: 600;
    letter-spacing: -.02em
}

.service-card p {
    max-width: 310px;
    margin: 0;
    color: #60737e;
    font-size: .84rem;
    line-height: 1.78;
    transition: color .4s
}

.service-card:hover p {
    color: rgba(255, 255, 255, .68)
}

.card-arrow {
    position: absolute;
    right: 38px;
    bottom: 35px;
    font-style: normal;
    opacity: 0;
    transform: translate(-8px, 8px);
    transition: .4s
}

.service-card:hover .card-arrow {
    opacity: 1;
    transform: none
}

.advantage {
    position: relative;
    background: var(--navy);
    color: #fff;
    overflow: hidden
}

.advantage:before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    left: -300px;
    bottom: -450px;
    border: 1px solid rgba(52, 198, 187, .15);
    border-radius: 50%;
    box-shadow: 0 0 0 100px rgba(52, 198, 187, .02), 0 0 0 200px rgba(52, 198, 187, .02)
}

.advantage-layout {
    position: relative;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 10vw
}

.advantage-intro {
    position: sticky;
    top: 145px;
    align-self: start
}

.advantage h2 {
    font-size: clamp(3rem, 4.6vw, 5rem)
}

.advantage-intro p {
    max-width: 350px;
    margin-top: 34px;
    padding-left: 20px;
    border-left: 2px solid var(--teal);
    color: rgba(255, 255, 255, .62);
    line-height: 1.75
}

.advantage-blocks {
    display: grid;
    gap: 12px
}

.advantage-card {
    position: relative;
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 20px;
    padding: 35px 32px;
    border: 1px solid rgba(255, 255, 255, .11);
    background: rgba(255, 255, 255, .025);
    transition: transform .4s var(--ease), background .4s, border-color .4s
}

.advantage-card:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
    width: 2px;
    background: var(--teal);
    opacity: 0;
    transition: opacity .4s
}

.advantage-card:hover {
    padding-left: 32px;
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .045);
    transform: translateX(5px)
}

.advantage-card:hover:after {
    opacity: 1
}

.advantage-card>span {
    padding-top: 4px;
    color: var(--teal);
    font-size: .65rem
}

.advantage-card h3 {
    margin: 0 0 13px;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: -.015em
}

.advantage-card p {
    max-width: 490px;
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: .84rem;
    line-height: 1.76
}

.network {
    position: relative;
    background: radial-gradient(circle at 76% 48%, rgba(52, 198, 187, .09), transparent 29%), linear-gradient(145deg, #0b2232 0%, #071825 72%);
    color: #fff;
    overflow: hidden;
    box-shadow: inset 0 1px rgba(255, 255, 255, .05)
}

.network: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: 80px 80px;
    mask-image: linear-gradient(90deg, transparent 15%, #000 100%)
}

.network-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    min-height: 650px
}

.network-copy {
    position: relative;
    z-index: 2
}

.network .section-label {
    color: rgba(255, 255, 255, .55)
}

.network h2 {
    max-width: 570px;
    font-size: clamp(3.3rem, 5vw, 5.4rem)
}

.network-copy>p {
    max-width: 520px;
    margin: 34px 0 44px;
    color: rgba(255, 255, 255, .62);
    line-height: 1.84
}

.network-regions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.network-regions span {
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .025);
    color: rgba(255, 255, 255, .78);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase
}

.globe-wrap {
    position: relative;
    height: 620px
}

.globe {
    position: absolute;
    width: 620px;
    height: 620px;
    right: -10px;
    top: 0
}

.globe svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: rgba(255, 255, 255, .14);
    stroke-width: 1
}

.orbit {
    position: absolute;
    inset: 72px;
    border: 1px solid rgba(52, 198, 187, .3);
    border-radius: 50%;
    transform: rotate(27deg) scaleY(.36)
}

.orbit-two {
    transform: rotate(-34deg) scaleY(.53)
}

.node {
    position: absolute;
    z-index: 2;
    width: 9px;
    height: 9px;
    background: var(--teal);
    border: 2px solid var(--navy-2);
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(52, 198, 187, .12)
}

.n1 {
    top: 31%;
    left: 19%
}

.n2 {
    top: 23%;
    right: 27%
}

.n3 {
    top: 55%;
    right: 12%
}

.n4 {
    bottom: 19%;
    left: 37%
}

.n5 {
    top: 47%;
    left: 48%
}

.globe-caption {
    position: absolute;
    right: 12px;
    bottom: 36px;
    margin: 0;
    color: rgba(255, 255, 255, .46);
    font-size: .63rem;
    letter-spacing: .15em;
    text-transform: uppercase
}

.contact {
    position: relative;
    padding: 165px 0 32px;
    background: linear-gradient(135deg, #061722 0%, #081d2a 100%);
    color: #fff;
    box-shadow: inset 0 1px rgba(255, 255, 255, .06)
}

.contact-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 10vw;
    align-items: start
}

.contact-copy h2 {
    max-width: 590px;
    font-size: clamp(3.2rem, 5vw, 5.4rem)
}

.contact-copy>p:not(.eyebrow) {
    max-width: 470px;
    margin: 30px 0;
    color: rgba(255, 255, 255, .58);
    line-height: 1.75
}

.email-link {
    display: inline-flex;
    gap: 22px;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    text-decoration: none;
    font-size: .8rem
}

.email-link i {
    color: var(--teal);
    font-style: normal
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 27px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .025);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .1)
}

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

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: rgba(255, 255, 255, .58);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .24);
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-size: .92rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    transition: border-color .3s, background .3s;
    resize: vertical
}

.contact-form select {
    cursor: pointer;
    color: rgba(255, 255, 255, .76)
}

.contact-form option {
    background: var(--navy);
    color: #fff
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, .32)
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--teal)
}

.submit-button {
    align-self: flex-start;
    margin-top: 16px;
    min-width: 205px;
    border: 0
}

.turnstile-wrap {
    min-height: 65px;
    overflow: hidden
}

.form-status {
    min-height: 20px;
    margin: 0;
    color: var(--teal);
    font-size: .76rem
}

.contact footer {
    display: grid;
    grid-template-columns: 1.25fr .65fr .85fr;
    align-items: start;
    gap: clamp(48px, 7vw, 110px);
    margin-top: 72px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .12)
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.footer-brand {
    display: block;
    width: 244px
}

.footer-brand .footer-logo {
    width: 244px;
    height: auto;
    object-fit: contain
}

.footer-email,
.footer-nav a,
.footer-meta a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    transition: color .25s var(--ease)
}

.footer-email {
    margin-top: 14px;
    font-size: .7rem
}

@media(min-width:721px) {
    .footer-identity {
        transform: translateY(-36px)
    }

    .footer-brand {
        height: 92px
    }

    .footer-email {
        margin-top: 12px;
        margin-left: 62px
    }

}

.footer-nav,
.footer-meta {
    gap: 6px;
    padding-top: 13px
}

.footer-nav a,
.footer-meta a {
    min-height: 31px;
    display: inline-flex;
    align-items: center;
    font-size: .7rem;
    line-height: 1.4
}

.footer-email:hover,
.footer-nav a:hover,
.footer-meta a:hover {
    color: var(--teal)
}

.footer-contact {
    color: var(--teal) !important;
    font-weight: 700
}

.footer-contact:hover {
    color: #62d8d0 !important
}

.contact footer .footer-tagline,
.contact footer .footer-copyright {
    max-width: 230px;
    margin: 0;
    color: rgba(255, 255, 255, .56);
    font-size: .61rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: .05em
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .85s var(--ease), transform .85s var(--ease)
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@media(max-width:1050px) {
    .container {
        width: min(calc(100% - 56px), var(--container))
    }

    .desktop-nav {
        display: none
    }

    .nav-cta {
        display: none
    }

    .menu-toggle {
        display: flex;
        width: 40px;
        height: 40px;
        padding: 0;
        border: 0;
        background: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 7px
    }

    .menu-toggle span {
        width: 22px;
        height: 1px;
        background: #fff;
        transition: transform .3s, background-color .275s var(--ease)
    }

    .site-header.scrolled .menu-toggle span {
        background: #222
    }

    .menu-toggle[aria-expanded=true] span:first-child {
        transform: translateY(4px) rotate(45deg)
    }

    .menu-toggle[aria-expanded=true] span:last-child {
        transform: translateY(-4px) rotate(-45deg)
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: -1;
        padding: 135px 40px 40px;
        background: rgba(5, 20, 31, .98);
        flex-direction: column;
        gap: 7px;
        opacity: 0;
        visibility: hidden;
        transition: .35s
    }

    .mobile-menu.open {
        display: flex;
        opacity: 1;
        visibility: visible
    }

    .mobile-menu a {
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        color: #fff;
        text-decoration: none;
        font-size: 1.5rem
    }

    .about-layout,
    .advantage-layout,
    .contact-layout {
        gap: 6vw
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .service-card {
        min-height: 370px
    }

    .network-layout {
        grid-template-columns: 1fr 1fr
    }

    .globe {
        right: -180px
    }

    .globe-wrap {
        height: 560px
    }

    .section-heading {
        align-items: start;
        gap: 40px
    }

    .principles {
        grid-template-columns: repeat(2, 1fr)
    }

    .principles div:nth-child(2) {
        border-right: 0
    }

    .principles div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line)
    }

    .principles div:nth-child(3) {
        padding-left: 0
    }

    .principles div:nth-child(3):before {
        left: 0
    }

    .contact-form {
        padding: 34px
    }
}

@media(max-width:720px) {
    .container {
        width: calc(100% - 40px)
    }

    .site-header {
        top: 10px;
        padding-inline: 10px
    }

    .nav-shell {
        height: 61px;
        padding: 0 11px 0 17px;
        border-radius: 14px
    }

    .site-header.scrolled .nav-shell {
        padding-inline: 17px 11px
    }

    .brand {
        width: 215px
    }

    .brand .nav-logo {
        top: -59px;
        left: -28px;
        width: 285px
    }

    .footer-brand {
        width: 183px
    }

    .footer-brand .footer-logo {
        width: 183px
    }

    .nav-actions {
        gap: 9px
    }

    .language-switcher {
        font-size: .64rem
    }

    .hero {
        min-height: 780px
    }

    .hero-grid {
        background-size: 25vw 25vw
    }

    .hero-shade {
        background: linear-gradient(90deg, rgba(3, 17, 28, .98) 0%, rgba(3, 17, 28, .64) 62%, rgba(3, 17, 28, .58) 100%)
    }

    .hero-inner {
        padding-top: 130px;
        padding-bottom: 62px;
        align-items: center;
        transform: translateY(34px)
    }

    .eyebrow {
        margin-bottom: 22px;
        font-size: .61rem;
        line-height: 1.6
    }

    h1 {
        font-size: clamp(3.6rem, 17vw, 5rem);
        line-height: .94
    }

    .hero-intro {
        max-width: 520px;
        margin: 27px 0 31px;
        font-size: .91rem;
        line-height: 1.79
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px
    }

    .hero-actions .button {
        justify-content: space-between
    }

    .scroll-cue {
        display: none
    }

    .section {
        padding: 96px 0
    }

    .section-label {
        margin-bottom: 41px
    }

    .about-layout,
    .advantage-layout,
    .network-layout,
    .contact-layout {
        grid-template-columns: 1fr
    }

    .display-title,
    .section-heading h2,
    .advantage h2,
    .network h2,
    .contact-copy h2 {
        font-size: 2.75rem
    }

    .display-title:after {
        margin-top: 30px
    }

    .about-copy {
        padding-top: 35px
    }

    .principles {
        margin-top: 65px
    }

    .principles div {
        padding: 24px 14px
    }

    .principles div:before {
        left: 14px
    }

    .principles strong {
        font-size: .88rem
    }

    .principles span {
        font-size: .57rem
    }

    .section-heading {
        display: block;
        margin-bottom: 45px
    }

    .section-heading p {
        margin-top: 25px
    }

    .service-grid {
        grid-template-columns: 1fr
    }

    .service-card {
        min-height: 345px;
        padding: 34px 28px
    }

    .card-number {
        top: 35px;
        right: 28px
    }

    .card-icon {
        margin-bottom: 47px
    }

    .advantage-intro {
        position: static;
        margin-bottom: 57px
    }

    .advantage-card {
        grid-template-columns: 44px 1fr;
        gap: 12px;
        padding: 29px 20px
    }

    .advantage-card:hover {
        padding-left: 20px;
        transform: none
    }

    .network-layout {
        min-height: 0
    }

    .globe-wrap {
        height: 390px;
        margin-top: 35px
    }

    .globe {
        width: 440px;
        height: 440px;
        right: 50%;
        top: 0;
        transform: translateX(50%)
    }

    .orbit {
        inset: 52px
    }

    .globe-caption {
        right: 0;
        bottom: -7px
    }

    .network-regions {
        gap: 7px
    }

    .contact {
        padding-top: 96px
    }

    .contact-copy {
        margin-bottom: 55px
    }

    .field-row {
        grid-template-columns: 1fr
    }

    .contact-form {
        gap: 23px;
        padding: 26px 22px
    }

    .submit-button {
        width: 100%;
        justify-content: space-between
    }

    .contact footer {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 56px;
        padding-top: 16px
    }

    .footer-identity {
        align-items: center;
        text-align: center
    }

    .footer-nav,
    .footer-meta {
        width: 100%;
        align-items: center;
        gap: 3px;
        padding-top: 0;
        text-align: center
    }

    .footer-nav a,
    .footer-meta a {
        min-height: 42px;
        justify-content: center
    }

    .contact footer .footer-tagline,
    .contact footer .footer-copyright {
        width: 100%;
        text-align: center
    }

}

@media(max-width:360px) {
    .brand {
        width: 175px
    }

    .brand .nav-logo {
        top: -42px;
        left: -23px;
        width: 232px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    .button,
    .service-card,
    .advantage-card,
    .card-icon,
    .skip-link {
        transition: none
    }
}
