* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #020711;
    color: #e8edf5;
    overflow-x: hidden;
}

a {
    color: inherit;
}


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

header,
.site-header {
    height: 82px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;

    background: rgba(3, 10, 20, 0.88);
    border-bottom: 1px solid rgba(50, 160, 255, 0.12);
    backdrop-filter: blur(14px);
}


/* Support both homepage and newer pages */

.header-inner,
.nav-container {
    max-width: 1250px;
    height: 100%;
    margin: 0 auto;
    padding: 0 30px;

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


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    white-space: nowrap;
}

.logo-mark {
    width: 39px;
    height: 46px;

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

    color: #32aaff;
    font-size: 27px;
    font-weight: bold;

    border: 2px solid #208eea;

    clip-path: polygon(
        0 0,
        100% 0,
        100% 25%,
        65% 25%,
        65% 100%,
        50% 87%,
        35% 100%,
        35% 25%,
        0 25%
    );

    text-shadow: 0 0 15px rgba(40, 160, 255, 0.9);
}

.logo-text {
    font-size: 24px;
    letter-spacing: 5px;
    font-weight: 600;
}


/* =========================================
   DESKTOP NAVIGATION
   ========================================= */

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    position: relative;
    color: #c7d0dc;
    text-decoration: none;
    font-size: 15px;
    padding: 8px 0;
    transition: 0.25s;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #32aaff;
    box-shadow: 0 0 8px #168cff;
    transition: 0.25s;
}

nav a:hover,
nav a.active {
    color: #35aaff;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}


/* =========================================
   MOBILE MENU BUTTONS
   ========================================= */

.menu-button,
.menu-toggle {
    display: none;
    border: 0;
    background: none;
    color: #35aaff;
    font-size: 29px;
    cursor: pointer;
}


/* =========================================
   HOMEPAGE MOBILE MENU
   ========================================= */

.mobile-menu {
    display: none;
}


/* =========================================
   MAIN
   ========================================= */

main {
    padding-top: 82px;
}


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

.hero {
    min-height: 700px;
    position: relative;

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

    text-align: center;
    overflow: hidden;

    background: #020711;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(1, 7, 12, 0.92) 0%,
            rgba(1, 10, 17, 0.72) 45%,
            rgba(1, 8, 14, 0.50) 70%,
            rgba(1, 5, 9, 0.75) 100%
        ),
        url("images/home-server.jpg");

    background-size: cover;
    background-position: center;

    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 5, 10, 0.25) 55%,
            rgba(0, 5, 10, 0.82) 100%
        );

    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 900px;

    padding: 80px 20px 130px;
}

.monogram {
    position: absolute;

    left: 50%;
    top: -130px;

    transform: translateX(-50%);

    font-size: 300px;
    font-weight: 900;

    color: rgba(25, 130, 220, 0.035);

    pointer-events: none;
}

.eyebrow {
    color: #32aaff;
    font-size: 17px;
    letter-spacing: 9px;
    margin-bottom: 17px;
}

.hero h1 {
    position: relative;

    font-size: clamp(55px, 11vw, 115px);
    letter-spacing: 8px;
    line-height: 1;

    color: #f4f7fb;

    text-shadow:
        0 0 2px #fff,
        0 10px 35px rgba(0, 0, 0, 0.7);
}

.glow-line {
    width: 280px;
    max-width: 70%;
    height: 2px;

    margin: 30px auto;

    background: #29a7ff;

    box-shadow:
        0 0 8px #168cff,
        0 0 28px rgba(30, 150, 255, 0.8);
}

.hero-intro {
    color: #c4cedb;
    font-size: 19px;
    margin-bottom: 42px;
}


/* CONSTRUCTION */

.construction {
    max-width: 640px;
    margin: auto;

    display: flex;
    align-items: center;

    gap: 24px;

    padding: 27px 30px;

    text-align: left;

    background:
        linear-gradient(
            135deg,
            rgba(15, 31, 52, 0.9),
            rgba(5, 14, 26, 0.88)
        );

    border: 1px solid rgba(60, 165, 240, 0.28);
    border-radius: 17px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.45),
        inset 0 0 35px rgba(20, 120, 200, 0.035);

    backdrop-filter: blur(10px);
}

.construction-icon {
    flex-shrink: 0;

    width: 70px;
    height: 70px;

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

    border-radius: 15px;

    background: rgba(20, 120, 210, 0.08);

    border: 1px solid rgba(50, 170, 255, 0.3);

    font-size: 38px;

    box-shadow:
        0 0 25px rgba(20, 130, 230, 0.08);
}

.construction h2 {
    color: #35aaff;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.construction p {
    color: #c1ccd9;
    line-height: 1.6;
}


/* =========================================
   GENERAL FEATURE SECTIONS
   ========================================= */

.feature-section {
    position: relative;

    min-height: 420px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    overflow: hidden;

    border-top: 1px solid rgba(70, 140, 210, 0.12);
}

.feature-section.reverse .feature-content {
    order: 2;
}

.feature-section.reverse .feature-visual {
    order: 1;
}

.feature-content {
    max-width: 570px;
    padding: 75px 55px;
}

