:root {
    --bg: #ffffff;
    --bg-soft: #f6f6f8;
    --text: #171719;
    --muted: #6f7078;
    --border: #e8e8ec;

    --black: #111113;
    --purple: #705cff;
    --purple-dark: #5845e8;

    --radius: 26px;
    --container: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}


/* ================= HEADER ================= */

.header {
    height: 76px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.logo-mark {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--black);
    color: white;

    font-size: 17px;
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;

    margin-left: 70px;
}

.nav-links a {
    font-size: 14px;
    color: #55565d;
    transition: .2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login {
    font-size: 14px;
    font-weight: 500;
}

.nav-button {
    padding: 11px 18px;

    border-radius: 11px;

    background: var(--black);
    color: white;

    font-size: 13px;
    font-weight: 600;

    transition: .2s;
}

.nav-button:hover {
    transform: translateY(-1px);
    background: #29292c;
}

.menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.menu-button span {
    display: block;

    width: 22px;
    height: 2px;

    margin: 5px auto;

    background: var(--text);
}


/* ================= MOBILE MENU ================= */

.mobile-menu {
    display: none;

    position: fixed;
    z-index: 999;

    top: 76px;
    left: 0;
    right: 0;

    padding: 25px;

    background: white;
    border-bottom: 1px solid var(--border);

    flex-direction: column;
    gap: 20px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-weight: 600;
}

.mobile-cta {
    text-align: center;

    padding: 14px;

    border-radius: 12px;

    background: var(--black);
    color: white;
}


/* ================= HERO ================= */

.hero {
    min-height: 850px;

    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding-top: 120px;

    background:
        radial-gradient(circle at 50% 30%,
        rgba(112, 92, 255, .10),
        transparent 32%),
        #fff;
}

.hero-content {
    position: relative;
    z-index: 2;

    text-align: center;

    display: flex;
    align-items: center;
    flex-direction: column;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 13px;

    border: 1px solid var(--border);
    border-radius: 100px;

    background: rgba(255, 255, 255, .8);

    font-size: 12px;
    font-weight: 600;
    color: #55565d;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #3bc477;

    box-shadow: 0 0 0 4px rgba(59, 196, 119, .12);
}

.hero h1 {
    max-width: 950px;

    margin-top: 25px;

    font-size: clamp(58px, 8vw, 104px);
    line-height: .94;

    letter-spacing: -6px;
    font-weight: 800;
}

.hero h1 span,
.section-heading h2 span,
.service-copy h2 span,
.price-content h2 span,
.faq-title h2 span,
.cta-content h2 span {
    background: linear-gradient(
        100deg,
        #5c4bea,
        #9a83ff
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text {
    max-width: 680px;

    margin-top: 30px;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.65;
}

.hero-text strong {
    color: var(--text);
}

.hero-buttons {
    display: flex;
    gap: 12px;

    margin-top: 35px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    padding: 15px 21px;

    border-radius: 13px;

    font-size: 14px;
    font-weight: 600;

    transition: .25s;
}

.primary-button {
    background: var(--black);
    color: white;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.secondary-button {
    border: 1px solid var(--border);
    background: white;
}

.secondary-button:hover {
    background: var(--bg-soft);
}

.hero-note {
    margin-top: 25px;

    display: flex;
    gap: 18px;

    color: #888991;

    font-size: 12px;
}

.hero-note span {
    color: #4e43c8;
}


/* ================= VPN PREVIEW ================= */

.vpn-preview {
    position: relative;
    z-index: 3;

    width: min(850px, calc(100% - 40px));

    margin-top: 75px;
    padding: 25px;

    border-radius: 28px;

    background: rgba(255,255,255,.78);

    border: 1px solid rgba(0,0,0,.09);

    box-shadow:
        0 40px 100px rgba(50, 43, 100, .12),
        0 10px 30px rgba(0,0,0,.05);

    backdrop-filter: blur(30px);

    transform: perspective(1000px) rotateX(3deg);

    transition: .5s;
}

.vpn-preview:hover {
    transform: perspective(1000px) rotateX(0);
}

.preview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.preview-logo {
    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 15px;
    font-weight: 800;
}

.mini-logo {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: #111;
    color: white;
}

.connected {
    display: flex;
    align-items: center;
    gap: 7px;

    font-size: 12px;
    color: #43a96f;
}

.connected span {
    width: 7px;
    height: 7px;

    border-radius: 50%;
    background: #45c77a;
}

.preview-location {
    margin-top: 35px;

    display: flex;
    align-items: center;
    gap: 15px;
}

.country-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border-radius: 16px;

    background: #f1f1f4;

    font-size: 25px;
}

.preview-location div:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.preview-location small,
.preview-stats small {
    color: #96969d;
    font-size: 11px;
}

.preview-location strong {
    font-size: 18px;
}

.ping {
    margin-left: auto;

    font-size: 12px;
    color: #777780;
}

.ping span {
    color: #53c987;
}

.preview-line {
    height: 1px;

    margin: 25px 0;

    background: var(--border);
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.preview-stats div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.preview-stats strong {
    font-size: 13px;
}


/* ================= GLOW ================= */

.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;
}

.glow-one {
    width: 400px;
    height: 400px;

    left: -200px;
    top: 300px;

    background: rgba(111, 92, 255, .12);
}

.glow-two {
    width: 350px;
    height: 350px;

    right: -180px;
    top: 200px;

    background: rgba(125, 102, 255, .10);
}


/* ================= TRUST ================= */

.trust {
    padding: 45px 0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: #fafafa;
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trust p {
    font-size: 13px;
    color: var(--muted);
}

.trust-items {
    display: flex;
    gap: 35px;

    font-size: 13px;
    font-weight: 600;
}


/* ================= SECTIONS ================= */

.section {
    padding: 150px 0;
}

.section-heading {
    max-width: 720px;
}

.section-heading.centered {
    margin: 0 auto;
    text-align: center;
}

.eyebrow {
    margin-bottom: 20px;

    color: #7164d6;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.section-heading h2,
.service-copy h2,
.faq-title h2 {
    font-size: clamp(42px, 5vw, 68px);

    line-height: 1;

    letter-spacing: -3.5px;
}

.section-heading p,
.service-copy p,
.faq-title p {
    margin-top: 25px;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.7;
}


/* ================= ADVANTAGES ================= */

.advantages {
    background: #fff;
}

.advantages-grid {
    margin-top: 75px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.advantage-card {
    position: relative;

    min-height: 320px;

    padding: 35px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background: #fafafa;

    overflow: hidden;

    transition: .3s;
}

.advantage-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 20px 50px rgba(0,0,0,.06);
}

.advantage-card.large {
    grid-column: span 2;
    min-height: 400px;

    background:
        radial-gradient(circle at 80% 50%,
        rgba(111,92,255,.10),
        transparent 35%),
        #fafafa;
}

.advantage-card.wide {
    grid-column: span 2;

    min-height: 250px;

    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 20px;
}

.card-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: #eceafc;

    color: #6758d8;

    font-size: 20px;
    font-weight: 700;

    margin-bottom: 25px;
}

.card-icon.purple {
    background: #eeeaff;
}

.card-icon.blue {
    background: #e8f1ff;
}

.card-icon.green {
    background: #e5f7ed;
}

.advantage-card h3 {
    font-size: 23px;
    letter-spacing: -.7px;
}

.advantage-card p {
    max-width: 500px;

    margin-top: 12px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.7;
}

.advantage-card a {
    display: inline-block;

    margin-top: 25px;

    font-size: 13px;
    font-weight: 700;

    color: #5e51cf;
}

.world-decoration {
    position: absolute;

    right: 80px;
    top: 50%;

    width: 250px;
    height: 250px;

    transform: translateY(-50%);
}

.orbit {
    position: absolute;

    inset: 0;

    border: 1px solid rgba(104,89,220,.2);

    border-radius: 50%;
}

.orbit-2 {
    inset: 35px;
    transform: rotate(45deg) scaleX(.5);
}

.world-dot {
    position: absolute;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #7162df;

    box-shadow: 0 0 20px rgba(112,92,255,.4);
}

.d1 {
    top: 35px;
    left: 70px;
}

.d2 {
    right: 20px;
    top: 120px;
}

.d3 {
    bottom: 30px;
    left: 100px;
}

.d4 {
    top: 95px;
    left: 25px;
}

.service-pills {
    grid-column: 2;

    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 25px;
}

.service-pills span {
    padding: 7px 11px;

    border-radius: 8px;

    background: white;

    border: 1px solid var(--border);

    font-size: 11px;
    font-weight: 600;
}


/* ================= LOCATIONS ================= */

.locations-section {
    background: #f7f7f9;
}

.locations {
    max-width: 850px;

    margin: 70px auto 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 10px;
}

.location-card {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 20px;

    border: 1px solid var(--border);

    background: white;

    border-radius: 15px;

    transition: .2s;
}

.location-card:hover,
.location-card.active {
    border-color: #cfc9ff;
    box-shadow: 0 10px 25px rgba(80,60,160,.06);
}

.flag {
    font-size: 25px;
}

.location-card div {
    display: flex;
    flex-direction: column;
}

.location-card strong {
    font-size: 14px;
}

.location-card small {
    color: #9999a1;
    font-size: 11px;
}

.location-status {
    width: 7px;
    height: 7px;

    margin-left: auto;

    border-radius: 50%;

    background: #49c27c;
}

.arrow {
    margin-left: auto;
    color: #7162d9;
}

.locations-bottom {
    display: flex;
    justify-content: center;

    margin-top: 40px;
}


/* ================= SERVICES ================= */

.service-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;

    align-items: center;
}

.service-copy {
    max-width: 500px;
}

.service-copy .primary-button {
    margin-top: 30px;
}

.service-wall {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;
}

.service-tile {
    min-height: 150px;

    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border: 1px solid var(--border);

    border-radius: 18px;

    background: #fafafa;

    transition: .25s;
}

.service-tile:hover {
    transform: translateY(-4px);

    background: white;

    box-shadow: 0 15px 35px rgba(0,0,0,.06);
}

.service-logo {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: white;

    border: 1px solid var(--border);

    font-size: 17px;
    font-weight: 700;
}

.service-tile strong {
    margin-top: 15px;

    font-size: 13px;
}

.service-tile small {
    color: #9999a1;
    font-size: 10px;
}


/* ================= PRICE ================= */

.price-section {
    padding: 120px 0;

    background: #f7f7f9;
}

.price-box {
    position: relative;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 480px;

    padding: 70px;

    border-radius: 35px;

    background: #111113;

    color: white;

    box-shadow: 0 40px 90px rgba(0,0,0,.14);
}

.price-box::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -100px;
    top: -180px;

    border-radius: 50%;

    background: rgba(111,92,255,.28);

    filter: blur(80px);
}

.price-content {
    position: relative;
    z-index: 2;

    max-width: 600px;
}

.price-content .eyebrow {
    color: #a99eff;
}

.price-content h2 {
    font-size: clamp(45px, 5vw, 70px);

    line-height: .95;

    letter-spacing: -4px;
}

.price-content h2 span {
    color: #9a89ff;
}

.price-content p {
    max-width: 520px;

    margin-top: 25px;

    color: #a5a5ac;

    line-height: 1.7;
}

.price-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

    margin-top: 30px;

    font-size: 12px;
    color: #d7d7dc;
}

.price-button {
    display: inline-flex;

    align-items: center;
    gap: 20px;

    margin-top: 35px;

    padding: 15px 20px;

    border-radius: 12px;

    background: white;
    color: #111;

    font-size: 13px;
    font-weight: 700;
}

.price-number {
    position: relative;
    z-index: 2;

    width: 350px;
    height: 350px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.10);
}

