:root {
    --bg: #02060d;
    --bg2: #04101d;

    --panel: #071526;
    --panel2: #091b30;

    --text: #f6f9ff;
    --muted: #93a4be;
    --muted2: #647a99;

    --cyan: #13dfff;
    --blue: #087cff;
    --violet: #914aff;

    --line:
        rgba(90, 165, 255, .19);

    --line-strong:
        rgba(37, 179, 255, .48);

    --container: 1440px;
}


* {
    box-sizing: border-box;
}


html {
    background: var(--bg);

    scroll-behavior: smooth;
}


body {
    margin: 0;

    color: var(--text);

    overflow-x: hidden;

    background:
        radial-gradient(
            circle at 75% 8%,
            rgba(0, 97, 255, .12),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #02060d 0%,
            #03101b 54%,
            #02070e 100%
        );

    font-family:
        Inter,
        "Segoe UI",
        system-ui,
        -apple-system,
        sans-serif;

    -webkit-font-smoothing:
        antialiased;
}


body.menu-open {
    overflow: hidden;
}


a {
    color: inherit;

    text-decoration: none;
}


button,
input {
    font: inherit;
}


img {
    display: block;

    max-width: 100%;
}


.cursor-glow {
    position: fixed;

    width: 420px;
    height: 420px;

    margin:
        -210px 0 0
        -210px;

    border-radius: 50%;

    z-index: 2;

    pointer-events: none;

    opacity: 0;

    background:
        radial-gradient(
            circle,
            rgba(0, 138, 255, .075),
            transparent 68%
        );
}


/* HEADER */

.site-header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 100;

    transition:
        .3s ease;
}


.site-header.scrolled {
    background:
        rgba(2, 7, 15, .82);

    backdrop-filter:
        blur(22px);

    border-bottom:
        1px solid var(--line);
}


.nav-shell {
    width:
        min(
            calc(100% - 56px),
            var(--container)
        );

    height: 86px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.brand {
    width: 207px;

    flex:
        0 0 auto;
}


.brand img {
    width: 100%;

    height: 73px;

    object-fit: contain;

    object-position:
        left center;
}


.main-nav {
    display: flex;
    align-items: center;

    gap: 28px;
}


.main-nav > a:not(.nav-cta) {
    position: relative;

    color: #b2bfd1;

    font-size: .83rem;
}


.main-nav > a:hover,
.main-nav > a.active {
    color: #fff;
}


.main-nav > a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -12px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--cyan),
            var(--violet)
        );
}


.search-trigger {
    width: 38px;
    height: 38px;

    padding: 8px;

    border: 0;

    color: #d8e6f8;

    background: transparent;

    cursor: pointer;
}


.search-trigger svg {
    width: 100%;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.6;
}


.nav-cta {
    min-height: 43px;

    padding:
        0 18px;

    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: #fff;

    border:
        1px solid
        rgba(62, 186, 255, .48);

    border-radius: 10px;

    background:
        linear-gradient(
            110deg,
            rgba(0, 143, 255, .39),
            rgba(100, 50, 255, .53)
        );

    box-shadow:
        0 0 26px
        rgba(30, 93, 255, .18);

    font-size: .82rem;
    font-weight: 700;
}


.mobile-toggle {
    display: none;
}


/* SEARCH */

.search-overlay {
    position: fixed;

    inset: 0;

    z-index: 300;

    display: none;

    place-items: start center;

    padding-top: 125px;
}


.search-overlay.open {
    display: grid;
}


.search-backdrop {
    position: absolute;

    inset: 0;

    border: 0;

    background:
        rgba(0, 3, 10, .78);

    backdrop-filter:
        blur(12px);
}


.search-dialog {
    position: relative;

    z-index: 1;

    width:
        min(
            calc(100% - 40px),
            620px
        );

    padding: 20px;

    border:
        1px solid
        var(--line-strong);

    border-radius: 16px;

    background: #07111f;

    box-shadow:
        0 30px 100px
        rgba(0, 0, 0, .55);
}


.search-dialog-top {
    margin-bottom: 15px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: #c9d8eb;

    font-size: .75rem;

    letter-spacing: .18em;

    text-transform: uppercase;
}


