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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0f;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero */
.hero {
    text-align: center;
    padding: 60px 0 40px;
}

.badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #ffffff;
}

.highlight {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 17px;
    color: #9ca3af;
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.6);
}

.cta-sub {
    font-size: 13px;
    color: #6b7280;
    margin-top: 12px;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 0;
}

.feature {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.feature h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

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

/* Social Proof */
.social-proof {
    padding: 20px 0 40px;
    display: grid;
    gap: 16px;
}

.testimonial {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 20px;
}

.testimonial p {
    font-size: 15px;
    font-style: italic;
    color: #d1d5db;
    margin-bottom: 8px;
    line-height: 1.6;
}

.testimonial .author {
    font-size: 13px;
    color: #8b5cf6;
    font-weight: 500;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.final-cta h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
}

.disclaimer {
    font-size: 12px;
    color: #4b5563;
}

/* Mobile-first is default, enhance for larger screens */
@media (min-width: 480px) {
    h1 {
        font-size: 44px;
    }

    .features {
        grid-template-columns: repeat(3, 1fr);
    }

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