.price-number small {
    color: #96969d;
    font-size: 15px;
}

.price-number strong {
    font-size: 150px;

    line-height: .85;

    letter-spacing: -10px;
}

.price-number span {
    position: absolute;

    margin-left: 180px;
    margin-top: -65px;

    color: #a497ff;

    font-size: 32px;
    font-weight: 700;
}

.price-number em {
    margin-top: 20px;

    font-style: normal;

    color: #8d8d95;

    font-size: 12px;
}


/* ================= DEVICES ================= */

.devices-section {
    background: white;
}

.devices {
    margin-top: 70px;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 12px;
}

.device {
    padding: 30px 20px;

    text-align: center;

    border: 1px solid var(--border);

    border-radius: 18px;

    background: #fafafa;

    transition: .25s;
}

.device:hover {
    transform: translateY(-4px);

    background: white;

    box-shadow: 0 15px 35px rgba(0,0,0,.05);
}

.device-icon {
    font-size: 25px;

    margin-bottom: 15px;

    color: #6355d1;
}

.device strong {
    display: block;

    font-size: 13px;
}

.device small {
    color: #9999a1;
    font-size: 10px;
}


/* ================= FAQ ================= */

.faq-section {
    background: #f7f7f9;
}

.faq-layout {
    display: grid;

    grid-template-columns: .75fr 1.25fr;

    gap: 100px;
}