.feature-label {
    color: #35aaff;
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.feature-content h2 {
    font-size: 36px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.feature-content p {
    color: #aebaca;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 28px;
}

.feature-icon {
    width: 58px;
    height: 58px;

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

    margin-bottom: 20px;

    border-radius: 50%;

    background: rgba(20, 120, 220, 0.08);
    border: 1px solid rgba(50, 160, 240, 0.25);

    color: #32aaff;
    font-size: 27px;

    box-shadow: 0 0 30px rgba(30, 140, 240, 0.08);
}

.feature-visual {
    min-height: 420px;
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(0, 130, 255, 0.2),
            transparent 45%
        ),
        linear-gradient(
            135deg,
            #07182b,
            #020711
        );
}


/* =========================================
   ORIGINAL HOMEPAGE VISUALS
   ========================================= */

.server-visual::before {
    content: "";
    position: absolute;

    width: 75%;
    height: 65%;

    left: 12%;
    top: 18%;

    background:
        repeating-linear-gradient(
            180deg,
            rgba(40, 155, 240, 0.17) 0 2px,
            transparent 2px 25px
        );

    border: 1px solid rgba(40, 160, 250, 0.2);

    box-shadow:
        0 0 50px rgba(20, 120, 220, 0.08);

    transform: perspective(500px) rotateY(-10deg);
}

.server-visual::after {
    content: "";
    position: absolute;

    width: 4px;
    height: 180px;

    background: #2ba8ff;

    left: 42%;
    top: 27%;

    box-shadow:
        0 0 15px #168cff,
        70px 20px 0 #2ba8ff,
        140px -10px 0 #2ba8ff,
        -70px 35px 0 #2ba8ff;

    opacity: 0.8;
}

.earth-visual {
    background:
        radial-gradient(
            circle at 60% 50%,
            rgba(30, 160, 255, 0.25),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #06172a,
            #01050b
        );
}

.earth-visual::before {
    content: "";
    position: absolute;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background:
        radial-gradient(
            circle at 35% 35%,
            #244d70,
            #071b31 50%,
            #01050a 72%
        );

    box-shadow:
        0 0 30px rgba(40, 160, 255, 0.35),
        0 0 90px rgba(20, 120, 230, 0.2);
}

.earth-visual::after {
    content: "";
    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    left: 47%;
    top: 50%;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(50, 170, 255, 0.35);
}

.contact-visual {
    background:
        radial-gradient(
            circle at center,
            rgba(40, 160, 255, 0.18),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #07172a,
            #020711
        );
}

.contact-visual::before {
    content: "@";
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    font-size: 170px;
    font-weight: bold;

    color: rgba(45, 170, 255, 0.7);

    text-shadow:
        0 0 20px rgba(30, 150, 255, 0.8),
        0 0 70px rgba(20, 120, 230, 0.4);
}

.contact-visual::after {
    content: "";
    position: absolute;

    left: 50%;
    top: 50%;

    width: 330px;
    height: 330px;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(50, 170, 255, 0.18);
    border-radius: 50%;

    box-shadow:
        0 0 0 30px rgba(30, 140, 230, 0.025),
        0 0 0 60px rgba(30, 140, 230, 0.018);
}


/* BUTTON */

.button,
.glow-button {
    display: inline-block;

    padding: 12px 23px;

    border: 1px solid #208fea;
    border-radius: 5px;

    color: #35aaff;

    text-decoration: none;

    font-size: 14px;
    letter-spacing: 0.5px;

    transition: 0.25s;
}

.button:hover,
.glow-button:hover {
    color: white;

    background: #168cff;

    box-shadow:
        0 0 20px rgba(30, 150, 255, 0.35);
}


/* =========================================
   FOOTER - HOMEPAGE + NEW PAGES
   ========================================= */

footer,
.site-footer {
    width: 100%;
    min-height: 105px;

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

    text-align: center;

    background: #030a13;

    border-top: 1px solid rgba(70, 140, 210, 0.12);
}

.footer-text {
    color: #667487;
    font-size: 13px;
}


/* New page footer */

.site-footer {
    display: block;
    min-height: 0;
}

.site-footer .footer-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    padding: 45px 30px 25px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.site-footer .footer-inner > div {
    width: 100%;
    text-align: center;
}

.site-footer .footer-inner strong {
    display: block;
    text-align: center;
    margin-bottom: 8px;
}

.site-footer .footer-inner p {
    display: block;
    text-align: center;
    margin: 0;
}

.site-footer .footer-links {
    width: 100%;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    gap: 30px;

    margin-top: 25px;
}

.site-footer .footer-links a {
    display: block;
    text-decoration: none;
    text-align: center;
}

.site-footer .footer-bottom {
    width: 100%;

    padding: 20px;

    text-align: center;

    border-top: 1px solid rgba(70, 140, 210, 0.08);

    color: #667487;
    font-size: 13px;
}


/* =========================================
   DEMO / BASIC PAGES
   ========================================= */

.page {
    min-height: calc(100vh - 187px);

    max-width: 1100px;

    margin: auto;

    padding: 120px 25px 80px;
}

.page-title {
    text-align: center;
    margin-bottom: 65px;
}

.page-title h1 {
    font-size: clamp(48px, 8vw, 85px);
    letter-spacing: 6px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    padding: 32px;

    background:
        linear-gradient(
            145deg,
            rgba(13, 28, 47, 0.9),
            rgba(4, 12, 22, 0.9)
        );

    border: 1px solid rgba(60, 160, 235, 0.2);

    border-radius: 16px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.card:hover {
    border-color: rgba(60, 170, 250, 0.45);
    transform: translateY(-4px);
    transition: 0.25s;
}

.card-icon {
    font-size: 38px;
    margin-bottom: 20px;
}

.card h2 {
    color: #35aaff;
    margin-bottom: 15px;
}

.card p {
    color: #aebaca;
    line-height: 1.7;
}


/* =========================================
   SERVICES PAGE
   ========================================= */

.page-hero {
    min-height: 650px;
    padding: 140px 8% 90px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 60px;

    position: relative;
    overflow: hidden;
}

.services-hero {
    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(0, 180, 255, 0.14),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #050912 0%,
            #081321 55%,
            #03060b 100%
        );
}

.page-hero-content {
    position: relative;
    z-index: 5;
    max-width: 650px;
}

.page-hero h1 {
    margin: 15px 0 25px;

    font-size: clamp(42px, 5vw, 76px);
    line-height: 0.98;
    letter-spacing: -2px;
}

.page-hero h1 span {
    display: block;
    color: #4cc9ff;

    text-shadow:
        0 0 30px rgba(76, 201, 255, 0.35);
}

.page-hero p {
    max-width: 540px;

    font-size: 19px;
    line-height: 1.7;

    color: #aebdca;
}


/* Services server visual */

.large-server {
    position: relative;

    height: 470px;

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

.server-rack {
    width: 230px;
    height: 390px;

    padding: 25px 20px;

    border: 1px solid rgba(76, 201, 255, 0.45);
    border-radius: 10px;

    background:
        linear-gradient(
            145deg,
            rgba(20, 35, 50, 0.95),
            rgba(3, 9, 16, 0.98)
        );

    box-shadow:
        0 0 35px rgba(0, 160, 255, 0.16),
        inset 0 0 30px rgba(0, 160, 255, 0.06);

    transform: perspective(900px) rotateY(-12deg);

    z-index: 3;
}

.server-rack span {
    display: block;

    height: 42px;

    margin-bottom: 18px;

    border-radius: 5px;

    border: 1px solid rgba(76, 201, 255, 0.25);

    background:
        linear-gradient(
            90deg,
            rgba(15, 28, 40, 0.95),
            rgba(25, 48, 65, 0.8)
        );

    position: relative;
}

.server-rack span::after {
    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    right: 14px;
    top: 17px;

    border-radius: 50%;

    background: #4cc9ff;

    box-shadow: 0 0 12px #4cc9ff;
}

.rack-two {
    position: absolute;

    margin-left: 190px;

    transform:
        perspective(900px)
        rotateY(-12deg)
        scale(0.88);

    opacity: 0.65;

    z-index: 2;
}

.server-glow {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(0, 160, 255, 0.12);

    filter: blur(70px);

    z-index: 1;
}


/* Services heading */

.content-section {
    padding: 110px 8%;
    background: #03070d;
}

.section-heading {
    max-width: 760px;

    margin: 0 auto 70px;

    text-align: center;
}

.section-heading h2 {
    margin: 15px 0 20px;

    font-size: clamp(36px, 4vw, 60px);

    line-height: 1;
}

.section-heading h2 span {
    color: #4cc9ff;
}

.section-heading p {
    color: #9eabb7;
    line-height: 1.7;
}


/* Service cards */

.service-grid {
    max-width: 1200px;

    margin: auto;

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

    gap: 24px;
}

.service-card {
    position: relative;

    min-height: 245px;

    padding: 32px;

    border: 1px solid rgba(76, 201, 255, 0.14);

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(15, 27, 40, 0.9),
            rgba(5, 11, 18, 0.9)
        );

    box-shadow:
        inset 0 0 30px rgba(0, 140, 255, 0.025);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;

    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(76, 201, 255, 0.5);

    box-shadow:
        0 15px 40px rgba(0, 120, 255, 0.12);
}

.service-icon {
    color: #4cc9ff;

    font-size: 13px;

    letter-spacing: 3px;

    margin-bottom: 25px;
}

.service-card h3 {
    margin: 0 0 14px;

    font-size: 23px;
}

.service-card p {
    margin: 0;

    color: #9caab7;

    line-height: 1.65;

    font-size: 15px;
}

.card-line {
    position: absolute;

    left: 32px;
    bottom: 20px;

    width: 45px;
    height: 2px;

    background: #4cc9ff;

    box-shadow:
        0 0 12px rgba(76, 201, 255, 0.7);
}


/* Services network feature */

.feature-section .feature-visual {
    position: relative;
}

.network-core {
    width: 100px;
    height: 100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #8ee4ff 0%,
            #4cc9ff 25%,
            rgba(0, 120, 255, 0.2) 55%,
            transparent 70%
        );

    box-shadow:
        0 0 70px rgba(76, 201, 255, 0.5);

    z-index: 3;
}

