:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a26;
  --fg-primary: #f0ece4;
  --fg-secondary: #9b978f;
  --fg-muted: #5c5952;
  --accent: #c9a84c;
  --accent-dim: rgba(201, 168, 76, 0.15);
  --accent-glow: rgba(201, 168, 76, 0.3);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
}

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

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  padding: 8px 16px;
  border: 1px solid var(--accent-dim);
  border-radius: 100px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg-primary);
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-secondary);
  max-width: 620px;
  line-height: 1.7;
}

/* ═══ STATS BAR ═══ */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  padding: 48px 24px;
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ═══ FUNNELS ═══ */
.funnels {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.funnels-header {
  margin-bottom: 64px;
}

.funnels-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.funnels-header p {
  color: var(--fg-secondary);
  font-size: 1.05rem;
  max-width: 560px;
}

.funnel-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.funnel-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.funnel-card:hover {
  border-color: var(--accent-dim);
}

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

.funnel-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.funnel-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
}

.funnel-card p {
  color: var(--fg-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.funnel-features {
  margin-top: 24px;
  list-style: none;
}

.funnel-features li {
  padding: 8px 0;
  color: var(--fg-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.funnel-features li::before {
  content: '\25C6';
  color: var(--accent);
  font-size: 0.6rem;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ═══ HOW IT WORKS ═══ */
.how {
  padding: 100px 24px;
  background: var(--bg-secondary);
}

.how-inner {
  max-width: 900px;
  margin: 0 auto;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 64px;
  text-align: center;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.how-step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--fg-secondary);
  font-size: 0.95rem;
}

/* ═══ CLOSING ═══ */
.closing {
  padding: 120px 24px;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.closing h2 em {
  font-style: normal;
  color: var(--accent);
}

.closing p {
  color: var(--fg-secondary);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ═══ FOOTER ═══ */
footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}

footer p {
  color: var(--fg-muted);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

footer span {
  color: var(--accent);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .hero { padding: 80px 20px 60px; min-height: auto; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .funnel-cards { grid-template-columns: 1fr; }
  .funnel-card { padding: 36px 24px; }
  .how-step { grid-template-columns: 48px 1fr; gap: 20px; }
  .funnels { padding: 64px 20px; }
  .how { padding: 64px 20px; }
  .closing { padding: 80px 20px; }
}