/* LeadLoop — AI Automation Agency */

:root {
  --bg: #0D0D0D;
  --surface: #161616;
  --surface-2: #1E1E1E;
  --accent: #FF6B35;
  --accent-dim: rgba(255, 107, 53, 0.12);
  --text: #F0EBE1;
  --text-muted: #7A7570;
  --border: rgba(240, 235, 225, 0.08);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 92vh;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.hero-left {
  padding: 80px 60px 80px 80px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.5;
}

.hero-right {
  padding: 80px 80px 80px 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-right h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-right h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.lede {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.65;
}

/* ── HOW ── */
.how {
  padding: 100px 80px;
  border-bottom: 1px solid var(--border);
}

.how-header {
  margin-bottom: 64px;
  max-width: 560px;
}

.how-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.how-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
}

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

.step {
  background: var(--bg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.step p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ── OFFERS ── */
.offers {
  padding: 100px 80px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.offers-header {
  margin-bottom: 56px;
  max-width: 480px;
}

.offers-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.offers-header p {
  color: var(--text-muted);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.offer-card {
  background: var(--surface-2);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s ease;
}

.offer-card:hover {
  background: #222;
}

.offer-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.offer-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ── OUTCOMES ── */
.outcomes {
  padding: 100px 80px;
  border-bottom: 1px solid var(--border);
}

.outcomes-header {
  margin-bottom: 56px;
  max-width: 480px;
}

.outcomes-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.outcomes-header p {
  color: var(--text-muted);
}

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

.outcome-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.outcome-type {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.outcome-metric {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}

.outcome-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.outcome-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-top: 8px;
  line-height: 1.55;
}

.outcome-card strong {
  color: var(--text);
  font-weight: 600;
}

.outcomes-note {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* ── PRICING ── */
.pricing {
  padding: 100px 80px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.pricing-header {
  margin-bottom: 56px;
  max-width: 480px;
}

.pricing-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.pricing-header p {
  color: var(--text-muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px 44px;
}

.pricing-card--recurring {
  border-color: var(--accent);
}

.pricing-type {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pricing-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

.pricing-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-includes li {
  font-size: 0.9375rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}

.pricing-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

.pricing-note {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 80px;
  text-align: center;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.closing p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.closing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.closing-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.closing-btn:hover {
  background: #e55a28;
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  padding: 48px 80px 32px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-tagline {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.footer-links {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-bottom p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.0625rem;
  color: var(--text-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 64px 40px 40px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat-number { font-size: 4.5rem; }

  .hero-right {
    padding: 40px 40px 64px;
  }

  .how, .offers, .outcomes, .pricing, .closing {
    padding: 72px 40px;
  }

  .steps, .offer-grid, .outcome-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }

  footer { padding: 40px 40px 24px; }

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

@media (max-width: 480px) {
  .hero-left, .hero-right, .how, .offers, .outcomes, .pricing, .closing {
    padding-left: 24px;
    padding-right: 24px;
  }

  footer { padding-left: 24px; padding-right: 24px; }

  .stat-number { font-size: 3.5rem; }
  .outcome-metric { font-size: 2.5rem; }
  .pricing-amount { font-size: 2.25rem; }
}