.faq-title .secondary-button {
    margin-top: 30px;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;

    padding: 25px 0;

    border: 0;

    background: transparent;

    display: flex;
    justify-content: space-between;
    align-items: center;

    cursor: pointer;

    text-align: left;

    font-size: 15px;
    font-weight: 600;
}

.faq-question span {
    font-size: 22px;
    font-weight: 400;

    transition: .25s;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.7;

    transition: max-height .3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;

    padding-bottom: 25px;
}


/* ================= CTA ================= */

.cta-section {
    position: relative;

    overflow: hidden;

    padding: 150px 0;

    background: #111113;

    color: white;

    text-align: center;
}

.cta-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: rgba(103,84,236,.20);

    filter: blur(120px);
}

.cta-content {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    flex-direction: column;
}

.cta-content .eyebrow {
    color: #a69aff;
}

.cta-content h2 {
    max-width: 800px;

    font-size: clamp(45px, 6vw, 80px);

    line-height: .95;

    letter-spacing: -4px;
}

.cta-content p {
    margin-top: 25px;

    color: #9999a1;
}

.primary-button.large {
    margin-top: 35px;

    padding: 17px 24px;

    background: white;
    color: #111;
}


/* ================= FOOTER ================= */

.footer {
    padding: 70px 0 30px;

    background: #111113;

    color: white;

    border-top: 1px solid rgba(255,255,255,.08);
}

