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

:root {
  --bg: #080810;
  --bg2: #0e0e1c;
  --card: #12121f;
  --border: #1a1a2e;
  --purple: #7c3aed;
  --cyan: #06b6d4;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --subtle: #475569;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8, 8, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo-dot { color: var(--cyan); }
.nav-cta {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.9; }

/* HERO */
.hero {
  padding: 160px 0 100px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124, 58, 237, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse 60% 40% at 80% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
}

.badge-pill {
  display: inline-block;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: #c4b5fd;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  background: linear-gradient(135deg, #f1f5f9 40%, #c4b5fd 70%, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.btn-hero {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: white;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: all 0.2s;
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.3);
  border: none;
  cursor: pointer;
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 50px rgba(124, 58, 237, 0.5);
}

.trust-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 13px;
  color: var(--subtle);
}

/* VSL */
.vsl-section {
  padding: 80px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 40px;
  line-height: 1.2;
}

.vsl-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--border), 0 24px 80px rgba(0,0,0,0.6);
  background: #000;
}
.vsl-wrapper iframe, .vsl-wrapper video {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

/* HOW IT WORKS */
.how-section {
  padding: 100px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s;
}
.step:hover { border-color: rgba(124, 58, 237, 0.4); }

.step-num {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  line-height: 1;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* SIGNUP */
.signup-section {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.signup-card {
  background: var(--card);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 24px;
  padding: 56px 40px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 0 80px rgba(124, 58, 237, 0.1);
}

.signup-sub {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.signup-form { margin-bottom: 12px; }

.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.form-input {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}
.form-input:focus { border-color: var(--purple); }
.form-input::placeholder { color: var(--subtle); }

.btn-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.btn-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-note {
  font-size: 12px;
  color: var(--subtle);
  margin-top: 10px;
}

#form-message {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}
#form-message.success { background: #064e3b; color: #6ee7b7; border: 1px solid #065f46; }
#form-message.error { background: #7f1d1d; color: #fca5a5; border: 1px solid #991b1b; }

/* TESTIMONIALS */
.testimonials-section {
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}

.tcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.2s;
}
.tcard:hover { border-color: rgba(124, 58, 237, 0.3); }

.tcard-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.tcard-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.tcard-avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.tcard-name { font-size: 15px; font-weight: 700; color: var(--text); }
.tcard-handle { font-size: 12px; color: var(--subtle); }

.tcard-earnings {
  display: inline-block;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: #67e8f9;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.tcard-quote {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  font-style: italic;
}

/* FOOTER CTA */
.footer-cta {
  padding: 100px 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(124, 58, 237, 0.12) 0%, transparent 60%);
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-cta h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.footer-cta p {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 16px;
}

/* FOOTER */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer a { text-decoration: none; }
.footer a:hover { color: var(--muted) !important; }

/* RESPONSIVE */
@media (max-width: 600px) {
  .hero { padding: 120px 0 80px; }
  .signup-card { padding: 36px 20px; }
  .form-row { flex-direction: column; }
  .trust-row { gap: 12px; }
}

@media (max-width: 768px) {
  .vsl-section {
    padding: 32px 0;
  }
  .vsl-section .container {
    padding: 0;
  }
  .vsl-wrapper {
    border-radius: 0;
    max-width: 100%;
    box-shadow: none;
  }
}
