:root {
  --bg: #0f0f0e;
  --fg: #f5f0e8;
  --fg-muted: #a09880;
  --accent: #c8501a;
  --accent-dim: #8a3512;
  --surface: #1a1917;
  --surface-2: #242320;
  --border: #2e2c28;
  --font-body: 'Instrument Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
}

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

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

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

/* Navigation */
nav {
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1200px; margin: 0 auto; }
.wordmark {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--fg);
}

/* Hero */
.hero {
  padding: 5rem 3rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.lede {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* Quote preview card */
.quote-preview {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  font-family: var(--font-mono);
}
.qp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.qp-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.qp-time { font-size: 0.65rem; color: var(--fg-muted); }
.qp-job {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}
.qp-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 0.6rem;
}
.qp-val { color: var(--fg); }
.qp-sent { color: var(--accent); }
.qp-footer {
  font-size: 0.7rem;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
  margin-top: 0.5rem;
}

/* Pain section */
.pain { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pain-inner { max-width: 1200px; margin: 0 auto; padding: 4.5rem 3rem; }
.pain-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 4rem;
}
.pain-item { display: flex; gap: 1rem; }
.pain-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 0.2rem;
}
.pain-item p { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.6; }

/* Features */
.features { padding: 5rem 3rem; max-width: 1200px; margin: 0 auto; }
.features h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 3.5rem;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 5rem;
}
.feat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.feat h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.feat p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; }

/* How */
.how { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.how-inner { max-width: 1200px; margin: 0 auto; padding: 5rem 3rem; }
.how-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 3.5rem;
}
.step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--accent-dim);
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.step p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; }

/* Pricing */
.pricing { padding: 5rem 3rem; max-width: 1200px; margin: 0 auto; }
.pricing h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -002em;
  margin-bottom: 3rem;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.price-card.featured {
  border-color: var(--accent);
  position: relative;
}
.price-badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1.25rem;
}
.price-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.price-amount {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
}
.price-amount span { font-size: 1rem; color: var(--fg-muted); }
.price-card ul { list-style: none; }
.price-card ul li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding: 0.4rem 0;
  border-top: 1px solid var(--border);
}
.price-card ul li::before { content: '· '; color: var(--accent); }

/* Closing */
.closing {
  border-top: 1px solid var(--border);
  padding: 5rem 3rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.close-line {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.close-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* Footer */
footer { border-top: 1px solid var(--border); padding: 2rem 3rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.wordmark-sm { font-family: var(--font-mono); font-size: 0.9rem; font-weight: 500; }
.footer-tag { font-size: 0.75rem; color: var(--fg-muted); }

/* Mobile */
@media (max-width: 768px) {
  .hero { padding: 3rem 1.5rem 3rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pain-inner, .features, .how-inner, .pricing { padding: 3rem 1.5rem; }
  .pain-grid, .feat-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .step-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .price-grid { grid-template-columns: 1fr; gap: 1rem; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  nav { padding: 1.25rem 1.5rem; }
}