.network-ring {
    position: absolute;

    border: 1px solid rgba(76, 201, 255, 0.25);

    border-radius: 50%;

    animation:
        rotateNetwork 12s linear infinite;
}

.ring-one {
    width: 180px;
    height: 180px;
}

.ring-two {
    width: 280px;
    height: 280px;

    animation-duration: 18s;
}

.ring-three {
    width: 390px;
    height: 390px;

    animation-duration: 25s;
}

.network-node {
    position: absolute;

    width: 10px;
    height: 10px;

    background: #4cc9ff;

    border-radius: 50%;

    box-shadow: 0 0 18px #4cc9ff;
}

.node-one {
    top: 18%;
    left: 35%;
}

.node-two {
    top: 30%;
    right: 18%;
}

.node-three {
    bottom: 22%;
    left: 23%;
}

.node-four {
    bottom: 15%;
    right: 35%;
}

@keyframes rotateNetwork {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* Services feature content */

.feature-content {
    max-width: 600px;
}

.feature-content h2 {
    margin: 15px 0 25px;

    font-size: clamp(40px, 4vw, 65px);

    line-height: 1;
}

.feature-content h2 span {
    color: #4cc9ff;
}

.feature-content p {
    color: #a4b0bb;

    line-height: 1.8;

    margin-bottom: 35px;
}


/* =========================================
   ABOUT PAGE
   ========================================= */

.about-hero {
    min-height: 700px;

    padding: 140px 8% 90px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 50px;

    overflow: hidden;

    position: relative;

    background:
        radial-gradient(
            circle at 70% 50%,
            rgba(0, 150, 255, 0.13),
            transparent 35%
        ),
        radial-gradient(
            circle at 20% 30%,
            rgba(0, 80, 160, 0.08),
            transparent 30%
        ),
        #02050a;
}

.about-hero-content {
    position: relative;
    z-index: 5;
    max-width: 650px;
}

.about-hero h1 {
    margin: 18px 0 25px;

    font-size: clamp(44px, 5vw, 76px);

    line-height: 0.98;

    letter-spacing: -2px;
}

.about-hero h1 span {
    display: block;

    color: #4cc9ff;

    text-shadow:
        0 0 35px rgba(76, 201, 255, 0.35);
}

.about-hero p {
    max-width: 540px;

    color: #aab7c3;

    font-size: 19px;

    line-height: 1.7;
}


/* About Earth */

.about-hero .earth-visual {
    position: relative;

    height: 520px;

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

    background: transparent;
}

.earth {
    width: 370px;
    height: 370px;

    border-radius: 50%;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 35% 30%,
            #347ca0 0%,
            #164766 35%,
            #061622 72%,
            #02060b 100%
        );

    box-shadow:
        -35px -15px 55px rgba(90, 190, 255, 0.14),
        25px 20px 70px rgba(0, 0, 0, 0.8),
        0 0 90px rgba(0, 130, 255, 0.18);

    transform: rotate(-12deg);

    z-index: 3;
}