.search-dialog-top button {
    width: 35px;
    height: 35px;

    border: 0;

    border-radius: 50%;

    color: #fff;

    background:
        rgba(255,255,255,.06);

    cursor: pointer;
}


.search-dialog input {
    width: 100%;

    padding:
        14px 16px;

    color: #fff;

    border:
        1px solid var(--line);

    border-radius: 10px;

    outline: 0;

    background:
        #020914;
}


.search-results {
    margin-top: 15px;

    display: grid;

    gap: 7px;
}


.search-result {
    padding:
        10px 12px;

    border-radius: 8px;

    color: #aebdd2;

    background:
        rgba(255,255,255,.025);
}


.search-result:hover {
    color: #fff;

    background:
        rgba(23, 139, 255, .1);
}


/* HERO */

.home-hero {
    position: relative;

    min-height: 485px;

    padding:
        112px 28px
        25px;

    overflow: hidden;
}


.home-hero::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 70% 45%,
            rgba(0, 120, 255, .075),
            transparent 33%
        );
}


.hero-inner {
    position: relative;

    width:
        min(
            100%,
            var(--container)
        );

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(410px, .9fr)
        minmax(520px, 1.1fr);

    align-items: center;

    gap: 34px;
}


.eyebrow {
    color: #a5bddc;

    font-size: .64rem;

    font-weight: 700;

    letter-spacing: .38em;
}


.eyebrow span {
    color: var(--cyan);
}


.hero-copy h1 {
    margin:
        17px 0
        16px;

    font-size:
        clamp(
            3.85rem,
            5.2vw,
            5.8rem
        );

    line-height: .88;

    letter-spacing: -.062em;
}


.hero-copy h1 > span {
    display: block;

    color: transparent;

    background:
        linear-gradient(
            100deg,
            #20e9ff,
            #058cff 47%,
            #954bff
        );

    background-clip: text;

    -webkit-background-clip: text;

    white-space: nowrap;
}


.hero-description {
    max-width: 530px;

    margin: 0;

    color: #bbc6d6;

    font-size: .96rem;

    line-height: 1.62;
}


.hero-actions {
    margin-top: 20px;

    display: flex;

    gap: 13px;
}


.button {
    min-height: 43px;

    padding:
        0 19px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 8px;

    font-size: .78rem;

    font-weight: 700;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


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


.button-primary {
    color: #fff;

    background:
        linear-gradient(
            110deg,
            #02cfff,
            #087cff 53%,
            #914aff
        );

    box-shadow:
        0 0 25px
        rgba(0, 126, 255, .28);
}


.button-outline {
    border:
        1px solid
        rgba(184, 213, 255, .34);

    background:
        rgba(4, 11, 24, .68);
}


.play-icon {
    width: 22px;
    height: 22px;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(255,255,255,.7);

    border-radius: 50%;

    font-size: .52rem;
}


.hero-metrics {
    max-width: 540px;

    margin-top: 36px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);
}


.hero-metrics > div {
    min-height: 58px;

    padding-right: 20px;

    border-right:
        1px solid
        rgba(117, 164, 225, .23);
}


.hero-metrics > div + div {
    padding-left: 20px;
}


.hero-metrics > div:last-child {
    border-right: 0;
}


.hero-metrics strong {
    display: block;

    margin-bottom: 4px;

    font-size: 1.35rem;
}


.hero-metrics span {
    color: #a5b6cc;

    font-size: .74rem;
}


.hero-visual {
    position: relative;

    min-height: 390px;
}


.globe-stage {
    position: absolute;

    width:
        min(
            530px,
            82%
        );

    aspect-ratio: 1;

    top: -20px;
    left: 45%;

    transform:
        translateX(-50%);

    isolation: isolate;
}


.globe-shell {
    position: relative;

    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    transition:
        opacity .7s ease;
}


.globe-core {
    width: 75%;

    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 27%,
            #19dcff,
            #0875e8 20%,
            #061b48 53%,
            #01050d 76%
        );
}


