:root {

    --navy: #04111f;
    --navy2: #061a2c;
    --navy3: #08263f;

    --blue: #009cff;
    --blue2: #00b8ff;

    --text: #091521;
    --muted: #61758a;

    --line: #dce6ef;
    --white: #ffffff;

}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

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

    background: #fff;

    color: var(--text);

    -webkit-font-smoothing: antialiased;

}


a {
    text-decoration: none;
    color: inherit;
}


svg {

    width: 24px;
    height: 24px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;

}


.shell {

    width: min(1460px, calc(100% - 80px));

    margin: 0 auto;

}



/* =====================================================
   HEADER
   ===================================================== */

.site-header {

    position: sticky;
    top: 0;

    z-index: 1000;

    background:
        rgba(4,17,31,.97);

    backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid
        rgba(255,255,255,.08);

}


.nav-shell {

    min-height: 92px;

    display: flex;

    align-items: center;

    gap: 42px;

}


.brand {

    min-width: 300px;

}


.brand-main {

    font-size: 40px;

    line-height: .9;

    font-weight: 900;

    letter-spacing: -2.5px;

}


.brand-white {
    color: #fff;
}


.brand-blue {
    color: var(--blue);
}


.brand-sub {

    display: block;

    margin-top: 9px;

    color: #9aafc1;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 2px;

}


.main-nav {

    flex: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 35px;

}


.main-nav a {

    position: relative;

    color: #eef5fa;

    font-size: 15px;

    font-weight: 600;

    white-space: nowrap;

}


.main-nav a::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -20px;

    height: 2px;

    background: var(--blue);

    transform:
        scaleX(0);

    transition:
        transform .22s ease;

}


.main-nav a:hover::after,
.main-nav a.active::after {

    transform:
        scaleX(1);

}


.main-nav a:hover,
.main-nav a.active {

    color: var(--blue);

}


.remote-button {

    height: 52px;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 0 24px;

    border-radius: 7px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #008ff0,
            #00b4ff
        );

    font-weight: 800;

    box-shadow:
        0 15px 40px
        rgba(0,156,255,.22);

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

}


.remote-button:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 20px 45px
        rgba(0,156,255,.30);

}



/* =====================================================
   HERO
   ===================================================== */

.hero {

    position: relative;

    overflow: hidden;

    min-height: 665px;

    color: #fff;

    background:
        radial-gradient(
            circle at 78% 40%,
            rgba(0,151,255,.18),
            transparent 31%
        ),
        linear-gradient(
            100deg,
            #02101d 0%,
            #041626 45%,
            #06233a 100%
        );

}


.hero-grid-lines {

    position: absolute;

    inset: 0;

    opacity: .12;

    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:
        55px 55px;

}


.hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

}


.hero-glow-a {

    width: 500px;
    height: 500px;

    right: -50px;
    top: 70px;

    background:
        rgba(0,146,255,.18);

}


.hero-glow-b {

    width: 350px;
    height: 350px;

    left: 20%;
    bottom: -220px;

    background:
        rgba(0,105,255,.10);

}


.hero-shell {

    position: relative;

    z-index: 4;

    min-height: 665px;

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    align-items: center;

    gap: 40px;

}


.hero-copy {

    padding:
        75px 0 55px;

}


.hero-kicker {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #a7bdd0;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

}


.hero-kicker > span {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--blue);

    box-shadow:
        0 0 20px
        rgba(0,156,255,1);

}


.hero h1 {

    max-width: 770px;

    margin:
        28px 0 20px;

    font-size:
        clamp(60px, 6vw, 98px);

    line-height: .88;

    letter-spacing: -6px;

}


.hero h1 strong {

    display: block;

    color: var(--blue);

    font-weight: 900;

}


.hero-description {

    max-width: 720px;

    margin: 0;

    color: #d0dde7;

    font-size: 21px;

    line-height: 1.45;

}


.hero-buttons {

    display: flex;

    gap: 20px;

    margin-top: 37px;

}


