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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 50% 15%, rgba(94, 63, 255, 0.25), transparent 35%),
        radial-gradient(circle at 20% 80%, rgba(0, 174, 255, 0.12), transparent 30%),
        #050611;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.7) 1px, transparent 1px);
    background-size: 90px 90px;
    opacity: .12;
    pointer-events: none;
}

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

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo strong {
    color: #8c7cff;
}

.rocket {
    font-size: 27px;
}

.hero {
    position: relative;
    text-align: center;
    padding: 75px 0 70px;
}

.rocket-orbit {
    position: relative;
    width: 190px;
    height: 190px;
    margin: 0 auto 25px;
}

.orbit {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(132, 117, 255, .25);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(105, 84, 255, .15);
}

.big-rocket {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    font-size: 78px;
    filter: drop-shadow(0 0 25px rgba(117, 94, 255, .6));
}

.badge {
    display: inline-block;
    margin-bottom: 22px;
    padding: 8px 16px;
    border: 1px solid rgba(140, 124, 255, .35);
    border-radius: 50px;
    background: rgba(108, 90, 255, .08);
    color: #aaa0ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: clamp(46px, 8vw, 82px);
    line-height: .98;
    letter-spacing: -3px;
    margin-bottom: 25px;
}

.hero h1 span {
    background: linear-gradient(90deg, #8e7dff, #4ccaff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle {
    max-width: 650px;
    margin: 0 auto;
    color: #a6a8b8;
    font-size: 18px;
    line-height: 1.7;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: .25s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.primary {
    color: white;
    background: linear-gradient(135deg, #7865ff, #4d9cff);
    box-shadow: 0 12px 35px rgba(89, 91, 255, .28);
}

.secondary {
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
}

.secondary:hover {
    background: rgba(255,255,255,.09);
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 30px 0 80px;
}

.feature {
    padding: 28px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    background: rgba(255,255,255,.035);
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 18px;
}

.feature h3 {
    margin-bottom: 10px;
    font-size: 19px;
}

.feature p {
    color: #898c9d;
    font-size: 14px;
    line-height: 1.6;
}

.proxy {
    padding: 20px 0 90px;
}

.proxy-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 30px;
    text-align: center;
    border: 1px solid rgba(124, 104, 255, .2);
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 0%, rgba(108, 88, 255, .17), transparent 55%),
        rgba(255,255,255,.035);
}

.proxy-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.proxy h2 {
    font-size: 30px;
    margin-bottom: 12px;
}

.proxy p {
    color: #999cac;
    margin-bottom: 28px;
}

.proxy-button {
    border: 0;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 13px;
    color: white;
    background: linear-gradient(135deg, #7865ff, #4d9cff);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.proxy-note {
    margin-top: 16px;
    color: #666a7b;
    font-size: 12px;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,.07);
    color: #686b7b;
    font-size: 12px;
}

.footer-logo {
    color: #a8a9b8;
    font-weight: 700;
}

@media (max-width: 700px) {

    .container {
        width: min(100% - 28px, 600px);
    }

    .header {
        padding: 20px 0;
    }

    .hero {
        padding-top: 45px;
    }

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

    .subtitle {
        font-size: 16px;
    }

    .buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .features {
        grid-template-columns: 1fr;
        padding-bottom: 60px;
    }

    .feature {
        padding: 23px;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }
}