.orbit {
    position: absolute;

    inset: 8%;

    border:
        1px solid
        rgba(48, 183, 255, .28);

    border-radius: 50%;
}


.orbit-a {
    transform:
        rotateX(64deg)
        rotateZ(-12deg);
}


.orbit-b {
    inset: 14%;

    transform:
        rotateY(68deg)
        rotateZ(34deg);
}


.orbit-c {
    inset: 20%;

    border-color:
        rgba(135, 75, 255, .29);

    transform:
        rotateX(41deg)
        rotateY(43deg);
}


.globe-stage > canvas {
    position: absolute;

    inset: 0;

    z-index: 3;

    width: 100% !important;
    height: 100% !important;

    display: block;

    cursor: grab;

    touch-action: none;

    opacity: 0;

    filter:
        drop-shadow(
            0 0 28px
            rgba(0, 124, 255, .22)
        );

    transition:
        opacity .65s ease;
}


.globe-stage.webgl-ready > canvas {
    opacity: 1;
}


.globe-stage.webgl-ready .globe-shell {
    opacity: 0;
}


.globe-pedestal {
    position: absolute;

    width: 460px;
    height: 42px;

    left: 45%;
    bottom: 13px;

    transform:
        translateX(-50%);

    z-index: 1;
}


.globe-pedestal span {
    position: absolute;

    left: 50%;

    border:
        1px solid
        rgba(48, 185, 255, .46);

    border-radius: 50%;

    transform:
        translateX(-50%);

    box-shadow:
        0 0 16px
        rgba(0, 138, 255, .18);
}


.globe-pedestal span:nth-child(1) {
    width: 100%;
    height: 29px;

    top: 0;
}


.globe-pedestal span:nth-child(2) {
    width: 84%;
    height: 21px;

    top: 8px;
}


.globe-pedestal span:nth-child(3) {
    width: 66%;
    height: 13px;

    top: 16px;

    border-color:
        rgba(134, 78, 255, .46);
}


.globe-legend {
    position: absolute;

    top: 13px;
    right: -6px;

    width: 135px;

    z-index: 7;
}


.globe-legend strong {
    display: block;

    margin-bottom: 15px;

    padding:
        11px 10px;

    border:
        1px solid
        rgba(102, 156, 223, .2);

    color: #e5eef9;

    font-size: .58rem;

    line-height: 1.45;

    letter-spacing: .22em;

    background:
        rgba(4, 11, 23, .45);
}


.globe-legend ul {
    margin: 0;

    padding: 0;

    list-style: none;
}


.globe-legend li {
    margin: 10px 0;

    display: flex;
    align-items: center;

    gap: 8px;

    color: #a4bad5;

    font-size: .56rem;

    letter-spacing: .05em;
}


.globe-legend li span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--cyan);

    box-shadow:
        0 0 9px
        var(--cyan);
}


.drag-badge {
    position: absolute;

    right: 3px;
    bottom: 5px;

    width: 76px;
    height: 76px;

    z-index: 8;

    display: grid;
    place-content: center;

    border:
        1px solid
        rgba(22, 182, 255, .48);

    border-radius: 50%;

    color: #9ebedf;

    text-align: center;

    font-size: .47rem;

    line-height: 1.45;

    letter-spacing: .22em;

    background:
        rgba(3, 10, 21, .6);
}


.drag-badge span {
    display: block;
}


/* ROUTES */

.route-section {
    position: relative;

    z-index: 10;

    padding:
        0 27px;
}


.route-grid {
    width:
        min(
            100%,
            var(--container)
        );

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;
}


.route-card {
    position: relative;

    height: 300px;

    overflow: hidden;

    border:
        1px solid
        rgba(47, 165, 255, .46);

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #071526,
            #03101e
        );
}


.route-card::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(3, 12, 24, .98) 0%,
            rgba(3, 12, 24, .92) 47%,
            rgba(3, 12, 24, .15) 100%
        );
}


.route-image {
    position: absolute;

    top: 0;
    bottom: 0;

    right: 0;

    width: 48%;

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center;

    opacity: .9;
}


.route-store {
    background-image:
        url("../images/reference/route-store.jpg");
}


