* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #09090b; color: #e4e4e7; line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Nav */
nav { position: fixed; top: 0; width: 100%; z-index: 100; background: rgba(9,9,11,0.8); backdrop-filter: blur(12px); border-bottom: 1px solid #1f1f23; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-size: 1.3rem; font-weight: 800; color: #fff; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo-img { height: 36px; width: auto; border-radius: 6px; }
.logo span { color: #a855f7; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: #a1a1aa; text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }

/* Buttons */
.btn { display: inline-block; padding: 12px 28px; border-radius: 8px; font-size: 0.95rem; font-weight: 600; text-decoration: none; transition: all 0.3s; cursor: pointer; }
.btn-primary { background: linear-gradient(135deg, #a855f7, #7c3aed); color: #fff; box-shadow: 0 4px 20px rgba(168,85,247,0.3); }
.btn-primary:hover { box-shadow: 0 6px 30px rgba(168,85,247,0.5); transform: translateY(-2px); }
.btn-outline { border: 1px solid #3f3f46; color: #fff; background: transparent; }
.btn-outline:hover { border-color: #a855f7; background: rgba(168,85,247,0.1); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; text-align: center; }

/* Hero */
.hero { position: relative; padding: 160px 0 100px; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at 50% 0%, rgba(168,85,247,0.15) 0%, transparent 60%); }
.hero-content { position: relative; z-index: 1; }
.badge { display: inline-block; padding: 8px 20px; background: rgba(168,85,247,0.1); border: 1px solid rgba(168,85,247,0.3); border-radius: 50px; font-size: 0.85rem; color: #c084fc; margin-bottom: 24px; }
.hero h1 { font-size: 4rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.gradient-text { background: linear-gradient(135deg, #a855f7, #ec4899); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 1.2rem; color: #a1a1aa; max-width: 600px; margin: 0 auto 36px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; margin-bottom: 60px; }
.hero-stats { display: flex; justify-content: center; gap: 48px; padding-top: 40px; border-top: 1px solid #1f1f23; }
.stat { text-align: center; }
.stat-num { display: block; font-size: 1.5rem; font-weight: 700; color: #fff; }
.stat-label { font-size: 0.8rem; color: #71717a; text-transform: uppercase; letter-spacing: 1px; }

/* Features */
.features { padding: 100px 0; }
.section-title { font-size: 2.5rem; font-weight: 800; text-align: center; margin-bottom: 12px; }
.section-desc { text-align: center; color: #71717a; font-size: 1.1rem; margin-bottom: 60px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: #18181b; border: 1px solid #27272a; border-radius: 16px; padding: 32px; transition: all 0.3s; }
.feature-card:hover { border-color: #a855f7; transform: translateY(-4px); box-shadow: 0 8px 30px rgba(168,85,247,0.1); }
.feature-icon { font-size: 2rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.feature-card p { color: #a1a1aa; font-size: 0.9rem; }

/* Plans */
.plans { padding: 100px 0; background: #0c0c0f; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.plan-card { background: #18181b; border: 1px solid #27272a; border-radius: 16px; padding: 36px; position: relative; transition: all 0.3s; }
.plan-card:hover { border-color: #3f3f46; }
.plan-popular { border-color: #a855f7; background: linear-gradient(180deg, rgba(168,85,247,0.05), #18181b); }
.plan-popular:hover { border-color: #a855f7; }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #a855f7, #7c3aed); padding: 6px 20px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; white-space: nowrap; }
.plan-header h3 { font-size: 1.4rem; font-weight: 700; color: #fff; }
.plan-desc { color: #71717a; font-size: 0.85rem; margin-top: 4px; }
.plan-price { font-size: 3rem; font-weight: 800; color: #fff; margin: 24px 0; }
.plan-price span { font-size: 1rem; font-weight: 400; color: #71717a; }
.plan-features { list-style: none; margin-bottom: 32px; }
.plan-features li { padding: 10px 0; color: #d4d4d8; font-size: 0.9rem; border-bottom: 1px solid #1f1f23; display: flex; align-items: center; gap: 10px; }
.plan-features li::before { content: '✓'; color: #a855f7; font-weight: 700; }

/* FAQ */
.faq { padding: 100px 0; }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border: 1px solid #27272a; border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; font-weight: 600; color: #fff; transition: background 0.2s; }
.faq-q:hover { background: #18181b; }
.faq-icon { font-size: 1.5rem; color: #a855f7; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s, padding 0.3s; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }
.faq-a p { color: #a1a1aa; font-size: 0.9rem; }

/* CTA */
.cta { padding: 100px 0; }
.cta-inner { text-align: center; background: linear-gradient(135deg, rgba(168,85,247,0.1), rgba(124,58,237,0.05)); border: 1px solid rgba(168,85,247,0.2); border-radius: 24px; padding: 80px 40px; }
.cta-inner h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 12px; }
.cta-inner p { color: #a1a1aa; font-size: 1.1rem; margin-bottom: 32px; }

/* Footer */
footer { border-top: 1px solid #1f1f23; padding-top: 60px; padding-bottom: 24px; }
.footer-inner { display: flex; justify-content: space-between; margin-bottom: 40px; }
.footer-brand p { color: #71717a; margin-top: 8px; font-size: 0.9rem; }
.footer-links { display: flex; gap: 60px; }
.footer-links h4 { color: #fff; font-size: 0.85rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links a { display: block; color: #71717a; text-decoration: none; font-size: 0.9rem; margin-bottom: 8px; transition: color 0.2s; }
.footer-links a:hover { color: #a855f7; }
.footer-bottom { border-top: 1px solid #1f1f23; padding-top: 24px; }
.footer-bottom p { color: #3f3f46; font-size: 0.85rem; text-align: center; }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .features-grid, .plans-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .footer-inner { flex-direction: column; gap: 32px; }
    .footer-links { gap: 32px; }
}