.earth::after {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: 50%;

    background:
        linear-gradient(
            110deg,
            transparent 35%,
            rgba(0, 0, 0, 0.5) 75%
        );
}

.earth-land {
    position: absolute;

    background: rgba(104, 184, 131, 0.72);

    filter: blur(1px);
}

.land-one {
    width: 150px;
    height: 90px;

    top: 65px;
    left: 65px;

    border-radius: 55% 45% 60% 35%;

    transform: rotate(-25deg);
}

.land-two {
    width: 100px;
    height: 155px;

    top: 145px;
    left: 185px;

    border-radius: 45% 60% 40% 65%;

    transform: rotate(25deg);
}

.land-three {
    width: 85px;
    height: 55px;

    bottom: 55px;
    left: 105px;

    border-radius: 50%;

    transform: rotate(-15deg);
}

.earth-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background: rgba(0, 160, 255, 0.15);

    filter: blur(55px);
}

.earth-orbit {
    position: absolute;

    width: 470px;
    height: 170px;

    border: 1px solid rgba(76, 201, 255, 0.22);

    border-radius: 50%;

    transform: rotate(-22deg);

    z-index: 4;
}

.orbit-two {
    width: 540px;
    height: 240px;

    transform: rotate(35deg);

    border-color: rgba(76, 201, 255, 0.1);
}


/* About intro */

.about-intro {
    padding: 110px 8%;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 90px;

    align-items: center;

    background: #03070d;
}

.about-intro-text {
    max-width: 700px;
}

.about-intro h2,
.approach-heading h2,
.about-cta h2 {
    margin: 15px 0 30px;

    font-size: clamp(40px, 4vw, 62px);

    line-height: 1;
}

.about-intro h2 span,
.approach-heading h2 span,
.about-cta h2 span {
    color: #4cc9ff;
}

.about-intro-text p {
    color: #9eabb7;

    line-height: 1.8;

    margin-bottom: 20px;
}


/* Glass stats */

.about-stats {
    display: grid;
    gap: 18px;
}

.glass-stat {
    padding: 28px;

    border: 1px solid rgba(76, 201, 255, 0.14);

    border-radius: 14px;

    background: rgba(15, 28, 42, 0.55);

    backdrop-filter: blur(12px);

    box-shadow:
        inset 0 0 25px rgba(76, 201, 255, 0.025);
}

.glass-stat strong {
    display: block;

    color: #4cc9ff;

    font-size: 13px;

    letter-spacing: 3px;

    margin-bottom: 12px;
}

.glass-stat span {
    display: block;

    font-size: 20px;

    font-weight: 700;

    margin-bottom: 8px;
}

.glass-stat p {
    margin: 0;

    color: #8998a5;
}


/* About approach */

.about-approach {
    padding: 110px 8%;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(0, 140, 255, 0.08),
            transparent 35%
        ),
        #050a11;
}

.approach-heading {
    max-width: 700px;

    margin: 0 auto 65px;

    text-align: center;
}

.approach-heading p {
    color: #9eabb7;
}

.approach-grid {
    max-width: 1150px;

    margin: auto;

    display: grid;

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

    gap: 25px;
}

.approach-card {
    padding: 35px;

    min-height: 230px;

    border: 1px solid rgba(76, 201, 255, 0.13);

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(15, 28, 42, 0.75),
            rgba(4, 9, 15, 0.9)
        );

    transition: 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-7px);

    border-color: rgba(76, 201, 255, 0.45);
}

.approach-number {
    color: #4cc9ff;

    letter-spacing: 3px;

    font-size: 12px;

    margin-bottom: 30px;
}

.approach-card h3 {
    font-size: 25px;

    margin-bottom: 14px;
}

.approach-card p {
    color: #96a4b0;

    line-height: 1.7;
}


/* About CTA */

.about-cta {
    min-height: 430px;

    padding: 100px 8%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        radial-gradient(
            circle,
            rgba(0, 140, 255, 0.13),
            transparent 45%
        ),
        #02060b;
}

.about-cta p {
    color: #9eabb7;

    margin-bottom: 30px;
}


/* =========================================
   DESKTOP FOOTER - FORCE ONE CENTRED BLOCK
   ========================================= */