.route-custom {
    background-image:
        url("../images/reference/route-custom.jpg");
}


.route-labs {
    background-image:
        url("../images/reference/route-labs.jpg");
}


.route-content {
    position: relative;

    width: 72%;

    height: 100%;

    z-index: 2;

    padding:
        29px 22px;
}


.route-icon {
    margin-bottom: 17px;

    color: var(--cyan);

    font-size: 1.45rem;
}


.route-label {
    color: #29d4ff;

    font-size: .62rem;

    font-weight: 700;

    letter-spacing: .18em;
}


.route-content h2 {
    margin:
        11px 0
        9px;

    font-size: 1.38rem;

    line-height: 1.08;

    letter-spacing: -.025em;
}


.route-content p {
    margin: 0;

    color: #aebdd0;

    font-size: .75rem;

    line-height: 1.45;
}


.route-content > a {
    position: absolute;

    left: 22px;
    bottom: 24px;

    color: #28d4ff;

    font-size: .76rem;

    font-weight: 700;
}


.route-content > a span {
    margin-left: 8px;
}


/* INDUSTRIES */

.industries {
    padding:
        19px 28px
        16px;

    border-bottom:
        1px solid
        rgba(79, 139, 211, .15);
}


.industry-heading,
.section-kicker {
    width:
        min(
            100%,
            var(--container)
        );

    margin:
        0 auto
        15px;

    color: #81a4cd;

    font-size: .55rem;

    font-weight: 700;

    letter-spacing: .35em;
}


.industry-grid {
    width:
        min(
            100%,
            var(--container)
        );

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(9, 1fr);
}


.industry-grid > div {
    min-height: 54px;

    display: grid;

    justify-items: center;

    align-content: center;

    gap: 5px;

    color: #b0c0d4;
}


.industry-symbol {
    color: #6ac6ff;

    font-size: 1rem;
}


.industry-grid strong {
    font-size: .59rem;

    font-weight: 500;
}


/* PRODUCTS */

.products-section {
    padding:
        20px 28px
        28px;
}


.section-top {
    width:
        min(
            100%,
            var(--container)
        );

    margin:
        0 auto
        13px;

    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 30px;
}


.section-top .section-kicker {
    width: auto;

    margin:
        0 0 5px;
}


.section-top h2 {
    margin: 0;

    font-size: 1.65rem;

    letter-spacing: -.03em;
}


.section-link {
    color: #24caff;

    font-size: .65rem;
}


.section-link span {
    margin-left: 6px;
}


.product-grid {
    width:
        min(
            100%,
            var(--container)
        );

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 10px;
}


.product-card {
    overflow: hidden;

    border:
        1px solid
        rgba(87, 148, 220, .28);

    border-radius: 7px;

    background:
        linear-gradient(
            180deg,
            #0b1a2c,
            #071321
        );
}


.product-card > img {
    width: 100%;
    height: 91px;

    object-fit: cover;
}


.product-body {
    padding:
        10px 12px
        11px;
}


.product-body h3 {
    margin: 0 0 4px;

    font-size: .76rem;
}


.product-body p {
    margin: 0;

    color: #a0b1c7;

    font-size: .64rem;

    line-height: 1.4;
}


.product-bottom {
    margin-top: 9px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.product-bottom strong {
    color: #e7f2ff;

    font-size: .72rem;
}


.cart-box {
    width: 26px;
    height: 26px;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(115, 173, 241, .22);

    border-radius: 6px;

    color: #94c9ff;

    background:
        rgba(52, 93, 145, .13);
}


/* INSIGHTS */

.insights-section {
    width:
        min(
            calc(100% - 56px),
            var(--container)
        );

    margin: auto;

    padding:
        7px 0
        29px;

    display: grid;

    grid-template-columns:
        minmax(0, 2fr)
        minmax(285px, 1fr);

    gap: 12px;
}


.insights-main .section-top {
    width: 100%;
}


.insight-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;
}


.insight-card {
    overflow: hidden;

    border:
        1px solid
        rgba(89, 151, 221, .28);

    border-radius: 7px;

    background:
        linear-gradient(
            180deg,
            #0a192b,
            #071321
        );
}


