* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: #071018;
    color: #edf7fb;
    line-height: 1.5;
}

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.small-container {
    max-width: 900px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(7, 16, 24, .88);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.nav {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.nav nav {
    display: flex;
    gap: 28px;
    color: #a8bac5;
}

.nav nav a:hover {
    color: white;
}

.logo {
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.logo-mark {
    color: #28dbcf;
    letter-spacing: -4px;
    font-size: 25px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 14px 22px;
    background: #20c9bd;
    color: #04120f;
    font-weight: 800;
    transition: .2s;
}

.button:hover {
    transform: translateY(-1px);
    background: #34ded2;
}

.button-small {
    padding: 10px 17px;
}

.button-secondary {
    background: rgba(255,255,255,.07);
    color: white;
    border: 1px solid rgba(255,255,255,.1);
}

.button-full {
    width: 100%;
}

.hero {
    padding: 105px 0 80px;
    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(32,201,189,.18),
            transparent 32%
        );
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
    gap: 75px;
}

.eyebrow,
.section-title > span {
    color: #33d8cd;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

h1 {
    max-width: 700px;
    margin: 18px 0;
    font-size: clamp(45px, 6vw, 76px);
    line-height: 1.03;
    letter-spacing: -3px;
}

h1 span {
    color: #58e2d9;
}

.hero-text {
    max-width: 650px;
    font-size: 19px;
    color: #9cb0bc;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 31px;
}

.hero-features {
    margin-top: 27px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #a6bac4;
    font-size: 14px;
}

.hero-card {
    padding: 28px;
    border-radius: 28px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.035)
        );
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.status {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #91a5b1;
    font-size: 14px;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 100%;
    background: #37e59b;
    box-shadow: 0 0 15px #37e59b;
}

.connection {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 40px 0;
}

.connection-icon {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #20c9bd;
    color: #04120f;
    font-size: 25px;
    font-weight: 900;
}

.connection-title {
    font-size: 18px;
    font-weight: 800;
}

.connection-sub {
    margin-top: 4px;
    color: #8298a5;
    font-size: 13px;
}

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

.stats div {
    padding: 16px 8px;
    text-align: center;
    background: rgba(0,0,0,.18);
    border-radius: 15px;
}

.stats strong,
.stats span {
    display: block;
}

.stats strong {
    font-size: 19px;
}

.stats span {
    color: #8097a4;
    font-size: 12px;
}

.section {
    padding: 90px 0;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    margin: 8px 0;
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: -1.5px;
}

.section-title p {
    color: #92a7b2;
}

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

.card,
.step {
    background: #0d1922;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 20px;
    padding: 27px;
}

.card-icon {
    font-size: 28px;
}

.card h3,
.step h3 {
    margin: 15px 0 8px;
}

.card p,
.step p {
    color: #8fa3ae;
    margin-bottom: 0;
}

.plans-section {
    background: #09141d;
}

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

.plan {
    position: relative;
    padding: 28px;
    background: #0f1c26;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
}

.plan.featured {
    border-color: rgba(32,201,189,.65);
}

.badge {
    position: absolute;
    top: -13px;
    right: 20px;
    background: #20c9bd;
    color: #04120f;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
}

.plan-period {
    color: #a1b4be;
}

.price {
    margin: 10px 0 18px;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -2px;
}

.price span {
    font-size: 19px;
}

.plan ul {
    padding: 0;
    margin: 0 0 25px;
    list-style: none;
    color: #9db0ba;
}

.plan li {
    padding: 6px 0;
}

.plan li:before {
    content: "✓";
    color: #32dace;
    margin-right: 9px;
}

.trial {
    margin-top: 24px;
    padding: 18px;
    text-align: center;
    border-radius: 15px;
    background: rgba(32,201,189,.08);
    border: 1px solid rgba(32,201,189,.20);
}

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

.region {
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 18px;
    background: #0d1922;
    border: 1px solid rgba(255,255,255,.07);
}

.region > span {
    font-size: 30px;
}

.region strong,
.region small {
    display: block;
}

.region small {
    color: #7f96a2;
}

.step-number {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: rgba(32,201,189,.13);
    color: #42ded3;
    font-weight: 900;
}

details {
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 21px 0;
}

summary {
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
}

details p {
    color: #91a5b0;
}

.cta {
    padding: 40px 0 90px;
}

.cta-box {
    padding: 42px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background:
        linear-gradient(
            110deg,
            rgba(32,201,189,.15),
            rgba(32,201,189,.03)
        );
    border: 1px solid rgba(32,201,189,.25);
}

.cta-box h2 {
    margin: 0;
    font-size: 34px;
}

.cta-box p {
    color: #91a6b1;
    margin-bottom: 0;
}

footer {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 40px 0;
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer p {
    color: #728994;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    color: #8da1ac;
}

@media (max-width: 900px) {
    .hero-grid,
    .cards,
    .steps {
        grid-template-columns: 1fr;
    }

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

    .nav nav {
        display: none;
    }

    .hero {
        padding-top: 70px;
    }
}

@media (max-width: 600px) {
    .plans,
    .regions {
        grid-template-columns: 1fr;
    }

    .hero-card {
        padding: 20px;
    }

    h1 {
        letter-spacing: -2px;
    }

    .cta-box,
    .footer {
        align-items: stretch;
        flex-direction: column;
    }

    .cta-box .button {
        width: 100%;
    }
}
