@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
    --bg: #05070a;
    --soft: #090d12;
    --text: #f3f6fa;
    --muted: #8b96a3;
    --line: rgba(255,255,255,.10);
    --accent: #35a9ff;
    --accent2: #63d7ff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    background: linear-gradient(180deg, rgba(0,0,0,.75), transparent);
    transition: .4s;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
}

.logo span,
.footer-logo span {
    color: var(--accent);
}

.header nav {
    display: flex;
    gap: 30px;
}

.header nav a {
    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(255,255,255,.68);
    transition: .3s;
}

.header nav a:hover {
    color: var(--accent);
}

.header-btn {
    padding: 13px 20px;
    border: 1px solid rgba(53,169,255,.55);
    color: var(--accent2);
    font-size: 9px;
    letter-spacing: 2px;
    transition: .3s;
}

.header-btn:hover {
    background: var(--accent);
    color: #00101c;
    border-color: var(--accent);
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
    transform: scale(1.04);
    animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.11); }
    to { transform: scale(1.04); }
}

.hero-grid {
    position: absolute;
    z-index: 1;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(rgba(53,169,255,.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(53,169,255,.16) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2,5,9,.96), rgba(2,5,9,.68) 48%, rgba(2,5,9,.18)),
        linear-gradient(180deg, rgba(0,0,0,.65), transparent 45%, rgba(0,0,0,.9));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding-top: 50px;
}

.hero-label,
.section-label {
    color: var(--accent2);
    font-size: 9px;
    letter-spacing: 4px;
}

.hero-label {
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(65px, 8vw, 125px);
    line-height: .85;
    letter-spacing: -5px;
    font-weight: 700;
}

.hero h1 strong,
.intro h2 strong,
.section-heading strong,
.server h2 strong,
.solutions-heading strong,
.contact h2 strong {
    color: var(--accent);
}

.hero p {
    max-width: 500px;
    margin-top: 35px;
    color: rgba(255,255,255,.66);
    line-height: 1.8;
    font-size: 14px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-top: 35px;
}

.btn {
    padding: 16px 24px;
    font-size: 9px;
    letter-spacing: 2px;
    transition: .3s;
}

.btn-primary {
    background: var(--accent);
    color: #00101c;
}

.btn-primary:hover {
    background: var(--accent2);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.35);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.hero-bottom {
    position: absolute;
    z-index: 3;
    bottom: 30px;
    left: 5%;
    right: 5%;
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,.45);
    font-size: 8px;
    letter-spacing: 3px;
}

section:not(.hero) {
    padding: 140px 5%;
}

.intro {
    background: var(--bg);
}

.intro-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 100px;
    align-items: end;
}

.intro h2,
.section-heading h2,
.server h2,
.solutions-heading h2,
.contact h2 {
    font-size: clamp(52px, 7vw, 100px);
    line-height: .88;
    letter-spacing: -4px;
}

.intro-text {
    max-width: 480px;
}

.intro-text p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.text-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent2);
    font-size: 9px;
    letter-spacing: 3px;
}

.hosting {
    background: var(--soft);
}

.section-heading {
    margin-top: 35px;
}

.hosting-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
}

.hosting-card {
    min-height: 300px;
    padding: 35px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    transition: .4s;
}

.hosting-card:nth-child(2n) {
    border-right: 0;
}

.hosting-card:hover {
    background: rgba(53,169,255,.035);
}

.hosting-card > span {
    color: var(--accent);
    font-size: 9px;
    letter-spacing: 2px;
}

.hosting-card h3 {
    margin-top: 70px;
    font-size: 22px;
    letter-spacing: 2px;
}

.hosting-card p {
    max-width: 420px;
    margin-top: 15px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.hosting-card b {
    position: absolute;
    bottom: 30px;
    color: var(--accent2);
    font-size: 8px;
    letter-spacing: 2px;
}

.server {
    min-height: 75vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 75% 45%, rgba(53,169,255,.12), transparent 35%),
        #06090d;
}

.server-content {
    max-width: 1000px;
}

.server h2 {
    margin-top: 35px;
}

.server-content > p {
    max-width: 550px;
    margin-top: 35px;
    color: var(--muted);
    line-height: 1.9;
    font-size: 14px;
}

.server-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 35px;
}

.server-features span {
    padding: 10px 15px;
    border: 1px solid var(--line);
    color: var(--accent2);
    font-size: 8px;
    letter-spacing: 2px;
}

.solutions {
    background: var(--bg);
}

.solutions-heading {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
}

.solutions-heading p {
    max-width: 350px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.solution-list {
    margin-top: 80px;
    border-top: 1px solid var(--line);
}

.solution {
    display: grid;
    grid-template-columns: 70px 1fr 40px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    transition: .3s;
}

.solution:hover {
    padding-left: 20px;
    color: var(--accent2);
}

.solution span {
    color: var(--accent);
    font-size: 9px;
}

.solution strong {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 500;
}

.solution b {
    color: var(--accent);
    font-size: 18px;
}

.contact {
    min-height: 70vh;
    position: relative;
    overflow: hidden;
    background: #05080c;
}

.contact-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(53,169,255,.14), transparent 65%);
    pointer-events: none;
}

.contact h2 {
    margin-top: 35px;
    position: relative;
}

.contact p {
    position: relative;
    max-width: 450px;
    margin-top: 30px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
}

.contact-btn {
    position: relative;
    display: inline-block;
    margin-top: 30px;
    padding: 17px 25px;
    background: var(--accent);
    color: #00101c;
    font-size: 9px;
    letter-spacing: 2px;
    transition: .3s;
}

.contact-btn:hover {
    background: var(--accent2);
}

footer {
    padding: 75px 5%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    border-top: 1px solid var(--line);
    background: #030507;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
}

footer div:not(.footer-logo) {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

footer div span {
    margin-bottom: 7px;
    color: var(--accent);
    font-size: 8px;
    letter-spacing: 3px;
}

footer div a {
    color: var(--muted);
    font-size: 10px;
    transition: .3s;
}

footer div a:hover {
    color: var(--accent2);
}

@media (max-width: 900px) {

    .header nav {
        display: none;
    }

    .header-btn {
        display: none;
    }

    .hero h1 {
        font-size: 17vw;
        letter-spacing: -2px;
    }

    .hero-bottom span:nth-child(2) {
        display: none;
    }

    .intro-grid,
    .solutions-heading {
        grid-template-columns: 1fr;
        display: grid;
        gap: 55px;
    }

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

    .hosting-card,
    .hosting-card:nth-child(2n) {
        border-right: 0;
    }

    footer {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    section:not(.hero) {
        padding: 100px 6%;
    }

    .hero-content {
        width: 88%;
    }

    .hero h1 {
        font-size: 18vw;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-bottom {
        left: 6%;
        right: 6%;
    }

    .hero-bottom span:first-child {
        display: none;
    }

    .hosting-card {
        min-height: 270px;
        padding: 25px;
    }

    .hosting-card h3 {
        margin-top: 55px;
    }

    .solution {
        grid-template-columns: 45px 1fr 25px;
    }

    footer {
        grid-template-columns: 1fr;
    }
}
