:root {
  --bg: #0C0C0E;
  --bg-elevated: #141418;
  --bg-card: #1A1A20;
  --fg: #E8E6E1;
  --fg-muted: #8A8880;
  --fg-dim: #5A5850;
  --accent: #E8A034;
  --accent-glow: rgba(232, 160, 52, 0.15);
  --accent-bright: #F0B856;
  --border: rgba(232, 160, 52, 0.12);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  color: var(--accent);
  font-size: 22px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}

/* Hero */
.hero {
  padding: 160px 32px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: var(--accent-glow);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

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

.hero-sub {
  font-size: 19px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 640px;
  margin-bottom: 56px;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--accent);
  color: #0C0C0E;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.15s;
}

.cta-button:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  border: 1px solid rgba(232, 160, 52, 0.3);
  border-radius: var(--radius-sm);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.2s, border-color 0.2s;
}

.cta-secondary:hover {
  background: rgba(232, 160, 52, 0.08);
  border-color: var(--accent);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-subtle);
}

/* Problem */
.problem {
  padding: 120px 32px;
  border-top: 1px solid var(--border-subtle);
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem-left h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  position: sticky;
  top: 120px;
}

.problem-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}

.problem-card:hover {
  border-color: var(--border);
}

.problem-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* Tools */
.tools {
  padding: 120px 32px;
  border-top: 1px solid var(--border-subtle);
}

.tools-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.tools-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.tool-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.tool-primary {
  border-color: var(--border);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(232, 160, 52, 0.05) 100%);
}

.tool-number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-dim);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.tool-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.tool-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
}

.tool-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 14px;
  background: var(--accent-glow);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* Pricing */
.pricing {
  padding: 120px 32px;
  border-top: 1px solid var(--border-subtle);
}

.pricing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}

.pricing-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.pricing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.pricing-card-wrap {
  display: flex;
  justify-content: center;
}

.pricing-card {
  width: 100%;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(232, 160, 52, 0.06) 100%);
}

.pricing-card-header {
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-amount {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 10px;
}

.pricing-dollar {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 8px;
}

.pricing-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-period {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--fg-muted);
  margin-top: 12px;
  margin-left: 4px;
}

.pricing-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.pricing-features li.feat-divider {
  border-top: 1px solid var(--border-subtle);
  margin: 4px 0;
  padding: 0;
}

.feat-icon {
  color: var(--accent);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 4px;
}

.feat-check {
  color: #34D399;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #0C0C0E;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  text-align: center;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 16px;
}

.pricing-cta:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
}

.pricing-fine {
  text-align: center;
  font-size: 13px;
  color: var(--fg-dim);
}

/* Closing CTAs */
.closing-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Built By */
.built-by {
  padding: 120px 32px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
}

.built-by-inner {
  max-width: 800px;
  margin: 0 auto;
}

.built-by-content .section-tag {
  margin-bottom: 20px;
}

.built-by-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.built-by-content p {
  color: var(--fg-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Closing */
.closing {
  padding: 140px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 19px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 40px 32px;
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  color: var(--fg-dim);
  font-size: 14px;
}

.footer-copy {
  color: var(--fg-dim);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 120px 20px 80px; }
  .hero-stats {
    flex-direction: column;
    gap: 24px;
    padding: 28px 24px;
    align-items: flex-start;
  }
  .stat-divider { display: none; }
  
  .problem { padding: 80px 20px; }
  .problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .problem-left h2 { position: static; }
  
  .tools { padding: 80px 20px; }
  .tools-grid { grid-template-columns: 1fr; }
  .tool-card { padding: 28px; }
  
  .built-by { padding: 80px 20px; }
  .closing { padding: 100px 20px; }
  
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .stat-num { font-size: 26px; }
  .problem-price { font-size: 24px; }
}

/* ── Lead Magnet ────────────────────────────────────────────────────────────── */

.lm-section {
  padding: 64px 32px;
  background: linear-gradient(180deg, rgba(232,160,52,0.04) 0%, transparent 100%);
  border-top: 1px solid rgba(232,160,52,0.12);
  border-bottom: 1px solid rgba(232,160,52,0.08);
}

.lm-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.lm-icon {
  font-size: 36px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.lm-content {
  flex: 1;
}

.lm-heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 10px;
}

.lm-sub {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 560px;
}

.lm-form {
  display: flex;
  gap: 8px;
  max-width: 500px;
}

.lm-form-compact {
  max-width: 420px;
}

.lm-input {
  flex: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.15s;
  min-width: 0;
}

.lm-input::placeholder { color: var(--fg-dim); }

.lm-input:focus {
  border-color: rgba(232, 160, 52, 0.45);
}

.lm-btn {
  padding: 11px 18px;
  background: var(--accent);
  color: #0C0C0E;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: background 0.15s;
}

.lm-btn:hover { background: var(--accent-bright); }

.lm-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: var(--accent);
}

.lm-msg {
  font-size: 13px;
  margin-top: 8px;
  min-height: 18px;
}

.lm-msg-ok { color: #34D399; }
.lm-msg-err { color: #F87171; }

.lm-fine {
  font-size: 12px;
  color: var(--fg-dim);
  margin-top: 10px;
}

/* Tools hub footer block */
.lm-tools-block {
  border-top: 1px solid var(--border-subtle);
  padding: 40px 0 8px;
  margin-top: 16px;
}

.lm-tools-inner {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.lm-tools-text {
  flex: 1;
  min-width: 220px;
}

.lm-tools-heading {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.lm-tools-sub {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 380px;
}

.lm-tools-form-wrap {
  flex-shrink: 0;
}

/* Inline strip (tool pages) */
.lm-inline-block {
  border: 1px solid rgba(232,160,52,0.15);
  background: rgba(232,160,52,0.04);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 32px 0;
}

.lm-inline-copy {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.lm-inline-copy strong {
  color: var(--fg);
}

@media (max-width: 600px) {
  .lm-section { padding: 48px 20px; }
  .lm-inner { flex-direction: column; gap: 12px; }
  .lm-form, .lm-form-compact { flex-direction: column; max-width: 100%; }
  .lm-tools-inner { flex-direction: column; gap: 20px; }
}