/* ── Reset + base ─────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    'Inter',
    'Segoe UI',
    system-ui,
    sans-serif;
  background: #fafaf9;
  color: #111;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Layout ───────────────────────────────────────────── */
.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 24px 80px;
}

.section {
  padding: 72px 0;
  border-top: 1px solid #eeece8;
}

/* ── Header ───────────────────────────────────────────── */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
}

.brand-mark {
  font-size: 18px;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: #6b7280;
}

.nav a:hover {
  color: #111;
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  padding: 80px 0 48px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4f46e5;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(32px, 5.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.accent {
  color: #4f46e5;
  position: relative;
  white-space: nowrap;
}

.subhead {
  font-size: 17px;
  color: #4b5563;
  max-width: 620px;
  margin-bottom: 32px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.cta-primary {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition:
    background 0.15s ease,
    transform 0.06s ease;
}

.cta-primary:hover {
  background: #4f46e5;
}

.cta-primary:active {
  transform: translateY(1px);
}

.cta-large {
  padding: 16px 28px;
  font-size: 16px;
}

.cta-secondary {
  display: inline-block;
  color: #111;
  padding: 12px 4px;
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid transparent;
}

.cta-secondary:hover {
  border-bottom-color: #111;
}

.hero-stats {
  font-size: 13px;
  color: #6b7280;
  padding-top: 24px;
  border-top: 1px solid #eeece8;
  line-height: 1.8;
}

.hero-stats strong {
  color: #111;
  font-weight: 600;
}

/* ── Section headings ─────────────────────────────────── */
.section h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.section-lead {
  font-size: 16px;
  color: #4b5563;
  max-width: 580px;
  margin-bottom: 32px;
}

/* ── How it works / steps ─────────────────────────────── */
.steps {
  display: grid;
  gap: 24px;
}

.step {
  background: #fff;
  border: 1px solid #eeece8;
  border-radius: 12px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  row-gap: 6px;
}

.step-num {
  grid-row: span 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #4f46e5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.step h3 {
  font-size: 17px;
  font-weight: 700;
}

.step p {
  font-size: 15px;
  color: #4b5563;
  grid-column: 2;
}

/* ── Lead card ────────────────────────────────────────── */
.lead-card {
  background: #fff;
  border: 1px solid #eeece8;
  border-left: 4px solid #f59e0b;
  border-radius: 10px;
  padding: 24px 28px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  margin-bottom: 24px;
}

.lead-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.lead-header h3 {
  font-size: 20px;
  font-weight: 700;
}

.orphan-pill {
  display: inline-block;
  background: #fef3c7;
  color: #b45309;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 5px;
  border: 1px solid #fde68a;
  white-space: nowrap;
}

.lead-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px 24px;
  padding: 16px 0;
  border-top: 1px solid #f4f2ee;
  border-bottom: 1px solid #f4f2ee;
  margin-bottom: 20px;
}

.lead-meta dt {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
  margin-bottom: 2px;
}

.lead-meta dd {
  font-size: 14px;
  font-weight: 500;
  color: #111;
}

.lead-scope {
  font-size: 14px;
  color: #374151;
  margin-bottom: 20px;
  line-height: 1.6;
}

.lead-scope strong {
  color: #9ca3af;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 6px;
}

.lead-contact strong {
  display: block;
  color: #9ca3af;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.lead-contact div {
  font-size: 14px;
  color: #111;
  font-weight: 500;
}

.muted {
  color: #6b7280;
  font-weight: 400 !important;
  font-size: 13px !important;
}

.sample-footnote {
  font-size: 14px;
  color: #6b7280;
  padding: 16px 20px;
  background: #f5f4f0;
  border-radius: 8px;
  line-height: 1.5;
}

/* ── Signup CTA section ──────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 96px 24px;
}

.cta-section .section-lead {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.signup-note {
  margin-top: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  border-top: 1px solid #eeece8;
  padding-top: 32px;
  text-align: center;
  color: #6b7280;
  font-size: 13px;
}

.footer-brand {
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.footer-links {
  margin-bottom: 16px;
}

.footer-links a {
  color: #4f46e5;
}

.footer-links a:hover {
  text-decoration: underline;
}

.dot {
  margin: 0 8px;
  color: #d1d5db;
}

.footer-fine {
  font-size: 12px;
  color: #9ca3af;
}

.footer-fine a {
  text-decoration: underline;
}

/* ── Mobile polish ────────────────────────────────────── */
@media (max-width: 560px) {
  .page {
    padding: 16px 16px 48px;
  }
  .hero {
    padding: 48px 0 32px;
  }
  .section {
    padding: 56px 0;
  }
  .cta-section {
    padding: 64px 16px;
  }
  .nav {
    gap: 16px;
  }
  .step {
    grid-template-columns: 1fr;
  }
  .step-num {
    grid-row: auto;
  }
  .step p {
    grid-column: 1;
  }
}