.insight-card img {
    width: 100%;
    height: 81px;

    object-fit: cover;
}


.insight-card > div {
    padding:
        12px;
}


.insight-meta {
    color: #7896ba;

    font-size: .48rem;

    letter-spacing: .13em;
}


.insight-card h3 {
    min-height: 47px;

    margin:
        8px 0
        12px;

    font-size: .75rem;

    line-height: 1.2;
}


.read-link {
    color: #29cfff;

    font-size: .65rem;
}


.future-card {
    position: relative;

    min-height: 235px;

    overflow: hidden;

    align-self: end;

    border:
        1px solid
        rgba(56, 165, 255, .4);

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #0a2d66,
            #081634
        );
}


.future-art {
    position: absolute;

    inset: 0 0 0 52%;

    background-image:
        linear-gradient(
            90deg,
            #0a2d66 0%,
            transparent 65%
        ),
        url("../images/reference/cta-future.jpg");

    background-size:
        cover;

    background-position:
        center right;

    opacity: .94;
}


.future-content {
    position: relative;

    z-index: 2;

    width: 68%;

    padding:
        29px 26px;
}


.future-content h2 {
    margin: 0;

    font-size: 1.7rem;

    line-height: .96;

    letter-spacing: -.04em;
}


.future-content p {
    margin:
        12px 0
        17px;

    color: #c4d4e9;

    font-size: .7rem;
}


.future-content .button {
    min-height: 37px;

    font-size: .67rem;
}


.portfolio-anchor {
    height: 1px;
}


/* FOOTER */

.site-footer {
    padding:
        20px 28px
        15px;

    border-top:
        1px solid
        rgba(82, 148, 226, .18);

    background:
        linear-gradient(
            180deg,
            #030b14,
            #02060d
        );
}


.footer-main,
.footer-bottom,
.footer-signoff {
    width:
        min(
            100%,
            var(--container)
        );

    margin: auto;
}


.footer-main {
    display: grid;

    grid-template-columns:
        205px
        1fr
        auto;

    align-items: center;

    gap: 35px;
}


.footer-brand img {
    width: 170px;
    height: 69px;

    object-fit: contain;
    object-position: left center;
}


.footer-nav {
    display: flex;

    justify-content: center;

    gap: 18px;
}


.footer-nav a {
    color: #8ca0bb;

    font-size: .6rem;
}


.footer-socials {
    display: flex;

    gap: 18px;
}


.footer-socials a {
    color: #fff;

    font-size: .9rem;

    font-weight: 700;
}


.footer-bottom {
    margin-top: 8px;

    padding-top: 13px;

    border-top:
        1px solid
        rgba(83, 140, 207, .12);

    display: flex;

    justify-content: space-between;

    color: #8295ad;

    font-size: .55rem;
}


.footer-bottom > div {
    display: flex;

    gap: 18px;
}


.footer-signoff {
    margin-top: 9px;

    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 7px;

    color: #778ba6;

    font-size: .52rem;
}


.footer-signoff span {
    width: 20px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--cyan),
            var(--violet)
        );
}


/* REVEALS */

.reveal {
    opacity: 0;

    transform:
        translateY(16px);

    transition:
        opacity .65s ease,
        transform .65s ease;
}


.reveal.visible {
    opacity: 1;

    transform: none;
}


/* TABLET */

@media (max-width: 1180px) {

    .main-nav {
        gap: 20px;
    }

    .main-nav > a:not(.nav-cta) {
        font-size: .76rem;
    }

    .hero-inner {
        grid-template-columns:
            minmax(365px, .9fr)
            minmax(480px, 1.1fr);
    }

}


/* MOBILE NAV */

