:root {
  --bg: #f7f3ea;
  --bg-soft: #fbf8f1;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --ink: #173250;
  --body: #2f3e4b;
  --muted: #64727d;
  --accent: #0f4f78;
  --accent-dark: #0a3654;
  --green: #5f8b67;
  --green-soft: #edf5ef;
  --blue-soft: #eaf3f8;
  --line: #ddd6c9;
  --warn-bg: #fff6ec;
  --warn-line: #e7c5a3;
  --shadow: 0 18px 44px rgba(23, 50, 80, 0.09);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--body);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent);
  font-weight: 750;
}

a:hover {
  color: var(--accent-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(15, 79, 120, 0.34);
  outline-offset: 3px;
}

.site-nav {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 22px;
}

.brand {
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 2px solid var(--green);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--body);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--accent);
}

.hero {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  border-top: 1px solid rgba(221, 214, 201, 0.65);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px 22px 46px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.hero-copy h1,
h1 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

.subhead {
  margin: 20px 0 0;
  max-width: 720px;
  color: var(--body);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions,
.actions,
.sample-actions,
.feedback-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-actions {
  margin-top: 28px;
}

.hero-microcopy {
  margin: 12px 0 0;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(23, 50, 80, 0.14);
  background: var(--surface-strong);
}

.hero-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.trust-strip div {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.35;
}

.notice,
.callout,
.credibility-callout,
.next-step,
.full-kit-validation,
.paid-kit-card {
  max-width: var(--max);
  margin: 22px auto 0;
  padding: 14px 16px;
  border: 1px solid var(--warn-line);
  border-radius: var(--radius);
  background: var(--warn-bg);
  color: #6d4525;
  text-align: left;
  line-height: 1.5;
}

.hero .notice {
  margin-top: 24px;
}

.credibility-callout,
.next-step,
.full-kit-validation,
.paid-kit-card {
  background: var(--surface);
  border-color: var(--line);
  color: var(--body);
}

.credibility-callout h2 {
  font-size: clamp(26px, 2.7vw, 36px);
}

main,
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 46px 22px;
}

.section + .section {
  padding-top: 26px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.section h2,
h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
  margin: 0 0 14px;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  margin: 0 0 8px;
  font-size: 19px;
}

p,
li {
  line-height: 1.62;
}

.lede {
  font-size: 18px;
  color: var(--body);
  margin-top: 0;
}

.small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.card-grid,
.template-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.two-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.three-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card,
.panel,
.content-card,
.template-card,
.lead-box,
.timeline-card,
.resource-card,
.article-card,
.output,
.feedback-panel,
.sample-access {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(23, 50, 80, 0.05);
}

.card,
.content-card,
.template-card,
.timeline-card,
.resource-card,
.article-card {
  padding: 20px;
}

.card ul,
.timeline-card ul,
.resource-card ul,
.content-card ul {
  padding-left: 21px;
  margin: 10px 0 0;
}

.card li,
.timeline-card li,
.resource-card li,
.content-card li {
  margin: 8px 0;
}

.empathy-grid .card {
  display: flex;
  align-items: flex-start;
  min-height: 118px;
}

.empathy-grid .card p {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
}

.empathy-grid .card::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border: 2px solid var(--green);
  border-radius: 4px;
  background: var(--surface-strong);
  margin: 4px 12px 0 0;
}

.reassurance {
  max-width: 820px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
}

.icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-weight: 900;
}

.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  position: relative;
  padding-left: 28px;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 15px;
  height: 15px;
  border: 2px solid var(--green);
  border-radius: 4px;
  background: var(--surface-strong);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}

.timeline-card {
  padding: 20px;
  position: relative;
}

.timeline-card::before {
  counter-increment: step;
  content: counter(step);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: white;
  font-weight: 900;
  margin-bottom: 14px;
}

.band {
  background: var(--surface-strong);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.app-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 46px 22px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: start;
}

.panel {
  padding: 24px;
}

label {
  display: block;
  margin: 16px 0 7px;
  color: var(--ink);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  font: inherit;
  background: white;
  color: var(--body);
}

