*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0a0f;
  --surface:   #111118;
  --border:    #1e1e2e;
  --accent:    #c850f0;
  --accent2:   #7c3aed;
  --text:      #f0eeff;
  --muted:     #8b8baa;
  --green:     #22d47e;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5%;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #c850f0, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.nav-cta {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}
.nav-cta:hover { opacity: 0.85; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  position: relative;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: pulse 6s ease-in-out infinite;
}
.orb1 { width: 500px; height: 500px; background: rgba(200,80,240,0.15); top: 5%; left: 10%; }
.orb2 { width: 400px; height: 400px; background: rgba(124,58,237,0.12); bottom: 10%; right: 5%; animation-delay: 3s; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%       { transform: scale(1.1); opacity: 1; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,80,240,0.1);
  border: 1px solid rgba(200,80,240,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  max-width: 800px;
  margin-bottom: 24px;
}

.grad { background: linear-gradient(135deg, #c850f0 0%, #7c3aed 50%, #3b82f6 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 44px;
  line-height: 1.7;
}

/* CTA FORM */
.cta-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 480px;
}

.cta-form input {
  flex: 1;
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.cta-form input:focus { border-color: var(--accent); }
.cta-form input::placeholder { color: var(--muted); }

.btn-primary {
  background: linear-gradient(135deg, #c850f0, #7c3aed);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 24px rgba(200,80,240,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,80,240,0.45); }
.btn-primary:active { transform: translateY(0); }

.form-note { margin-top: 12px; font-size: 0.8rem; color: var(--muted); }

.success-msg {
  display: none;
  color: var(--green);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 10px;
}

/* SOCIAL PROOF */
.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.avatars { display: flex; }
.avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--bg);
  background: linear-gradient(135deg, #c850f0, #7c3aed);
  margin-left: -10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: #fff;
}
.avatars span:first-child { margin-left: 0; }
.proof-text { font-size: 0.85rem; color: var(--muted); }
.proof-text strong { color: var(--text); }

/* SECTIONS */
section { padding: 80px 5%; max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-sub { color: var(--muted); max-width: 500px; margin-bottom: 56px; }

/* HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.step-card:hover { border-color: var(--accent2); transform: translateY(-4px); }
.step-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.step-card:hover::after { opacity: 1; }

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step-card h3 { font-family: 'Syne', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: rgba(200,80,240,0.4); transform: translateY(-3px); }

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(200,80,240,0.1);
  border: 1px solid rgba(200,80,240,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.feature-card h3 { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: start;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.2s;
}
.price-card:hover { transform: translateY(-4px); }

.price-card.popular {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(200,80,240,0.06) 0%, var(--surface) 100%);
}

.popular-badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #c850f0, #7c3aed);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.plan-name { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.plan-price { font-family: 'Syne', sans-serif; font-size: 2.8rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 4px; }
.plan-period { color: var(--muted); font-size: 0.85rem; margin-bottom: 24px; }

.plan-features { list-style: none; margin-bottom: 28px; text-align: left; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.btn-plan {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}
.price-card.popular .btn-plan {
  background: linear-gradient(135deg, #c850f0, #7c3aed);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(200,80,240,0.35);
}
.btn-plan:hover { opacity: 0.85; transform: translateY(-1px); }

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 12px; }
.testimonial p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #c850f0, #3b82f6);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; color: #fff;
}
.t-name { font-weight: 600; font-size: 0.88rem; }
.t-handle { font-size: 0.78rem; color: var(--muted); }

/* FAQ */
.faq-list { max-width: 700px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%; text-align: left;
  background: var(--surface);
  border: none;
  padding: 18px 22px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-q .arrow { transition: transform 0.25s; color: var(--muted); }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 18px; }

/* FINAL CTA */
.final-cta {
  text-align: center;
  padding: 80px 5% 100px;
  position: relative;
  z-index: 1;
}

.final-cta h2 { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 16px; }
.final-cta p { color: var(--muted); margin-bottom: 36px; font-size: 1rem; }

.final-cta-input {
  flex: 1;
  min-width: 200px;
  background: #111118;
  border: 1px solid #1e1e2e;
  border-radius: 10px;
  padding: 14px 18px;
  color: #f0eeff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}
footer p { color: var(--muted); font-size: 0.82rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); font-size: 0.82rem; text-decoration: none; }
.footer-links a:hover { color: var(--text); }

/* STAT BAR */
.stat-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px 5%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.stat { text-align: center; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; background: linear-gradient(135deg,#c850f0,#7c3aed); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

@media (max-width: 600px) {
  .stat-bar { gap: 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
}