@media (max-width: 960px) {

    .nav-shell {
        width:
            calc(100% - 30px);

        height: 75px;
    }

    .brand {
        width: 175px;
    }

    .brand img {
        height: 63px;
    }

    .mobile-toggle {
        width: 42px;
        height: 42px;

        position: relative;

        z-index: 103;

        display: flex;

        flex-direction: column;

        justify-content: center;
        align-items: center;

        gap: 7px;

        border:
            1px solid var(--line);

        border-radius: 9px;

        background:
            rgba(4, 12, 24, .76);
    }

    .mobile-toggle span {
        width: 18px;
        height: 1px;

        background: #fff;
    }

    .main-nav {
        position: fixed;

        inset: 0;

        padding:
            105px 25px
            35px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        overflow-y: auto;

        background:
            rgba(2, 7, 15, .98);

        transform:
            translateX(100%);

        transition:
            transform .35s ease;
    }

    .main-nav.open {
        transform: none;
    }

    .main-nav > a:not(.nav-cta) {
        padding:
            14px 0;

        border-bottom:
            1px solid var(--line);

        font-size: .98rem;
    }

    .main-nav > a.active::after {
        display: none;
    }

    .search-trigger {
        margin:
            16px 0;

        align-self: flex-start;
    }

    .nav-cta {
        margin-top: 8px;

        justify-content: space-between;
    }

}


/* TABLET CONTENT */