textarea {
  min-height: 92px;
  resize: vertical;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

button,
.button {
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 18px;
  font-weight: 850;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.2;
}

.primary {
  background: var(--accent);
  color: white;
}

.primary:hover {
  background: var(--accent-dark);
  color: white;
}

.secondary {
  background: var(--surface-strong);
  color: var(--accent);
  border-color: #b7c9d5;
}

.secondary:hover {
  border-color: var(--accent);
}

.full-width {
  width: 100%;
  margin-top: 18px;
  font-size: 16px;
}

.output {
  padding: 20px;
  min-height: 560px;
}

.output h3 {
  margin: 20px 0 7px;
  color: var(--accent-dark);
}

.output h3:first-child {
  margin-top: 0;
}

.output ul {
  margin-top: 7px;
  padding-left: 23px;
}

.output li {
  margin: 7px 0;
}

.next-step {
  max-width: none;
  margin-top: 24px;
  background: var(--green-soft);
  border-color: #c9decf;
}

.next-step h3 {
  margin-top: 0;
  color: var(--ink);
}

.paid-kit-card {
  max-width: none;
  background: linear-gradient(135deg, #fffdf8, #edf5ef);
  border-color: #c9decf;
}

.paid-kit-card h2,
.paid-kit-card h3,
.paid-kit-mini h3 {
  margin-top: 0;
}

.paid-kit-mini {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #c9decf;
}

.product-eyebrow {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0;
  margin: 0 0 12px;
}

.price-line {
  display: inline-flex;
  margin: 18px 0 0;
  padding: 9px 12px;
  border: 1px solid #c9decf;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--green-soft);
  font-weight: 850;
}

.pill {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--accent-dark);
  font-size: 13px;
  margin: 4px 4px 4px 0;
}

.lead-box,
.feedback-panel,
.sample-access {
  margin-top: 18px;
  padding: 18px;
}

.lead-box {
  background: linear-gradient(135deg, #f3f8fb, #fffdf8 62%);
}

.checklist-offer {
  padding: 26px;
}

.checklist-offer h2 {
  margin-bottom: 10px;
}

.offer-list {
  margin: 12px 0 10px;
  padding-left: 21px;
}

.offer-list li {
  margin: 6px 0;
}

.price-note {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px;
  margin: 12px 0;
  color: var(--ink);
  line-height: 1.45;
}

.sample-access {
  background: var(--green-soft);
  border-color: #c9decf;
}

.full-kit-validation {
  max-width: none;
  background: white;
}

.sample-access.hidden,
.feedback-panel.hidden {
  display: none;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.email-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr 0.8fr auto;
  gap: 10px;
  align-items: end;
}

.metric-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.direct-checklist {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.content-main {
  max-width: 980px;
  margin: 0 auto;
  padding: 44px 22px 58px;
}

.content-card {
  padding: 26px;
}

.content-card h1 {
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.04;
  margin-bottom: 16px;
}

.content-card h2,
.resource-card h2,
.article-card h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.16;
}

.content-card .callout {
  margin: 20px 0 0;
}

.content-card + .content-card {
  margin-top: 18px;
}

.content-card table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  width: 50%;
}

.script-list p {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-wrap table {
  margin: 18px 0 4px;
}

.blank-line {
  display: block;
  min-width: 120px;
  min-height: 1.25em;
  border-bottom: 2px solid #8899a3;
}

.blank-line.short {
  min-width: 78px;
}

th,
td {
  border: 1px solid var(--line);
  padding: 10px;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

th {
  background: var(--green-soft);
  color: var(--accent-dark);
}

.binder-sample {
  max-width: 980px;
}

.printable-checklist .content-card {
  scroll-margin-top: 18px;
}

.printable-checklist .callout {
  max-width: none;
}

.print-table td {
  min-height: 42px;
  height: 42px;
}

.wide-table {
  table-layout: fixed;
}

.binder-page {
  margin-bottom: 22px;
  break-inside: avoid;
  page-break-inside: avoid;
}

.sample-page-label,
.article-label {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--accent-dark);
  font-weight: 850;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.full-binder-cta {
  border: 2px solid #c9decf;
}

.footer {
  max-width: 920px;
  margin: 5px auto 40px;
  padding: 0 20px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 960px) {
  .hero-inner,
  .split,
  .app-main {
    grid-template-columns: 1fr;
  }

  .timeline,
  .card-grid,
  .template-grid,
  .article-grid,
  .three-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .email-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 12px;
  }

  .hero-inner,
  main,
  .section,
  .app-main,
  .content-main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-inner {
    padding-top: 32px;
    gap: 24px;
  }

  .hero-copy h1,
  h1 {
    font-size: 36px;
    line-height: 1.06;
  }

  .subhead {
    font-size: 18px;
  }

  .hero-media img {
    aspect-ratio: 16 / 10;
  }

  .trust-strip,
  .timeline,
  .card-grid,
  .template-grid,
  .article-grid,
  .two-grid,
  .three-grid,
  .grid,
  .email-row {
    grid-template-columns: 1fr;
  }

  button,
  .button {
    width: 100%;
  }

  .binder-sample table {
    min-width: 560px;
  }

  .binder-sample .table-wrap {
    margin-inline: -4px;
    padding-inline: 4px;
  }

  .empathy-grid .card {
    min-height: auto;
  }
}

@media print {
  .site-nav,
  .hero,
  .panel.form-panel,
  .actions,
  .footer,
  .notice,
  .lead-box,
  .feedback-panel,
  .trust-strip,
  .full-binder-cta,
  .paid-kit-card,
  .paid-kit-mini,
  .section {
    display: none !important;
  }

  .app-main {
    display: block;
    padding: 0;
  }

  .panel,
  .content-card {
    border: 0;
    box-shadow: none;
  }

  body {
    background: white;
  }

  .binder-page {
    break-after: page;
    page-break-after: always;
  }

  .free-checklist-page {
    color: #111;
    font-size: 10pt;
  }

  .free-checklist-page .hero {
    display: block !important;
    background: white;
    border: 0;
  }

  .free-checklist-page .hero-inner {
    display: block;
    padding: 0 0 10px;
  }

  .free-checklist-page .hero-media,
  .free-checklist-page .hero-actions {
    display: none !important;
  }

  .free-checklist-page .hero-copy h1 {
    color: #111;
    font-size: 24pt;
    line-height: 1.1;
    margin-bottom: 6px;
  }

  .free-checklist-page .subhead {
    color: #222;
    font-size: 11pt;
    line-height: 1.35;
    margin: 0;
  }

  .free-checklist-page .content-main {
    max-width: none;
    padding: 0;
  }

  .free-checklist-page .content-card {
    padding: 0 0 12px;
    margin: 0 0 14px;
    border: 0;
    box-shadow: none;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .free-checklist-page .content-card h2,
  .free-checklist-page .content-card h3 {
    color: #111;
    break-after: avoid;
    page-break-after: avoid;
  }

  .free-checklist-page .binder-page {
    break-after: auto;
    page-break-after: auto;
  }

  .free-checklist-page .full-binder-cta {
    display: none !important;
  }

  .free-checklist-page .table-wrap {
    overflow: visible;
  }

  .free-checklist-page table {
    border-collapse: collapse;
    font-size: 8.5pt;
    table-layout: fixed;
  }

  .free-checklist-page th,
  .free-checklist-page td {
    border: 1px solid #777;
    color: #111;
    padding: 5px;
    height: 28px;
  }

  .free-checklist-page th {
    background: #f1f1f1 !important;
  }

  .free-checklist-page .callout {
    border-color: #888;
    background: white;
    color: #111;
    padding: 8px;
  }

  .free-checklist-page .sample-page-label {
    border: 1px solid #777;
    background: white;
    color: #111;
  }

  .kit-download-page {
    color: #111;
    font-size: 10pt;
  }

  .kit-download-page .hero {
    display: block !important;
    background: white;
    border: 0;
  }

  .kit-download-page .hero-inner {
    display: block;
    padding: 0 0 10px;
  }

  .kit-download-page .hero-media,
  .kit-download-page .hero-actions,
  .kit-download-page .site-nav,
  .kit-download-page .footer {
    display: none !important;
  }

  .kit-download-page .hero-copy h1 {
    color: #111;
    font-size: 24pt;
    line-height: 1.1;
    margin-bottom: 6px;
  }

  .kit-download-page .subhead {
    color: #222;
    font-size: 11pt;
    line-height: 1.35;
    margin: 0;
  }

  .kit-download-page .content-main {
    max-width: none;
    padding: 0;
  }

  .kit-download-page .content-card,
  .kit-download-page .card {
    border: 0;
    box-shadow: none;
  }

  .kit-download-page .content-card {
    padding: 0 0 12px;
    margin: 0 0 14px;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .kit-download-page .content-card h2,
  .kit-download-page .content-card h3 {
    color: #111;
    break-after: avoid;
    page-break-after: avoid;
  }

  .kit-download-page .table-wrap {
    overflow: visible;
  }

  .kit-download-page table {
    border-collapse: collapse;
    font-size: 8pt;
    table-layout: fixed;
  }

  .kit-download-page th,
  .kit-download-page td {
    border: 1px solid #777;
    color: #111;
    padding: 5px;
    height: 26px;
  }

  .kit-download-page th {
    background: #f1f1f1 !important;
  }

  .kit-download-page .callout,
  .kit-download-page .notice {
    display: block !important;
    border-color: #888;
    background: white;
    color: #111;
    padding: 8px;
  }

  .kit-download-page .sample-page-label {
    border: 1px solid #777;
    background: white;
    color: #111;
  }
}
