/* ============================================
   LeadCraft — Custom Theme
   ============================================ */

:root {
  --bg-primary: #f5f2ee;
  --bg-secondary: #ffffff;
  --bg-dark: #0b1628;
  --text-primary: #0b1628;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --text-inverse: #f5f2ee;
  --accent: #c97d2d;
  --accent-light: #f5e6d3;
  --border: #e2d9cf;
  --success: #38a169;
}

/* ---- Typography ---- */
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ---- Navigation ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 242, 238, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 80px 24px 100px;
  overflow: hidden;
  text-align: center;
}

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

.hero-stat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(64px, 10vw, 120px);
  line-height: 1;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 320px;
  margin-top: 8px;
  line-height: 1.4;
}

.hero-headline {
  font-size: clamp(42px, 6vw, 72px);
  color: var(--text-primary);
  margin: 0 0 24px;
  letter-spacing: -1.5px;
}

.hero-sub {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.proof-item {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
}

.hero-glow {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(201, 125, 45, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ---- Section Labels ---- */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ---- Features ---- */
.features {
  background: var(--bg-secondary);
  padding: 100px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--text-primary);
  letter-spacing: -1px;
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
}

.feature-card {
  background: var(--bg-primary);
  padding: 48px 40px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}

.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px;
}

.feature-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ---- Problem ---- */
.problem {
  padding: 100px 24px;
}

.problem-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.problem-content {
  max-width: 640px;
}

.problem-title {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -1px;
  margin: 0 0 24px;
}

.problem-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 56px;
}

.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.prob-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prob-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
}

.prob-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ---- Outcomes ---- */
.outcomes {
  background: var(--bg-dark);
  padding: 100px 24px;
}

.outcomes-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.outcomes-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text-inverse);
  letter-spacing: -1px;
  margin: 0 0 16px;
}

.outcomes-sub {
  font-size: 17px;
  color: rgba(245, 242, 238, 0.6);
  margin: 0 0 40px;
}

.trades-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 64px;
}

.trade-tag {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-inverse);
  background: rgba(245, 242, 238, 0.08);
  border: 1px solid rgba(245, 242, 238, 0.15);
  padding: 7px 16px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.outcome-card {
  background: rgba(245, 242, 238, 0.04);
  border: 1px solid rgba(245, 242, 238, 0.08);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.outcome-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(56, 161, 105, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  flex-shrink: 0;
}

.outcome-text {
  font-size: 15px;
  color: rgba(245, 242, 238, 0.8);
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

/* ---- Closing ---- */
.closing {
  padding: 100px 24px;
  background: var(--bg-primary);
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.closing-title {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -1.5px;
  color: var(--text-primary);
  margin: 0 0 24px;
}

.closing-body {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

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

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--text-primary);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-meta {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px 80px;
  }

  .stat-number {
    font-size: 80px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .problem-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .features, .problem, .outcomes, .closing {
    padding: 64px 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    letter-spacing: -1px;
  }

  .hero-proof {
    gap: 12px;
  }

  .proof-item {
    font-size: 12px;
  }

  .prob-num {
    font-size: 36px;
  }
}