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

body {
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    background:
        radial-gradient(circle at top, rgba(93, 63, 211, 0.22), transparent 38%),
        #07080d;
    color: #f5f5f7;
    min-height: 100vh;
}

/* Header */
.site-header {
    width: 100%;
    min-height: 72px;
    padding: 18px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(8, 9, 15, 0.88);
    backdrop-filter: blur(14px);
}

.brand {
    font-weight: 800;
    letter-spacing: 1.5px;
    font-size: 14px;
}

.site-header nav {
    display: flex;
    gap: 22px;
}

.site-header nav a {
    color: #bfc3d9;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.site-header nav a:hover {
    color: #ffffff;
}

/* Main */
main {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 72px 0 56px;
}

/* Hero */
.hero {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 64px;
}

.badge {
    display: inline-flex;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(126, 87, 255, 0.22);
    color: #d7ccff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 22px;
}

.hero-text {
    max-width: 760px;
    margin: 0 auto 30px;
    color: #b9bfd4;
    font-size: 18px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 30px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6b4dff, #9b5cff);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 34px rgba(112, 76, 255, 0.32);
    transition: 0.2s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 44px rgba(112, 76, 255, 0.42);
}

.price-pill {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    padding: 0 22px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    color: #ffffff;
    font-weight: 800;
}

.small-note {
    color: #8f96ad;
    font-size: 14px;
}

/* Feature cards */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 48px;
}

.feature-card {
    min-height: 170px;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}

.feature-card h2 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-card p {
    color: #b5bad0;
    font-size: 15px;
    line-height: 1.55;
}

/* Pricing */
.pricing-card {
    max-width: 680px;
    margin: 0 auto 56px;
    padding: 34px;
    text-align: center;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    border: 1px solid rgba(255,255,255,0.12);
}

.pricing-card h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.price {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 8px;
}

.pricing-card p {
    color: #b8bfd4;
    margin-top: 8px;
}

/* Footer */
.site-footer {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 28px 0 38px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.footer-links button {
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    border-radius: 12px;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 700;
}

.footer-links button:hover {
    background: rgba(255,255,255,0.10);
}

.info-box {
    max-width: 720px;
    margin: 18px auto;
    padding: 22px;
    text-align: left;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
}

.info-box h3 {
    margin-bottom: 10px;
}

.info-box p {
    color: #b9bfd4;
    line-height: 1.6;
}

.info-box a {
    color: #bda8ff;
}

.copyright {
    color: #747b91;
    font-size: 13px;
}

/* Mobile */
@media (max-width: 820px) {
    .site-header {
        padding: 18px 22px;
        flex-direction: column;
        gap: 12px;
    }

    main {
        width: min(100% - 32px, 1120px);
        padding-top: 48px;
    }

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

    .hero h1 {
        font-size: 44px;
    }
}
