/* JCA Solutions white paper - Modernist system, mirrors the landing page.
   Archivo, greige canvas, near-black ink, ONE deep-green accent used only on
   the wordmark rule, section numbers, and checkmarks. Flat, no cards.
   Print-optimized: US Letter, real page breaks, footer on every page. */
:root {
  --bg: #f3f2f2;
  --paper: #faf9f5;
  --text: #201e1d;
  --accent: #15764a;
  --ink-1: color-mix(in srgb, var(--text) 84%, transparent);
  --ink-2: color-mix(in srgb, var(--text) 62%, transparent);
  --ink-3: color-mix(in srgb, var(--text) 42%, transparent);
  --hair: color-mix(in srgb, var(--text) 24%, transparent);
  --font: "Archivo", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; }
body { background: var(--bg); color: var(--text); font-family: var(--font);
  text-wrap: pretty; line-height: 1.5; }

.page { max-width: 780px; margin: 0 auto; background: var(--paper);
  padding: clamp(40px, 7vw, 80px) clamp(28px, 7vw, 84px); }

/* ── cover ── */
.cover { min-height: 88vh; display: flex; flex-direction: column; }
.brandline { display: flex; align-items: center; gap: 12px; font-weight: 800;
  font-size: 18px; letter-spacing: -0.01em; }
.brandmark { width: 24px; height: 24px; flex: none; background: var(--accent);
  display: grid; place-items: center; }
.brandmark svg { width: 15px; height: 15px; fill: none; stroke: var(--paper);
  stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.cover-mid { margin-top: auto; margin-bottom: auto; padding: 48px 0; }
.eyebrow { font-weight: 600; font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); }
.cover-title { font-weight: 800; font-size: clamp(40px, 7vw, 68px);
  line-height: 0.98; letter-spacing: -0.035em; margin: 20px 0 0; }
.cover-sub { font-size: clamp(18px, 2.4vw, 22px); line-height: 1.5;
  color: var(--ink-1); max-width: 34ch; margin: 24px 0 0; }
.cover-foot { border-top: 2px solid var(--accent); padding-top: 16px;
  font-size: 14px; color: var(--ink-2); display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 8px; }

/* ── body sections ── */
.section { padding: clamp(30px, 5vw, 52px) 0; border-top: 1px solid var(--hair); }
.section:first-of-type { border-top: none; }
.sec-num { font-weight: 800; font-size: 14px; letter-spacing: 0.12em;
  color: var(--accent); font-feature-settings: "tnum" 1; }
h2 { font-weight: 800; font-size: clamp(26px, 4vw, 38px); line-height: 1.06;
  letter-spacing: -0.025em; margin: 10px 0 0; }
h3 { font-weight: 800; font-size: clamp(18px, 2.4vw, 22px); line-height: 1.2;
  letter-spacing: -0.02em; margin: 26px 0 0; }
p { font-size: clamp(16px, 1.9vw, 17.5px); line-height: 1.62; color: var(--ink-1);
  max-width: 62ch; margin: 16px 0 0; }
p.lead { font-size: clamp(18px, 2.2vw, 20px); color: var(--text); }
.small { font-size: 14px; color: var(--ink-2); }

/* task list - mirrors the site's self-completing checklist (static here) */
.tasks { list-style: none; margin: 26px 0 0; display: flex; flex-direction: column; gap: 14px; }
.task { display: flex; align-items: flex-start; gap: 15px; }
.check { flex: none; width: 28px; height: 28px; margin-top: 1px; background: var(--accent);
  display: grid; place-items: center; }
.check svg { width: 17px; height: 17px; stroke: var(--paper); stroke-width: 3;
  fill: none; stroke-linecap: round; stroke-linejoin: round; }
.task-text { font-weight: 600; font-size: clamp(16px, 2vw, 18px); line-height: 1.3; }

/* steps */
.steps { margin: 24px 0 0; display: flex; flex-direction: column; gap: 22px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 4px 20px; align-items: baseline; }
.step-num { font-weight: 800; font-size: 26px; line-height: 1; color: var(--ink-3);
  font-feature-settings: "tnum" 1; }
.step-title { font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.step-copy { grid-column: 2; margin: 6px 0 0; }

/* Q&A */
.qa { margin: 20px 0 0; display: flex; flex-direction: column; gap: 24px; }
.qa-q { font-weight: 800; font-size: 19px; letter-spacing: -0.015em; }
.qa-a { margin: 8px 0 0; }

/* pull statement */
.pull { font-weight: 800; font-size: clamp(22px, 3.4vw, 30px); line-height: 1.18;
  letter-spacing: -0.02em; color: var(--text); margin: 8px 0 0; max-width: 26ch; }

/* CTA block */
.cta-block { border-top: 2px solid var(--accent); margin-top: 8px; padding-top: 28px; }
.cta-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--accent);
  color: var(--paper); font-weight: 800; font-size: 16px; padding: 15px 24px;
  text-decoration: none; margin-top: 20px; }
.cta-btn svg { width: 17px; height: 17px; fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

footer.doc { border-top: 1px solid var(--hair); margin-top: 8px; padding: 24px 0 0;
  font-size: 13px; color: var(--ink-3); display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 8px; }
.slot { border-bottom: 1px dotted var(--hair); }

/* ── print ── */
@media print {
  @page { size: Letter; margin: 16mm 0; }
  body { background: #fff; }
  .page { max-width: none; background: #fff; padding: 0 20mm; }
  .cover { min-height: calc(100vh - 40mm); page-break-after: always; }
  .section { break-inside: avoid-page; }
  h2 { break-after: avoid; }
  h3 { break-after: avoid; }
  a { color: var(--text); }
}
