@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #1a1a26;
  --fg: #e8e8ed;
  --fg-muted: #8b8b9e;
  --accent: #00e68a;
  --accent-dim: rgba(0, 230, 138, 0.12);
  --accent-glow: rgba(0, 230, 138, 0.25);
  --gold: #ffd700;
  --gold-dim: rgba(255, 215, 0, 0.1);
  --border: rgba(255, 255, 255, 0.06);
  --radius: 16px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 6vw 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '$100K';
  position: absolute;
  right: 4vw;
  bottom: 10%;
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 200px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 230, 138, 0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero .lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.65;
}

/* ---- STATS BAR ---- */
.stats-bar {
  padding: 0 6vw;
  position: relative;
  z-index: 1;
  margin-top: -40px;
  margin-bottom: 100px;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.stat {
  background: var(--bg-elevated);
  padding: 32px 28px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 100px 6vw;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
  max-width: 600px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s;
}

.step:hover {
  border-color: rgba(0, 230, 138, 0.3);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.step p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ---- PATHS SECTION ---- */
.paths {
  padding: 100px 6vw;
  background: var(--bg-elevated);
}

.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}

.path-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.path-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.path-earnings {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.path-timeline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.path-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.path-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 6vw;
  text-align: center;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 680px;
  margin: 0 auto 24px;
  line-height: 1.2;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ---- CTA BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--accent);
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #0a0a0f;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 0 32px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 40px var(--accent-glow);
}

.btn-primary--lg {
  padding: 20px 40px;
  font-size: 1.1rem;
  border-radius: 16px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 40px;
}

.hero-cta-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.closing-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* ---- FOOTER ---- */
footer {
  padding: 40px 6vw;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; }
  .stats-bar { padding: 0 24px; margin-top: -20px; margin-bottom: 60px; }
  .stats-inner { grid-template-columns: 1fr; }
  .how-it-works { padding: 60px 24px; }
  .steps { grid-template-columns: 1fr; }
  .paths { padding: 60px 24px; }
  .paths-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  footer { flex-direction: column; gap: 8px; text-align: center; padding: 32px 24px; }
  .hero::after { font-size: 100px; right: -10px; }
}