.primary-action,
.secondary-action {

    min-height: 62px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    padding:
        0 30px;

    border-radius: 8px;

    font-size: 16px;

    font-weight: 800;

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

}


.primary-action {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #008ff0,
            #00b4ff
        );

    box-shadow:
        0 18px 50px
        rgba(0,156,255,.25);

}


.primary-action:hover,
.secondary-action:hover {

    transform:
        translateY(-2px);

}


.secondary-action {

    color: #fff;

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

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

}


.hero-buttons b {

    font-size: 23px;

    font-weight: 400;

}


.hero-benefits {

    max-width: 790px;

    display: grid;

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

    margin-top: 55px;

}


.benefit {

    min-height: 65px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding:
        5px 25px 5px 0;

    border-right:
        1px solid
        rgba(255,255,255,.16);

}


.benefit + .benefit {

    padding-left: 26px;

}


.benefit:last-child {

    border-right: 0;

}


.benefit-icon {

    flex:
        0 0 43px;

    width: 43px;
    height: 43px;

    display: grid;

    place-items: center;

    color: var(--blue);

}


.benefit-icon svg {

    width: 38px;
    height: 38px;

    stroke-width: 1.6;

}


.benefit strong {

    display: block;

    font-size: 14px;

}


.benefit span {

    display: block;

    margin-top: 3px;

    color: #9fb3c5;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

}



/* =====================================================
   GLOBE
   ===================================================== */

.hero-visual {

    position: relative;

    height: 100%;

}


.globe-stage {

    position: relative;

    width: 100%;
    height: 100%;

    min-height: 590px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.globe {

    position: relative;

    z-index: 5;

    width: min(430px, 36vw);
    aspect-ratio: 1 / 1;

    overflow: hidden;

    border:
        1px solid
        rgba(85,202,255,.72);

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(87,213,255,.27),
            rgba(0,121,218,.18) 25%,
            rgba(0,56,107,.40) 52%,
            rgba(1,15,28,.95) 76%
        );

    box-shadow:
        inset -30px -20px 80px
        rgba(0,0,0,.72),

        inset 15px 10px 45px
        rgba(0,185,255,.18),

        0 0 65px
        rgba(0,142,255,.28);

    animation:
        globePulse 6s ease-in-out infinite;

}


@keyframes globePulse {

    0%,100% {
        box-shadow:
            inset -30px -20px 80px rgba(0,0,0,.72),
            inset 15px 10px 45px rgba(0,185,255,.18),
            0 0 55px rgba(0,142,255,.25);
    }

    50% {
        box-shadow:
            inset -30px -20px 80px rgba(0,0,0,.72),
            inset 15px 10px 45px rgba(0,185,255,.23),
            0 0 95px rgba(0,142,255,.38);
    }

}


.globe::before {

    content: "";

    position: absolute;

    inset: 10% 12%;

    border-radius: 50%;

    opacity: .45;

    background-image:

        radial-gradient(
            circle at 67% 34%,
            #4fd0ff 0 2px,
            transparent 3px
        ),

        radial-gradient(
            circle at 54% 42%,
            #39c4ff 0 2px,
            transparent 3px
        ),

        radial-gradient(
            circle at 42% 57%,
            #39c4ff 0 2px,
            transparent 3px
        ),

        radial-gradient(
            circle at 72% 63%,
            #39c4ff 0 2px,
            transparent 3px
        ),

        radial-gradient(
            circle at 30% 33%,
            #39c4ff 0 2px,
            transparent 3px
        );

}


.globe-light {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            120deg,
            rgba(255,255,255,.22),
            transparent 23%,
            transparent 67%,
            rgba(0,144,255,.08)
        );

}


.latitude,
.longitude {

    position: absolute;

    border:
        1px solid
        rgba(51,190,255,.35);

    border-radius: 50%;

}


.latitude {

    left: 7%;

    width: 86%;

}


.lat-1 {
    top: 18%;
    height: 22%;
}


.lat-2 {
    top: 34%;
    height: 30%;
}


.lat-3 {
    top: 48%;
    height: 27%;
}


.lat-4 {
    top: 62%;
    height: 18%;
}