.footer .logo-mark {
    background: white;
    color: #111;
}

.footer-brand p {
    max-width: 240px;

    margin-top: 18px;

    color: #888890;

    font-size: 12px;
    line-height: 1.6;
}

.footer-top {
    display: grid;

    grid-template-columns: 2fr repeat(3, 1fr);

    gap: 50px;

    padding-bottom: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.footer-column strong {
    margin-bottom: 7px;

    font-size: 12px;
}

.footer-column a {
    color: #85858c;

    font-size: 12px;

    transition: .2s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,.08);

    color: #66666d;

    font-size: 10px;
}

.footer-bottom div {
    display: flex;
    gap: 25px;
}

.footer-bottom a:hover {
    color: white;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .hero {
        min-height: 760px;
        padding-top: 90px;
    }

    .hero h1 {
        letter-spacing: -4px;
    }

    .hero-text {
        font-size: 16px;
    }

    .trust-inner {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .advantage-card.large,
    .advantage-card.wide {
        grid-column: auto;
    }

    .advantage-card.wide {
        display: block;
    }

    .service-pills {
        margin-top: 25px;
    }

    .world-decoration {
        opacity: .4;
        right: -40px;
    }

    .service-layout,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .price-box {
        padding: 50px 35px;

        flex-direction: column;
        align-items: flex-start;

        gap: 50px;
    }

    .price-number {
        align-self: center;
    }

    .devices {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: span 2;
    }
}


@media (max-width: 600px) {

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .hero {
        padding-top: 75px;
    }

    .hero h1 {
        font-size: 55px;
        letter-spacing: -3px;
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-buttons {
        width: 100%;

        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
    }

    .hero-note {
        flex-wrap: wrap;
        justify-content: center;

        gap: 8px 12px;
    }

    .vpn-preview {
        margin-top: 50px;
    }

    .preview-stats {
        grid-template-columns: 1fr;
    }

    .ping {
        display: none;
    }

    .section {
        padding: 90px 0;
    }

    .section-heading h2,
    .service-copy h2,
    .faq-title h2 {
        font-size: 44px;
        letter-spacing: -2.5px;
    }

    .advantages-grid {
        margin-top: 45px;
    }

    .advantage-card {
        min-height: auto;
        padding: 25px;
    }

    .advantage-card.large {
        min-height: 350px;
    }

    .locations {
        grid-template-columns: 1fr;
        margin-top: 45px;
    }

    .service-wall {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-section {
        padding: 70px 0;
    }

    .price-box {
        padding: 40px 25px;
    }

    .price-content h2 {
        font-size: 48px;
    }

    .price-features {
        grid-template-columns: 1fr;
    }

    .price-number {
        width: 260px;
        height: 260px;
    }

    .price-number strong {
        font-size: 105px;
    }

    .price-number span {
        margin-left: 130px;
        margin-top: -50px;
    }

    .devices {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 45px;
    }

    .faq-layout {
        gap: 45px;
    }

    .cta-section {
        padding: 100px 0;
    }

    .cta-content h2 {
        font-size: 48px;
        letter-spacing: -2.5px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px 25px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .footer-bottom div {
        flex-direction: column;
        gap: 8px;
    }
}