@media (min-width: 901px) {

    .site-footer .footer-inner {
        align-items: center;
        text-align: center;
    }

    .site-footer .footer-inner > div {
        text-align: center;
    }

    .site-footer .footer-links {
        flex-direction: row;
        justify-content: center;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 900px) {

    header,
    .site-header {
        height: 70px;
    }

    .header-inner,
    .nav-container {
        width: 100%;
        max-width: none;

        height: 70px;

        padding: 0 18px;
    }

    .logo-mark {
        width: 34px;
        height: 40px;

        font-size: 22px;
    }

    .logo-text {
        font-size: 19px;
        letter-spacing: 3px;
    }


    /* Hide desktop navigation */

    header > .header-inner > nav,
    .site-header .nav-container > nav {
        display: none;
    }


    /* Show hamburger */

    .menu-button,
    .menu-toggle {
        display: flex !important;

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

        width: 44px;
        height: 44px;

        margin: 0;
        padding: 0;

        border: 0;

        background: transparent;

        color: #35aaff;

        font-size: 29px;

        cursor: pointer;

        z-index: 2000;
    }


    /* Homepage mobile menu */

    .mobile-menu {
        position: absolute;

        top: 70px;

        left: auto;
        right: 18px;

        width: 220px;

        display: none;

        padding: 8px 0;

        background: rgba(2, 9, 18, 0.98);

        border: 1px solid rgba(50, 160, 240, 0.2);

        border-radius: 10px;

        box-shadow:
            0 15px 40px rgba(0, 0, 0, 0.4);
    }

    .mobile-menu.open {
        display: block;
    }

    .mobile-menu a {
        display: block;

        padding: 15px 20px;

        color: #d8e0eb;

        text-decoration: none;

        text-align: right;

        border-bottom: 1px solid rgba(80, 150, 220, 0.08);
    }

    .mobile-menu a:last-child {
        border-bottom: 0;
    }

    .mobile-menu a:hover {
        color: #35aaff;
    }


    /* New Services/About mobile navigation */

    .site-header .nav-container {
        position: relative;
    }

    .site-header .nav-container > nav {
        position: absolute;

        top: 70px;

        left: auto;
        right: 18px;

        width: 220px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 8px 0;

        background: rgba(2, 9, 18, 0.98);

        border: 1px solid rgba(50, 160, 240, 0.2);

        border-radius: 10px;

        box-shadow:
            0 15px 40px rgba(0, 0, 0, 0.4);
    }

    .site-header .nav-container > nav.open {
        display: flex !important;
    }

    .site-header .nav-container > nav a {
        width: 100%;

        padding: 15px 20px;

        text-align: right;

        border-bottom: 1px solid rgba(80, 150, 220, 0.08);
    }

    .site-header .nav-container > nav a:last-child {
        border-bottom: 0;
    }


    /* Main */

    main {
        padding-top: 70px;
    }


    /* Homepage */

    .hero {
        min-height: 650px;
    }

    .hero-content {
        padding: 70px 18px 100px;
    }

    .monogram {
        font-size: 160px;
        top: -35px;
    }

    .eyebrow {
        font-size: 13px;
        letter-spacing: 5px;
    }

    .hero h1 {
        font-size: clamp(44px, 15vw, 72px);
        letter-spacing: 4px;
    }

    .hero-intro {
        font-size: 16px;
        line-height: 1.6;
    }

    .construction {
        padding: 22px;
        gap: 17px;
    }

    .construction-icon {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .construction h2 {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .construction p {
        font-size: 14px;
    }


    /* General feature */

    .feature-section,
    .feature-section.reverse {
        grid-template-columns: 1fr;
    }

    .feature-content,
    .feature-section.reverse .feature-content {
        order: 1;

        padding: 65px 25px;

        text-align: center;
    }

    .feature-visual,
    .feature-section.reverse .feature-visual {
        order: 2;

        min-height: 300px;
    }

    .feature-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-content h2 {
        font-size: 29px;
    }


    /* Homepage visual sizes */

    .earth-visual::before {
        width: 240px;
        height: 240px;
    }

    .earth-visual::after {
        width: 260px;
        height: 260px;
    }

    .contact-visual::before {
        font-size: 125px;
    }

    .contact-visual::after {
        width: 260px;
        height: 260px;
    }


    /* Services */

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

        min-height: auto;

        padding: 130px 7% 60px;

        text-align: center;
    }

    .page-hero-content {
        margin: auto;
    }

    .page-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .large-server {
        height: 380px;
        margin-top: 20px;
    }

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


    /* Services feature */

    .feature-section {
        text-align: center;
    }

    .feature-content {
        margin: auto;
    }

    .feature-visual {
        height: 360px;
    }


    /* About */

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

        text-align: center;

        padding: 130px 7% 60px;
    }

    .about-hero-content {
        margin: auto;
    }

    .about-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero .earth-visual {
        height: 430px;
    }

    .about-intro {
        grid-template-columns: 1fr;

        gap: 55px;
    }

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


    /* Footer */

    footer {
        text-align: center;
    }

    .site-footer .footer-inner {
        width: 100%;

        padding: 40px 20px 25px;

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        text-align: center;

        gap: 0;
    }

    .site-footer .footer-inner > div {
        width: 100%;

        text-align: center;
    }

    .site-footer .footer-inner strong {
        width: 100%;

        text-align: center;

        margin-bottom: 8px;
    }

    .site-footer .footer-inner p {
        width: 100%;

        text-align: center;
    }

    .site-footer .footer-links {
        width: 100%;

        display: flex;

        flex-direction: row;

        flex-wrap: wrap;

        align-items: center;

        justify-content: center;

        gap: 12px 25px;

        margin-top: 25px;
    }

    .site-footer .footer-links a {
        width: auto;

        text-align: center;

        padding: 0;
    }

    .site-footer .footer-bottom {
        width: 100%;

        padding: 18px 20px;

        text-align: center;
    }
}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 600px) {

    .header-inner,
    .nav-container {
        padding: 0 15px;
    }

    .logo {
        gap: 9px;
    }

    .logo-text {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .logo-mark {
        width: 32px;
        height: 38px;
        font-size: 20px;
    }


    /* Services */

    .page-hero {
        padding-left: 5%;
        padding-right: 5%;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    .large-server {
        height: 330px;
    }

    .server-rack {
        width: 180px;
        height: 310px;

        padding: 18px 15px;
    }

    .server-rack span {
        height: 32px;

        margin-bottom: 12px;
    }

    .server-rack span::after {
        top: 12px;
    }

    .rack-two {
        margin-left: 135px;
    }

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

    .service-card {
        min-height: 220px;
    }

    .feature-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .ring-three {
        width: 300px;
        height: 300px;
    }

    .ring-two {
        width: 220px;
        height: 220px;
    }

    .ring-one {
        width: 150px;
        height: 150px;
    }


    /* About */

    .about-hero h1 {
        font-size: 42px;
    }

    .earth {
        width: 280px;
        height: 280px;
    }

    .earth-glow {
        width: 330px;
        height: 330px;
    }

    .earth-orbit {
        width: 350px;
        height: 130px;
    }

    .orbit-two {
        width: 390px;
        height: 170px;
    }

    .about-intro,
    .about-approach {
        padding-left: 5%;
        padding-right: 5%;
    }


    /* Footer */

    .site-footer .footer-links {
        gap: 12px 18px;
    }
}
/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-hero {
    min-height: 620px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px 80px;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    left: -250px;
    top: 50px;
    background: radial-gradient(
        circle,
        rgba(0, 180, 255, 0.16),
        transparent 65%
    );
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.eyebrow,
.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #36cfff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 22px;
}

.eyebrow span,
.section-label span {
    width: 28px;
    height: 2px;
    background: #36cfff;
    box-shadow: 0 0 12px rgba(54, 207, 255, 0.8);
}

.contact-hero h1 {
    margin: 0;
    font-size: clamp(4rem, 8vw, 7.5rem);
    line-height: 0.88;
    letter-spacing: -4px;
    font-weight: 800;
}

.contact-hero h1 span {
    color: #32c9ff;
    text-shadow:
        0 0 20px rgba(50, 201, 255, 0.4),
        0 0 60px rgba(50, 201, 255, 0.15);
}

.contact-hero p {
    max-width: 540px;
    margin-top: 32px;
    color: #9baec0;
    font-size: 1.1rem;
    line-height: 1.8;
}


/* NETWORK VISUAL */

.contact-network {
    width: 430px;
    height: 430px;
    position: relative;
    flex-shrink: 0;
}

.network-ring {
    position: absolute;
    border: 1px solid rgba(45, 195, 255, 0.3);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.ring-one {
    width: 170px;
    height: 170px;
}

.ring-two {
    width: 290px;
    height: 290px;
}

.ring-three {
    width: 410px;
    height: 410px;
    border-style: dashed;
    animation: network-spin 25s linear infinite;
}

.network-core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        #5cddff 0%,
        #087da9 35%,
        #03141e 70%
    );
    box-shadow:
        0 0 25px rgba(44, 205, 255, 0.8),
        0 0 80px rgba(44, 205, 255, 0.35);
}

.network-core span {
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    top: 20px;
    left: 20px;
    box-shadow: 0 0 15px white;
}

.network-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #39d2ff;
    border-radius: 50%;
    box-shadow:
        0 0 10px #39d2ff,
        0 0 25px rgba(57, 210, 255, 0.7);
}