@media (max-width: 900px) {

    .home-hero {
        padding-top: 115px;
    }

    .hero-inner {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-copy h1 > span {
        white-space: normal;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-metrics {
        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }

    .hero-visual {
        min-height: 470px;
    }

    .globe-stage {
        width: 520px;
        max-width: 77vw;

        left: 50%;
    }

    .globe-pedestal {
        left: 50%;
    }

    .globe-legend {
        right: 6%;
    }

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

    .route-card {
        height: 280px;
    }

    .industry-grid {
        grid-template-columns:
            repeat(3, 1fr);

        gap: 13px;
    }

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

    .insights-section {
        grid-template-columns: 1fr;
    }

    .future-card {
        min-height: 270px;
    }

    .footer-main {
        grid-template-columns: 1fr;

        justify-items: center;

        text-align: center;
    }

}


/* PHONE */

@media (max-width: 590px) {

    .home-hero {
        padding:
            105px 18px
            20px;
    }

    .hero-copy h1 {
        font-size:
            clamp(
                3.1rem,
                15vw,
                4.3rem
            );
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-metrics {
        grid-template-columns: 1fr;

        width: 100%;
    }

    .hero-metrics > div,
    .hero-metrics > div + div {
        padding:
            11px 0;

        border-right: 0;

        border-bottom:
            1px solid var(--line);
    }

    .hero-metrics > div:last-child {
        border-bottom: 0;
    }

    .hero-visual {
        min-height: 390px;
    }

    .globe-stage {
        max-width: 94vw;

        top: 0;
    }

    .globe-legend {
        display: none;
    }

    .drag-badge {
        width: 64px;
        height: 64px;

        right: 3%;
    }

    .globe-pedestal {
        width: 86%;
    }

    .route-section {
        padding:
            0 17px;
    }

    .route-card {
        height: 330px;
    }

    .route-content {
        width: 82%;
    }

    .industry-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .products-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .section-top {
        align-items: flex-start;
    }

    .section-top h2 {
        font-size: 1.4rem;
    }

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

    .product-card > img {
        height: 150px;
    }

    .insights-section {
        width:
            calc(100% - 36px);
    }

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

    .insight-card img {
        height: 145px;
    }

    .future-content {
        width: 82%;
    }

    .future-content h2 {
        font-size: 1.55rem;
    }

    .footer-nav {
        justify-content: center;

        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 10px;

        text-align: center;
    }

    .footer-bottom > div {
        justify-content: center;

        flex-wrap: wrap;
    }

    .footer-signoff {
        justify-content: center;
    }

}


@media (
    prefers-reduced-motion:
    reduce
) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration:
            .001ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .001ms !important;
    }

}


/* ==========================================================
   STAGE 2E — APPROVED REFERENCE SCALE / DESKTOP FIDELITY
   ========================================================== */

:root {
    --container: 1740px;
}


/* Wider composition matching approved reference */

@media (min-width: 1181px) {

    .nav-shell,
    .hero-inner,
    .route-grid,
    .industry-heading,
    .industry-grid,
    .section-top,
    .product-grid,
    .insights-section,
    .footer-main,
    .footer-bottom,
    .footer-signoff {

        width:
            min(
                calc(100% - 72px),
                var(--container)
            );

    }


    /* HEADER */

    .nav-shell {
        height: 96px;
    }

    .brand {
        width: 248px;
    }

    .brand img {
        height: 86px;
    }

    .main-nav {
        gap: 32px;
    }

    .main-nav > a:not(.nav-cta) {
        font-size: .88rem;
    }

    .nav-cta {
        min-height: 48px;

        padding:
            0 21px;

        font-size: .88rem;
    }


    /* HERO */

    .home-hero {
        min-height: 610px;

        padding:
            130px 36px
            28px;
    }

    .hero-inner {
        grid-template-columns:
            minmax(500px, .92fr)
            minmax(690px, 1.08fr);

        gap: 18px;
    }

    .hero-copy {
        padding-left: 4px;
    }

    .eyebrow {
        font-size: .7rem;

        letter-spacing: .4em;
    }

    .hero-copy h1 {
        margin:
            19px 0
            22px;

        font-size:
            clamp(
                5.1rem,
                5.65vw,
                6.9rem
            );

        line-height: .89;
    }

    .hero-description {
        max-width: 620px;

        font-size: 1.05rem;

        line-height: 1.68;
    }

    .hero-actions {
        margin-top: 27px;

        gap: 15px;
    }

    .button {
        min-height: 48px;

        padding:
            0 23px;

        font-size: .84rem;
    }

    .hero-metrics {
        max-width: 630px;

        margin-top: 40px;
    }

    .hero-metrics strong {
        font-size: 1.65rem;
    }

    .hero-metrics span {
        font-size: .82rem;
    }


    /* GLOBE */

    .hero-visual {
        min-height: 500px;
    }

    .globe-stage {
        width: min(
            720px,
            90%
        );

        max-width: none;

        top: -60px;
        left: 46%;
    }

    .globe-pedestal {
        width: 620px;
        height: 55px;

        left: 46%;
        bottom: 1px;
    }

    .globe-legend {
        top: 10px;
        right: 4px;

        width: 148px;
    }

    .globe-legend strong {
        font-size: .62rem;

        padding:
            13px 12px;
    }

    .globe-legend li {
        font-size: .6rem;
    }

    .drag-badge {
        width: 86px;
        height: 86px;

        right: 7px;
        bottom: 16px;
    }


    /* THREE MAIN CARDS */

    .route-section {
        padding:
            0 36px;
    }

    .route-grid {
        gap: 18px;
    }

    .route-card {
        height: 350px;

        border-radius: 12px;
    }

    .route-image {
        width: 52%;
    }

    .route-content {
        width: 73%;

        padding:
            34px 29px;
    }

    .route-icon {
        margin-bottom: 21px;

        font-size: 1.7rem;
    }

    .route-label {
        font-size: .68rem;
    }

    .route-content h2 {
        margin:
            13px 0
            12px;

        font-size: 1.65rem;
    }

    .route-content p {
        max-width: 380px;

        font-size: .82rem;

        line-height: 1.52;
    }

    .route-content > a {
        left: 29px;
        bottom: 29px;

        font-size: .82rem;
    }


    /* INDUSTRY STRIP */

    .industries {
        padding:
            26px 36px
            24px;
    }

    .industry-heading {
        margin-bottom: 21px;

        font-size: .61rem;
    }

    .industry-grid > div {
        min-height: 72px;
    }

    .industry-symbol {
        font-size: 1.25rem;
    }

    .industry-grid strong {
        font-size: .66rem;
    }


    /* PRODUCTS */

    .products-section {
        padding:
            30px 36px
            42px;
    }

    .section-top {
        margin-bottom: 19px;
    }

    .section-top h2 {
        font-size: 2rem;
    }

    .section-kicker {
        font-size: .61rem;
    }

    .section-link {
        font-size: .72rem;
    }

    .product-grid {
        gap: 14px;
    }

    .product-card {
        border-radius: 9px;
    }

    .product-card > img {
        height: 132px;
    }

    .product-body {
        padding:
            14px 15px
            15px;
    }

    .product-body h3 {
        font-size: .86rem;
    }

    .product-body p {
        font-size: .7rem;
    }

    .product-bottom {
        margin-top: 13px;
    }

    .product-bottom strong {
        font-size: .76rem;
    }

    .cart-box {
        width: 31px;
        height: 31px;
    }


    /* INSIGHTS */

    .insights-section {
        padding:
            12px 0
            42px;

        grid-template-columns:
            minmax(0, 2.05fr)
            minmax(355px, .95fr);

        gap: 16px;
    }

    .insight-grid {
        gap: 13px;
    }

    .insight-card img {
        height: 112px;
    }

    .insight-card > div {
        padding: 15px;
    }

    .insight-meta {
        font-size: .52rem;
    }

    .insight-card h3 {
        min-height: 60px;

        font-size: .82rem;

        line-height: 1.25;
    }

    .read-link {
        font-size: .7rem;
    }

    .future-card {
        min-height: 306px;
    }

    .future-content {
        padding:
            34px 31px;
    }

    .future-content h2 {
        font-size: 2.15rem;
    }

    .future-content p {
        font-size: .78rem;
    }


    /* FOOTER */

    .site-footer {
        padding:
            27px 36px
            18px;
    }

    .footer-main {
        grid-template-columns:
            235px
            1fr
            auto;
    }

    .footer-brand img {
        width: 205px;
        height: 82px;
    }

    .footer-nav {
        gap: 23px;
    }

    .footer-nav a {
        font-size: .65rem;
    }

}


/* Richer hero atmosphere matching approved concept */

.home-hero::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .65;

    background:
        radial-gradient(
            circle at 54% 21%,
            rgba(90, 185, 255, .55) 0 1px,
            transparent 1.6px
        ),
        radial-gradient(
            circle at 72% 15%,
            rgba(68, 161, 255, .4) 0 1px,
            transparent 1.7px
        ),
        radial-gradient(
            circle at 84% 38%,
            rgba(122, 197, 255, .38) 0 1px,
            transparent 1.6px
        ),
        radial-gradient(
            circle at 60% 70%,
            rgba(83, 182, 255, .36) 0 1px,
            transparent 1.5px
        ),
        radial-gradient(
            circle at 92% 12%,
            rgba(144, 105, 255, .38) 0 1px,
            transparent 1.7px
        );

    background-size:
        190px 160px,
        230px 200px,
        260px 230px,
        300px 240px,
        340px 290px;

    z-index: 0;
}