.longitude {

    top: 5%;

    height: 90%;

}


.lon-1 {

    left: 25%;

    width: 50%;

}


.lon-2 {

    left: 39%;

    width: 22%;

}


.lon-3 {

    left: 10%;

    width: 80%;

}


.node {

    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 0 6px #fff,
        0 0 18px #00aaff;

}


.n1 {
    top: 23%;
    left: 61%;
}


.n2 {
    top: 37%;
    left: 29%;
}


.n3 {
    top: 45%;
    left: 71%;
}


.n4 {
    top: 59%;
    left: 45%;
}


.n5 {
    top: 66%;
    left: 71%;
}


.n6 {
    top: 71%;
    left: 25%;
}


.n7 {
    top: 30%;
    left: 44%;
}


.n8 {
    top: 51%;
    left: 19%;
}


.orbit {

    position: absolute;

    z-index: 7;

    width: 520px;
    height: 220px;

    border:
        1px solid
        rgba(89,201,255,.62);

    border-radius: 50%;

    pointer-events: none;

}


.orbit-a {

    transform:
        rotate(17deg);

}


.orbit-b {

    transform:
        rotate(-20deg);

}


.orbit-c {

    width: 500px;

    transform:
        rotate(70deg);

    opacity: .55;

}


.globe-halo {

    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(0,161,255,.12);

}


.halo-one {

    width: 530px;
    height: 530px;

}


.halo-two {

    width: 610px;
    height: 610px;

}


.world-side-text {

    position: absolute;

    right: 0;
    top: 95px;

    display: flex;

    flex-direction: column;

    gap: 5px;

    padding-left: 22px;

    border-left:
        2px solid var(--blue);

    color: #c8d7e3;

    font-size: 11px;

    letter-spacing: 2px;

}


.world-tech-text {

    position: absolute;

    right: 0;
    bottom: 55px;

    display: flex;

    flex-direction: column;

    gap: 6px;

    padding-left: 18px;

    border-left:
        2px solid var(--blue);

    color: #7e9ab0;

    font-size: 10px;

    letter-spacing: 2px;

}



/* =====================================================
   CARDS
   ===================================================== */

.service-preview {

    padding:
        32px 0 52px;

    background:
        linear-gradient(
            180deg,
            #f8fbfd,
            #ffffff
        );

}


.cards-grid {

    display: grid;

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

    gap: 18px;

}


.preview-card {

    min-height: 275px;

    display: flex;

    flex-direction: column;

    padding: 25px;

    border:
        1px solid
        #dbe6ee;

    border-radius: 12px;

    background:
        #fff;

    box-shadow:
        0 8px 30px
        rgba(10,38,60,.025);

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

}


.preview-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(0,156,255,.45);

    box-shadow:
        0 20px 55px
        rgba(5,32,53,.09);

}


.card-top {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

}


.card-icon {

    width: 64px;
    height: 64px;

    display: grid;

    place-items: center;

    border-radius: 9px;

    color: var(--blue);

    background:
        linear-gradient(
            145deg,
            #051727,
            #0a2945
        );

    box-shadow:
        inset 0 0 25px
        rgba(0,160,255,.08);

}


.card-icon svg {

    width: 34px;
    height: 34px;

}


.card-number {

    color: #a0b9cf;

    font-size: 18px;

    font-weight: 800;

}


.preview-card h2 {

    margin:
        25px 0 10px;

    font-size: 19px;

    line-height: 1.15;

    letter-spacing: -.4px;

}


.preview-card p {

    margin: 0;

    color: #5c7590;

    font-size: 15px;

    line-height: 1.45;

}


.card-arrow {

    margin-top: auto;

    padding-top: 24px;

    color: var(--blue);

    font-size: 31px;

    font-weight: 300;

}



/* =====================================================
   INTERNAL PAGES
   ===================================================== */

.internal-page {

    position: relative;

    overflow: hidden;

    min-height:
        calc(100vh - 170px);

    display: flex;

    align-items: center;

    color: #fff;

    background:
        linear-gradient(
            120deg,
            #03101c,
            #06243b
        );

}


