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

body {
    background: #0b0d11;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #eef2f6;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Modern gradient accent */
.gradient-text {
    background: linear-gradient(135deg, #b388ff 0%, #7c4dff 40%, #00bcd4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bar {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, #b388ff, #7c4dff, #00bcd4);
    border-radius: 4px;
    margin: 0.5rem 0 1.5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- NAV ---- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.02em;
}

.logo i {
    font-size: 2rem;
    background: linear-gradient(135deg, #b388ff, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo span {
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-actions a {
    color: #b0b8c5;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-actions a:hover {
    color: #fff;
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.5rem 1.4rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ---- HERO ---- */
.hero {
    padding: 4rem 0 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(123, 77, 255, 0.15);
    border: 1px solid rgba(123, 77, 255, 0.2);
    padding: 0.35rem 1rem 0.35rem 0.8rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #b388ff;
    width: fit-content;
    letter-spacing: 0.01em;
}

.hero-badge i {
    font-size: 0.7rem;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    max-width: 900px;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, #b388ff 0%, #7c4dff 50%, #00bcd4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: #b0b8c5;
    max-width: 700px;
    margin-top: 0.25rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #7c4dff, #00bcd4);
    border: none;
    color: #fff;
    padding: 0.85rem 2.4rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 8px 30px rgba(123, 77, 255, 0.25);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(123, 77, 255, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ---- STATS / TRUST BAR ---- */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    margin: 2rem 0 3rem 0;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #b0b8c5;
    font-weight: 500;
    font-size: 0.95rem;
}

.trust-item i {
    color: #7c4dff;
    font-size: 1.2rem;
}

/* ---- SECTION: FEATURES ---- */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.section-sub {
    color: #b0b8c5;
    font-size: 1.1rem;
    max-width: 640px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0 3rem 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 2rem 1.8rem;
    transition: transform 0.2s, border-color 0.25s, background 0.25s;
    backdrop-filter: blur(4px);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(123, 77, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
}

.feature-card .icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #b388ff;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #b0b8c5;
    font-size: 0.95rem;
}

/* ---- PRICING ---- */
.pricing-wrap {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 32px;
    padding: 2.5rem 2.5rem;
    margin: 2.5rem 0 3rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.pricing-item {
    display: flex;
    flex-direction: column;
}

.pricing-item .label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #8892a0;
    font-weight: 600;
}

.pricing-item .value {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0.2rem 0 0.2rem 0;
}

.pricing-item .note {
    font-size: 0.9rem;
    color: #b0b8c5;
}

.pricing-item .badge {
    display: inline-block;
    background: rgba(0, 188, 212, 0.15);
    color: #80deea;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.8rem;
    border-radius: 40px;
    width: fit-content;
    margin-top: 0.3rem;
}

.pricing-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 1.5rem 0;
}

.pricing-foot {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.pricing-foot a {
    color: #b388ff;
    text-decoration: none;
    font-weight: 600;
}

.pricing-foot a:hover {
    text-decoration: underline;
}

/* ---- WHY LOVE ---- */
.love-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 2.5rem 0;
}

.love-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.9rem 1.2rem;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    font-weight: 500;
}

.love-item i {
    color: #7c4dff;
    font-size: 1.1rem;
}

/* ---- COMING SOON ---- */
.coming-soon {
    background: linear-gradient(135deg, rgba(123, 77, 255, 0.08), rgba(0, 188, 212, 0.05));
    border: 1px solid rgba(123, 77, 255, 0.15);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    margin: 3rem 0 4rem 0;
    text-align: center;
}

.coming-soon h2 {
    font-size: 2rem;
    font-weight: 700;
}

.coming-soon p {
    color: #b0b8c5;
    max-width: 500px;
    margin: 0.5rem auto 1.5rem auto;
}

.coming-soon .btn-primary {
    box-shadow: 0 8px 30px rgba(0, 188, 212, 0.2);
}

/* ---- FOOTER ---- */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 2.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    color: #8892a0;
    font-size: 0.9rem;
}

footer a {
    color: #b0b8c5;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .pricing-wrap {
        padding: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trust-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .coming-soon {
        padding: 2rem 1.5rem;
    }

    .footer-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center;
    }

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