.hero-inner {
    z-index: 1;
}


/* Stronger but still elegant card borders */

.route-card {
    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.025),

        0 18px 45px
        rgba(0, 0, 0, .13);
}


.route-card:hover {
    border-color:
        rgba(53, 203, 255, .72);

    transform:
        translateY(-3px);

    transition:
        transform .25s ease,
        border-color .25s ease;
}


.product-card,
.insight-card {

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;

}


.product-card:hover,
.insight-card:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(62, 187, 255, .48);

    box-shadow:
        0 20px 45px
        rgba(0, 17, 45, .22);

}


/* Improve anchor positioning with fixed navigation */

#about,
#services,
#store,
#labs,
#featured-products,
#portfolio,
#insights,
#contact {

    scroll-margin-top: 105px;

}


/* Better transition between hero and route cards */

.route-section::before {

    content: "";

    position: absolute;

    width: min(
        calc(100% - 72px),
        var(--container)
    );

    height: 1px;

    left: 50%;
    top: -1px;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0, 147, 255, .24),
            transparent
        );

}


/* Keep the approved composition sensible below desktop */

@media (
    min-width: 961px
)
and (
    max-width: 1180px
) {

    :root {
        --container: 1120px;
    }

}


/* Animated mobile menu button */

.mobile-toggle span {

    transition:
        transform .25s ease;

}


.mobile-toggle.open span:first-child {

    transform:
        translateY(4px)
        rotate(45deg);

}


.mobile-toggle.open span:last-child {

    transform:
        translateY(-4px)
        rotate(-45deg);

}