.internal-grid {

    position: absolute;

    inset: 0;

    opacity: .13;

    background-image:
        linear-gradient(
            rgba(255,255,255,.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.03) 1px,
            transparent 1px
        );

    background-size:
        54px 54px;

}


.internal-inner {

    position: relative;

    z-index: 2;

    padding:
        100px 0;

}


.internal-kicker {

    color: var(--blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

}


.internal-page h1 {

    margin:
        14px 0;

    font-size:
        clamp(50px, 7vw, 90px);

    letter-spacing: -5px;

}


.internal-page p {

    max-width: 700px;

    margin: 0;

    color: #bdd0df;

    font-size: 20px;

    line-height: 1.55;

}


.coming-soon {

    display: inline-block;

    margin-top: 32px;

    padding:
        11px 17px;

    border:
        1px solid
        rgba(0,156,255,.55);

    border-radius: 4px;

    color: var(--blue);

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;

}



/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {

    padding:
        45px 0 24px;

    color: #9cb0c1;

    background:
        #030d17;

}


.footer-inner {

    display: flex;

    justify-content: space-between;

    gap: 30px;

}


.footer-brand {

    color: #fff;

    font-size: 30px;

    font-weight: 900;

}


.footer-brand span {

    color: var(--blue);

}


.footer-inner p {

    max-width: 500px;

    margin:
        10px 0 0;

    color: #768da1;

    font-size: 13px;

}


.footer-right {

    display: flex;

    gap: 25px;

    align-items: center;

}


.footer-right a {

    font-size: 13px;

}


.footer-right a:hover {

    color: #fff;

}


.copyright {

    margin-top: 30px;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(255,255,255,.07);

    color: #60768a;

    font-size: 11px;

}



/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1250px) {

    .shell {
        width:
            min(100% - 44px, 1460px);
    }


    .main-nav {
        gap: 20px;
    }


    .main-nav a {
        font-size: 13px;
    }


    .brand {
        min-width: 240px;
    }


    .brand-main {
        font-size: 34px;
    }


    .hero h1 {
        font-size: 72px;
    }


    .orbit {
        width: 430px;
    }


    .world-side-text,
    .world-tech-text {
        display: none;
    }

}



@media (max-width: 1050px) {

    .main-nav {
        display: none;
    }


    .nav-shell {
        justify-content: space-between;
    }


    .hero-shell {
        grid-template-columns: 1fr;
    }


    .hero-visual {
        display: none;
    }


    .hero-copy {
        max-width: 850px;
    }


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

}



@media (max-width: 700px) {

    .shell {
        width:
            calc(100% - 28px);
    }


    .site-header {
        position: relative;
    }


    .nav-shell {
        min-height: 72px;
    }


    .brand {
        min-width: 0;
    }


    .brand-main {
        font-size: 27px;
    }


    .brand-sub {
        display: none;
    }


    .remote-button {

        height: 43px;

        padding:
            0 13px;

        font-size: 11px;

    }


    .remote-button svg {
        width: 19px;
        height: 19px;
    }


    .hero {
        min-height: auto;
    }


    .hero-shell {
        min-height: auto;
    }


    .hero-copy {
        padding:
            65px 0 50px;
    }


    .hero-kicker {

        font-size: 9px;

        letter-spacing: 1.6px;

    }


    .hero h1 {

        margin-top: 20px;

        font-size: 52px;

        line-height: .94;

        letter-spacing: -3px;

    }


    .hero-description {

        font-size: 17px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .primary-action,
    .secondary-action {

        width: 100%;

    }


    .hero-benefits {

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

        gap: 16px 0;

        margin-top: 40px;

    }


    .benefit {

        border-right: 0;

        padding:
            0 10px 0 0;

    }


    .benefit + .benefit {

        padding-left: 0;

    }


    .cards-grid {

        grid-template-columns: 1fr;

    }


    .preview-card {

        min-height: 230px;

    }


    .footer-inner {

        flex-direction: column;

    }


    .footer-right {

        flex-wrap: wrap;

    }

}
