/* ── Variables ── */
:root {
  --bg: #faf8f3;
  --bg-warm: #f5f0e6;
  --surface: #ffffff;
  --accent: #c9640a;
  --accent-light: #f3e0ce;
  --text: #1a1917;
  --text-muted: #78716c;
  --border: #e4ddd3;
  --shadow: 0 2px 12px rgba(26,25,23,0.07);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,243,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 56px;
  display: flex;
  align-items: center;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* ── Hero ── */
.hero {
  padding: 6rem 2rem 5rem;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 38ch;
  margin-bottom: 2.5rem;
}
.hero-inputs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.input-group { display: flex; flex-direction: column; gap: 0.35rem; }
.input-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.input-group input {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  outline: none;
  transition: border-color 0.2s;
}
.input-group input:focus { border-color: var(--accent); }
.hero-cta-row { display: flex; align-items: center; gap: 1rem; }
.hero-cta-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ── Mockup ── */
.mockup-window {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mockup-header {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.mockup-dots {
  display: flex;
  gap: 0.4rem;
}
.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.mockup-dots span:first-child { background: #f87171; }
.mockup-dots span:nth-child(2) { background: #fbbf24; }
.mockup-dots span:nth-child(3) { background: #34d399; }
.mockup-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.mockup-body { padding: 1.25rem; }
.mock-pdf { background: #ffffff; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.mp-cover {
  background: linear-gradient(135deg, #1a1917 0%, #3d2c18 100%);
  padding: 1.5rem;
  color: #fff;
}
.mp-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.mp-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.mp-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
}
.mp-sections {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.mp-s {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mp-s:last-child { border-bottom: none; }
.mp-s::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Shared section vars ── */
.section-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.section-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1rem;
}

/* ── How ── */
.how { padding: 6rem 2rem; background: var(--surface); border-bottom: 1px solid var(--border); }
.how-inner { max-width: 1120px; margin: 0 auto; }
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 3rem; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.step:last-child { border-bottom: 1px solid var(--border); }
.step-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  letter-spacing: -0.04em;
  padding-top: 0.2rem;
}
.step-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 48ch;
}

/* ── Samples ── */
.samples { padding: 6rem 2rem; background: var(--bg); border-bottom: 1px solid var(--border); }
.samples-inner { max-width: 1120px; margin: 0 auto; }
.samples-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 48ch;
  margin-bottom: 2.5rem;
}
.sample-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.sample-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.sc-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.sc-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.sc-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.sc-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.75;
}

/* ── Testimonials ── */
.testimonials { padding: 6rem 2rem; background: var(--surface); border-bottom: 1px solid var(--border); }
.testimonials-inner { max-width: 1120px; margin: 0 auto; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 3rem 0 3.5rem; }
.quote { }
.quote-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0.75rem;
}
.quote-attr { font-size: 0.78rem; color: var(--text-muted); }
.pain-stat {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 2.5rem;
}
.pain-num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.05em;
  line-height: 1;
  flex-shrink: 0;
}
.pain-num span { font-size: 2.5rem; }
.pain-label { font-size: 1rem; color: var(--text-muted); line-height: 1.6; max-width: 52ch; }
.pain-label strong { color: var(--text); font-weight: 600; }

/* ── Closing ── */
.closing { padding: 7rem 2rem; background: var(--text); position: relative; overflow: hidden; }
.closing-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,100,10,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.closing-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
}
.closing-statement {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 56ch;
  margin: 0 auto;
}

/* ── Footer ── */
.footer { padding: 3rem 2rem; background: var(--bg); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.footer-copy { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero { padding: 3.5rem 1.5rem 3rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-mockup { order: -1; }
  .mockup-window { max-width: 380px; }
  .step { grid-template-columns: 56px 1fr; gap: 0 1.5rem; }
  .step-num { font-size: 2rem; }
  .sample-cards { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .pain-stat { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.5rem; }
  .pain-num { font-size: 3rem; }
  .how { padding: 4rem 1.5rem; }
  .samples { padding: 4rem 1.5rem; }
  .testimonials { padding: 4rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .section-headline { font-size: 1.7rem; }
}