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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, sans-serif;
    background:
        radial-gradient(circle at 75% 15%, rgba(20, 90, 255, .16), transparent 32%),
        radial-gradient(circle at 90% 60%, rgba(0, 255, 170, .08), transparent 30%),
        #050913;
    color: #fff;
    min-height: 100vh;
}

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

button {
    font: inherit;
}

/* HEADER */

header {
    width: min(1400px, calc(100% - 48px));
    height: 86px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.logo {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: #43e7b1;
}

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

nav a {
    color: #aab4c8;
    font-size: 14px;
    transition: .2s;
}

nav a:hover {
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-actions button {
    border: 0;
    background: transparent;
    color: #aab4c8;
    cursor: pointer;
}

.account-button {
    padding: 12px 19px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    background: rgba(255,255,255,.05);
    font-size: 14px;
    transition: .2s;
}

.account-button:hover {
    background: rgba(255,255,255,.1);
}

/* HERO */

.hero {
    width: min(1400px, calc(100% - 48px));
    min-height: 570px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 50px;
}

.hero-label {
    display: inline-block;
    color: #55e6b6;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(68px, 8vw, 125px);
    line-height: .9;
    letter-spacing: -7px;
    background: linear-gradient(110deg, #ffffff 25%, #7aa7ff 65%, #45e8b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 28px;
}

.hero h2 {
    font-size: clamp(27px, 3vw, 46px);
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.hero-content > p:last-child {
    max-width: 620px;
    color: #8f9bb1;
    line-height: 1.75;
    font-size: 17px;
}

.hero-visual {
    min-height: 430px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-placeholder {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: rgba(255,255,255,.9);
    border: 1px solid rgba(98,147,255,.45);
    background:
        radial-gradient(circle at 35% 30%, rgba(87,145,255,.55), transparent 25%),
        radial-gradient(circle at 70% 65%, rgba(34,238,174,.28), transparent 30%),
        rgba(17,31,64,.45);
    box-shadow:
        0 0 90px rgba(41,103,255,.25),
        inset 0 0 80px rgba(62,125,255,.12);
}

.hero-visual > p {
    position: absolute;
    bottom: 25px;
    right: 30px;
    color: #aab6cc;
    font-style: italic;
}

/* BENEFITS */

.benefits {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto 75px;
    padding: 22px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.benefits div {
    padding: 10px 25px;
    text-align: center;
    color: #c6cede;
    font-size: 14px;
    border-right: 1px solid rgba(255,255,255,.07);
}

.benefits div:last-child {
    border-right: 0;
}

/* VPN CARDS */

.vpn-options {
    width: min(1400px, calc(100% - 48px));
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.vpn-card {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    padding: 46px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.09);
    background: rgba(11,17,31,.86);
}

.vpn-card::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    right: -90px;
    top: -80px;
    filter: blur(15px);
    opacity: .22;
}

.amnezia::after {
    background: #2876ff;
}

.fortex::after {
    background: #00d68f;
}

.badge {
    display: inline-block;
    position: relative;
    z-index: 1;
    padding: 8px 13px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin-bottom: 34px;
}

.amnezia .badge {
    color: #75a9ff;
    background: rgba(45,112,255,.12);
    border: 1px solid rgba(67,126,255,.25);
}

.fortex .badge {
    color: #4ee3b2;
    background: rgba(0,218,145,.1);
    border: 1px solid rgba(44,223,164,.23);
}

.vpn-card h2 {
    font-size: 48px;
    letter-spacing: -2px;
    margin-bottom: 8px;
}

.vpn-card h3 {
    color: #9ba7bb;
    font-size: 19px;
    margin-bottom: 25px;
}

.vpn-card p {
    max-width: 560px;
    color: #8895aa;
    line-height: 1.7;
    margin-bottom: 28px;
}

.vpn-card ul {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-bottom: 35px;
}

.vpn-card li {
    color: #c7cfdd;
    font-size: 14px;
}

.vpn-card li::before {
    content: "✓";
    margin-right: 12px;
    font-weight: 800;
}

.amnezia li::before {
    color: #5791ff;
}

.fortex li::before {
    color: #42dfa9;
}

.vpn-card button {
    position: absolute;
    left: 46px;
    bottom: 42px;
    padding: 15px 22px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}

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

.amnezia button {
    background: linear-gradient(135deg, #2e6df6, #4e91ff);
    box-shadow: 0 10px 35px rgba(46,109,246,.22);
}

.fortex button {
    background: linear-gradient(135deg, #00a972, #35dba5);
    box-shadow: 0 10px 35px rgba(0,190,128,.18);
}

/* DEVICES */

.devices {
    width: min(1400px, calc(100% - 48px));
    margin: 110px auto;
    padding-bottom: 80px;
}

.devices h2 {
    text-align: center;
    font-size: clamp(30px, 4vw, 48px);
    letter-spacing: -2px;
    margin-bottom: 35px;
}

.vpn-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 35px;
}

.vpn-tabs button {
    padding: 12px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
    color: #aeb8ca;
    cursor: pointer;
}

.vpn-tabs button:first-child {
    background: #286cf0;
    color: #fff;
}

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

.device-grid a {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.035);
    color: #c5cede;
    transition: .2s;
}

.device-grid a:hover {
    transform: translateY(-3px);
    border-color: rgba(78,145,255,.5);
    background: rgba(55,104,210,.1);
}

/* MOBILE */

@media (max-width: 950px) {
    header {
        height: auto;
        padding: 22px 0;
    }

    nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 80px 0 40px;
    }

    .hero h1 {
        letter-spacing: -4px;
    }

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

    .globe-placeholder {
        width: 300px;
        height: 300px;
    }

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

    .vpn-options {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 600px) {
    header,
    .hero,
    .benefits,
    .vpn-options,
    .devices {
        width: min(100% - 28px, 1400px);
    }

    .account-button {
        padding: 10px 12px;
        font-size: 12px;
    }

    .header-actions button {
        display: none;
    }

    .hero {
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 58px;
        letter-spacing: -4px;
    }

    .hero h2 {
        font-size: 28px;
    }

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

    .benefits div {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .vpn-card {
        min-height: 600px;
        padding: 30px;
    }

    .vpn-card h2 {
        font-size: 38px;
    }

    .vpn-card button {
        left: 30px;
        bottom: 30px;
    }

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