.node-one {
    top: 20px;
    left: 205px;
}

.node-two {
    right: 25px;
    top: 205px;
}

.node-three {
    bottom: 35px;
    left: 110px;
}

.node-four {
    left: 30px;
    top: 120px;
}

.network-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(55, 210, 255, 0.8),
        transparent
    );
    transform-origin: left center;
}

.line-one {
    width: 185px;
    left: 215px;
    top: 215px;
    transform: rotate(-90deg);
}

.line-two {
    width: 175px;
    left: 215px;
    top: 215px;
    transform: rotate(0deg);
}

.line-three {
    width: 145px;
    left: 215px;
    top: 215px;
    transform: rotate(145deg);
}

.line-four {
    width: 180px;
    left: 215px;
    top: 215px;
    transform: rotate(215deg);
}

@keyframes network-spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/* CONTACT SECTION */

.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 120px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
}

.glass-panel {
    background: linear-gradient(
        145deg,
        rgba(15, 32, 45, 0.82),
        rgba(5, 14, 22, 0.9)
    );
    border: 1px solid rgba(63, 191, 255, 0.18);
    border-radius: 18px;
    padding: 42px;
    box-shadow:
        inset 0 1px rgba(255,255,255,0.03),
        0 20px 60px rgba(0,0,0,0.25);
    backdrop-filter: blur(15px);
}

.glass-panel h2 {
    font-size: 2.4rem;
    line-height: 1.15;
    margin: 0 0 20px;
}

.glass-panel h2 strong {
    display: block;
    color: #38cfff;
}

.glass-panel > p {
    color: #91a4b5;
    line-height: 1.8;
    margin-bottom: 35px;
}


/* CONTACT DETAILS */

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #39d2ff;
    background: rgba(40, 192, 255, 0.08);
    border: 1px solid rgba(40, 192, 255, 0.15);
    font-size: 1.2rem;
}

.contact-detail small {
    display: block;
    color: #657b8d;
    font-size: 0.65rem;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.contact-detail span {
    color: #dce8ef;
}

.status-online {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-online i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3effa4;
    box-shadow: 0 0 10px rgba(62, 255, 164, 0.8);
}


/* FORM */

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #71899a;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(78, 190, 240, 0.15);
    border-radius: 9px;
    background: rgba(2, 10, 17, 0.65);
    color: #eaf7ff;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: 0.25s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #526878;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(50, 201, 255, 0.65);
    box-shadow: 0 0 20px rgba(50, 201, 255, 0.08);
}

.contact-submit {
    align-self: flex-start;
    margin-top: 5px;
    border: none;
    cursor: pointer;
}

