/* ─────────────────────────────────────────
   LeadForge — Dark Amber Brand
   ───────────────────────────────────────── */

:root {
  --bg:        #0B0B0B;
  --bg-alt:    #111111;
  --surface:   #1A1A1A;
  --border:    #222222;
  --amber:     #FFB800;
  --amber-dim: #CC9400;
  --text:      #F0EDE8;
  --text-muted:#8A8A8A;
  --text-dim:  #555555;
  --red:       #FF4545;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ───────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(11,11,11,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--amber);
  letter-spacing: -0.02em;
}
.tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── HERO ─────────────────────────────── */
.hero {
  padding: 8rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.hero-headline em {
  color: var(--amber);
  font-style: normal;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--amber);
  letter-spacing: -0.02em;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.04em; }
.hero-asymmetric {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0.15;
}
.signal-bar {
  width: 80px;
  height: 200px;
  background: linear-gradient(to bottom, var(--amber) 0%, transparent 100%);
  clip-path: polygon(0 0, 100% 15%, 100% 85%, 0 100%);
}

/* ── PROBLEM ──────────────────────────── */
.problem { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.problem-inner { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 2rem;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-bottom: 3rem;
}
.problem-item {
  background: var(--surface);
  padding: 2.25rem 2rem;
  border-left: 2px solid var(--border);
  transition: border-color 0.2s;
}
.problem-item:hover { border-left-color: var(--amber); }
.problem-icon {
  font-size: 1.1rem;
  color: var(--red);
  margin-bottom: 1rem;
  font-weight: 600;
}
.problem-item h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}
.problem-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.problem-punch {
  border-left: 3px solid var(--amber);
  padding-left: 1.75rem;
}
.problem-punch p {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.5;
}

/* ── HOW ──────────────────────────────── */
.how { background: var(--bg); }
.how-inner { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
.step-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 3rem;
}
.step { padding: 0 1.5rem; }
.step:first-child { padding-left: 0; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--amber);
  opacity: 0.25;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 0.75rem;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.step p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; }
.step-connector {
  width: 40px;
  height: 2px;
  background: var(--border);
  margin-top: 2.5rem;
  flex-shrink: 0;
}
.how-quote {
  background: var(--surface);
  border-left: 3px solid var(--amber);
  padding: 1.75rem 2rem;
  max-width: 640px;
}
.how-quote p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; font-style: italic; }
.quote-attr { color: var(--text-dim); font-style: normal; display: block; margin-top: 0.5rem; font-size: 0.78rem; }

/* ── PRICING ──────────────────────────── */
.pricing { background: var(--bg-alt); border-top: 1px solid var(--border); }
.pricing-inner { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
.pricing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
}
.tier-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 2rem;
}
.tier {
  background: var(--bg-alt);
  padding: 2.5rem 2rem;
  position: relative;
}
.tier-featured { background: var(--surface); }
.tier-badge {
  position: absolute;
  top: -1px; right: 2rem;
  background: var(--amber);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
}
.tier-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.75rem;
}
.tier-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--text);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 1.75rem;
}
.tier-period { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.tier-features { list-style: none; margin-bottom: 1.5rem; }
.tier-features li {
  font-size: 0.83rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.tier-features li:last-child { border-bottom: none; }
.tier-best { font-size: 0.72rem; color: var(--text-dim); letter-spacing: 0.04em; }
.pricing-note { font-size: 0.78rem; color: var(--text-dim); max-width: 560px; line-height: 1.6; }

/* ── CLOSING ──────────────────────────── */
.closing { background: var(--bg); border-top: 1px solid var(--border); }
.closing-inner { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.closing p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 3rem;
}
.closing-signal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.signal-block {
  width: 4px;
  height: 48px;
  background: var(--amber);
}
.signal-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.signal-label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.signal-val { color: var(--amber); font-size: 1rem; }

/* ── FOOTER ───────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--amber);
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dot-sep { color: var(--text-dim); }

/* ── RESPONSIVE ───────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-headline { font-size: 2.4rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 1.3rem; }
  .hero-asymmetric { display: none; }
  .problem-inner, .how-inner, .pricing-inner, .closing-inner { padding: 3.5rem 1.5rem; }
  .step-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .step-connector { display: none; }
  .tier-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .problem-grid { grid-template-columns: 1fr; }
}