.contact-submit span {
    margin-left: 14px;
    font-size: 1.2rem;
}


/* CONTACT MOBILE */

@media (max-width: 850px) {

    .contact-hero {
        min-height: auto;
        padding: 80px 25px 50px;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-network {
        width: 320px;
        height: 320px;
        align-self: center;
        transform: scale(0.9);
    }

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

    .contact-section {
        padding: 20px 25px 80px;
    }

    .glass-panel {
        padding: 30px 25px;
    }

}

@media (max-width: 600px) {

    .contact-hero h1 {
        font-size: 4rem;
        letter-spacing: -2px;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-network {
        width: 280px;
        height: 280px;
        transform: scale(0.8);
        transform-origin: center;
        margin-top: -20px;
    }

    .glass-panel h2 {
        font-size: 2rem;
    }

}
/* =========================================================
   HOMEPAGE UPGRADE
   ========================================================= */

.home-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px max(40px, calc((100vw - 1200px) / 2));
    background:
        radial-gradient(circle at 75% 45%, rgba(0, 170, 255, 0.10), transparent 35%),
        linear-gradient(120deg, #02080d 0%, #04121b 55%, #02070b 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(60, 190, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(60, 190, 255, 0.12) 1px, transparent 1px);
    background-size: 55px 55px;
    transform: perspective(600px) rotateX(55deg) scale(1.8);
    transform-origin: center bottom;
    mask-image: linear-gradient(to top, black, transparent 70%);
}

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

.hero-glow-one {
    width: 500px;
    height: 500px;
    right: 10%;
    top: 10%;
    background: rgba(0, 170, 255, 0.08);
}

.hero-glow-two {
    width: 300px;
    height: 300px;
    left: 10%;
    bottom: -100px;
    background: rgba(0, 100, 255, 0.07);
}

.home-hero-content {
    position: relative;
    z-index: 3;
    width: 58%;
    max-width: 700px;
}

.home-hero h1 {
    margin: 0;
    font-size: clamp(4rem, 7vw, 7rem);
    line-height: 0.9;
    letter-spacing: -5px;
    font-weight: 800;
}

.home-hero h1 strong {
    display: block;
    color: #35cfff;
    text-shadow:
        0 0 20px rgba(53, 207, 255, 0.45),
        0 0 70px rgba(53, 207, 255, 0.15);
}

.hero-text {
    max-width: 560px;
    margin: 35px 0;
    color: #91a8b9;
    font-size: 1.15rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 25px;
    border: 1px solid rgba(65, 195, 255, 0.3);
    border-radius: 8px;
    color: #bcd3df;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: 0.25s ease;
}

.outline-button:hover {
    border-color: #35cfff;
    color: #35cfff;
    box-shadow: 0 0 25px rgba(53, 207, 255, 0.12);
}


/* HERO CORE */

.hero-core {
    position: absolute;
    z-index: 2;
    right: max(20px, calc((100vw - 1350px) / 2));
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-grid {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        linear-gradient(rgba(50, 200, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(50, 200, 255, 0.05) 1px, transparent 1px);
    background-size: 25px 25px;
    mask-image: radial-gradient(circle, black 20%, transparent 68%);
}

.core-orbit {
    position: absolute;
    border: 1px solid rgba(50, 200, 255, 0.25);
    border-radius: 50%;
}

.orbit-a {
    width: 260px;
    height: 260px;
    transform: rotateX(65deg) rotateZ(20deg);
    animation: orbit-spin 12s linear infinite;
}

.orbit-b {
    width: 360px;
    height: 180px;
    transform: rotateY(65deg) rotateZ(-25deg);
    animation: orbit-spin-reverse 16s linear infinite;
}

.orbit-c {
    width: 450px;
    height: 450px;
    border-style: dashed;
    opacity: 0.4;
    animation: orbit-spin 25s linear infinite;
}

.core-sphere {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    position: relative;
    background:
        radial-gradient(circle at 35% 30%, #b9f4ff, #38cfff 14%, #087ca4 40%, #03121a 72%);
    box-shadow:
        0 0 30px rgba(50, 205, 255, 0.75),
        0 0 100px rgba(50, 205, 255, 0.25);
    animation: core-pulse 4s ease-in-out infinite;
}

.core-sphere::before {
    content: "";
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 1px solid rgba(60, 215, 255, 0.3);
}

.core-sphere span {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: white;
    left: 35px;
    top: 28px;
    box-shadow: 0 0 25px white;
}

.core-particle {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #44d7ff;
    box-shadow: 0 0 15px #44d7ff;
}

.particle-a {
    top: 70px;
    left: 110px;
}

.particle-b {
    right: 85px;
    top: 160px;
}

.particle-c {
    bottom: 90px;
    left: 180px;
}

.particle-d {
    right: 120px;
    bottom: 110px;
}

@keyframes orbit-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbit-spin-reverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes core-pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}


/* HOME INTRO */

.home-intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 110px 40px 70px;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 100px;
}

.intro-heading h2 {
    margin: 0;
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -2px;
}

.intro-heading h2 strong {
    color: #35cfff;
}

.intro-text {
    align-self: end;
}

.intro-text p {
    margin: 0 0 25px;
    color: #8da2b2;
    line-height: 1.9;
    font-size: 1.05rem;
}

.text-link {
    color: #35cfff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* FEATURE CARDS */

.home-features {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px 110px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-card {
    position: relative;
    padding: 38px;
    min-height: 300px;
    border: 1px solid rgba(63, 191, 255, 0.15);
    border-radius: 16px;
    background: linear-gradient(
        145deg,
        rgba(13, 31, 43, 0.75),
        rgba(3, 11, 18, 0.9)
    );
    overflow: hidden;
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(53, 207, 255, 0.45);
    box-shadow: 0 20px 50px rgba(0, 120, 180, 0.12);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 25px;
    color: rgba(90, 130, 150, 0.3);
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    position: relative;
}

.server-icon {
    border: 1px solid rgba(53, 207, 255, 0.35);
    border-radius: 8px;
}

.server-icon span {
    position: absolute;
    left: 12px;
    right: 12px;
    height: 5px;
    border: 1px solid rgba(53, 207, 255, 0.5);
    border-radius: 3px;
}

.server-icon span:nth-child(1) {
    top: 13px;
}

.server-icon span:nth-child(2) {
    top: 26px;
}

.server-icon span:nth-child(3) {
    top: 39px;
}

.network-icon {
    border: 1px solid rgba(53, 207, 255, 0.35);
    border-radius: 50%;
}

.network-icon span {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #35cfff;
    box-shadow: 0 0 12px rgba(53, 207, 255, 0.7);
}

.network-icon span:nth-child(1) {
    left: 25px;
    top: 10px;
}

.network-icon span:nth-child(2) {
    left: 10px;
    bottom: 12px;
}

.network-icon span:nth-child(3) {
    right: 8px;
    bottom: 14px;
}

.system-icon {
    border: 1px solid rgba(53, 207, 255, 0.35);
    transform: rotate(45deg);
    border-radius: 8px;
}

.system-icon span {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #35cfff;
}

.system-icon span:nth-child(1) {
    left: 12px;
    top: 12px;
}

.system-icon span:nth-child(2) {
    right: 12px;
    top: 12px;
}

.system-icon span:nth-child(3) {
    left: 26px;
    bottom: 10px;
}

.feature-card h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
}

.feature-card p {
    color: #8196a6;
    line-height: 1.7;
    margin-bottom: 25px;
}

.feature-card a {
    color: #35cfff;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* STATUS */

.home-status {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 110px;
}

.status-line {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(53, 207, 255, 0.3),
        transparent
    );
    margin-bottom: 55px;
}

.status-content {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 45px;
    border-radius: 16px;
    border: 1px solid rgba(53, 207, 255, 0.15);
    background: rgba(7, 19, 27, 0.7);
}

.status-symbol {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(53, 207, 255, 0.3);
    border-radius: 50%;
}

.status-symbol span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #35cfff;
    box-shadow: 0 0 20px #35cfff;
    animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.status-content h2 {
    margin: 0 0 8px;
    font-size: 2rem;
}

.status-content h2 strong {
    color: #35cfff;
}

.status-content p {
    margin: 0;
    color: #8197a7;
}

.status-badge {
    padding: 10px 16px;
    border: 1px solid rgba(53, 207, 255, 0.25);
    border-radius: 30px;
    color: #7fdfff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.status-badge i {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 7px;
    border-radius: 50%;
    background: #35cfff;
    box-shadow: 0 0 10px #35cfff;
}


/* CTA */

.home-cta {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px 130px;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 500px;
    height: 300px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 160, 255, 0.08);
    filter: blur(80px);
    border-radius: 50%;
    pointer-events: none;
}

.home-cta > * {
    position: relative;
    z-index: 2;
}

.home-cta .section-label {
    justify-content: center;
}

.home-cta h2 {
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 1;
    letter-spacing: -2px;
}

.home-cta h2 strong {
    color: #35cfff;
}

.home-cta p {
    max-width: 600px;
    margin: 25px auto 35px;
    color: #8499a9;
    line-height: 1.8;
}


/* HOMEPAGE MOBILE */

@media (max-width: 950px) {

    .home-hero {
        min-height: 680px;
        padding: 80px 30px;
    }

    .home-hero-content {
        width: 65%;
    }

    .hero-core {
        right: -130px;
        opacity: 0.55;
        transform: scale(0.85);
    }

    .home-intro {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 80px 30px 50px;
    }

    .home-features {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .home-status {
        padding: 0 30px 80px;
    }

}

@media (max-width: 700px) {

    .home-hero {
        min-height: 650px;
        padding: 80px 25px 60px;
        align-items: flex-start;
    }

    .home-hero-content {
        width: 100%;
    }

    .home-hero h1 {
        font-size: 4rem;
        letter-spacing: -3px;
    }

    .hero-core {
        width: 360px;
        height: 360px;
        right: 50%;
        bottom: -120px;
        transform: translateX(50%) scale(0.75);
        opacity: 0.5;
    }

    .hero-text {
        font-size: 1rem;
    }

    .status-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 35px 25px;
    }

    .status-symbol {
        margin: 0 auto;
    }

    .status-badge {
        justify-self: center;
    }

    .home-cta {
        padding: 70px 25px 100px;
    }

}
/* Fix mobile hero core positioning */
@media (max-width: 700px) {

    .home-hero {
        min-height: 760px;
    }

    .hero-core {
        width: 360px;
        height: 360px;
        right: 50%;
        bottom: 15px;
        transform: translateX(50%) scale(0.72);
        opacity: 0.5;
    }

    .hero-buttons {
        position: relative;
        z-index: 10;
        transform: translateY(110px);
    }

}
/* =========================================================
   HOMEPAGE REAL IMAGE HERO
   ========================================================= */

.home-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(1, 7, 12, 0.72) 0%,
            rgba(1, 10, 17, 0.50) 40%,
            rgba(1, 8, 14, 0.28) 70%,
            rgba(1, 5, 9, 0.50) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.08),
            rgba(0, 5, 10, 0.50)
        ),
        url("images/home-server.jpg");

    background-size: cover;
    background-position: center;
}
/* Homepage hero - keep animated core over the photo */

.home-hero {
    position: relative;
    overflow: hidden;
}

.home-hero .hero-core {
    z-index: 2;
}

.home-hero .home-hero-content {
    z-index: 3;
}

.home-hero .hero-grid {
    z-index: 1;
}
