:root {
  color-scheme: light;
  --ink: #16211f;
  --muted: #5a6864;
  --line: #d8e2de;
  --paper: #f8fbfa;
  --panel: #ffffff;
  --accent: #0f766e;
  --accent-dark: #115e59;
  --warn: #8a4b00;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.print-body {
  background: #ffffff;
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
}

.site-header {
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 760;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 1.25rem 3rem;
}

.hero h1 {
  max-width: 760px;
  margin: 0.2rem 0 1rem;
  font-size: 4rem;
  line-height: 1;
}

.lede {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.25rem;
}

.eyebrow {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1rem;
  border: 1px solid var(--accent);
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.trust,
.form-note {
  color: var(--warn);
  font-size: 0.95rem;
}

.preview-card,
.card,
.blueprint-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(18, 39, 33, 0.06);
}

.preview-card {
  align-self: start;
  padding: 1.25rem;
}

.blueprint-visual {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.preview-card h2,
.card h3 {
  margin-top: 0;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.band {
  max-width: none;
  padding-left: max(1.25rem, calc((100vw - 1180px) / 2 + 1.25rem));
  padding-right: max(1.25rem, calc((100vw - 1180px) / 2 + 1.25rem));
  background: #eaf3f0;
}

.section-heading {
  max-width: 780px;
}

.section-heading h2 {
  margin: 0.25rem 0 0.75rem;
  font-size: 2.35rem;
  line-height: 1.1;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.card {
  padding: 1rem;
}

.card p {
  color: var(--muted);
}

.card-cta {
  display: inline-flex;
  color: var(--accent-dark) !important;
  font-weight: 700;
  text-decoration: none;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.guide-card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  min-height: 16rem;
}

.guide-card h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.2;
}

.guide-card-actions,
.guide-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.guide-header {
  max-width: 820px;
}

.guide-header h1 {
  margin: 0.25rem 0 0.75rem;
  font-size: 3rem;
  line-height: 1.05;
}

.guide-header p {
  color: var(--muted);
}

.guide-body {
  max-width: 820px;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.guide-body h1 {
  display: none;
}

.guide-body p,
.guide-body li {
  color: var(--ink);
  font-size: 1.08rem;
}

.guide-related {
  padding-top: 1rem;
}

.guide-claim {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 1rem;
  align-items: start;
  max-width: 920px;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.guide-claim h2 {
  margin: 0.25rem 0 0.5rem;
  font-size: 1.55rem;
  line-height: 1.2;
}

.guide-claim-form {
  margin-top: 0;
}

.claim-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: 1rem;
  align-items: start;
  margin-top: 1.5rem;
}

.claim-summary {
  padding: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.claim-summary h2 {
  margin: 0.25rem 0 0.5rem;
  font-size: 1.5rem;
  line-height: 1.2;
}

.claim-summary p,
.claim-summary li {
  color: var(--muted);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 820px;
  margin-top: 1.25rem;
}

.scanner-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1rem;
  align-items: start;
  margin-top: 1.5rem;
}

.scanner-form {
  margin-top: 0;
}

.scanner-side,
.scanner-result,
.finding {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.scanner-side {
  padding: 1rem;
}

.scanner-side h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.scanner-result {
  max-width: 920px;
  margin-top: 1.5rem;
  padding: 1.25rem;
}

.scanner-result h2 {
  margin: 0.2rem 0 0.5rem;
  font-size: 2rem;
  line-height: 1.1;
}

.scanner-result.red {
  border-color: #fecaca;
  background: #fff5f5;
}

.scanner-result.amber {
  border-color: #e6c886;
  background: #fff8e7;
}

.scanner-result.green {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
}

.finding {
  padding: 0.85rem;
}

.finding p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.activity-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.activity-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.activity-row h2 {
  margin: 0.2rem 0 0.35rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

.activity-row p {
  margin: 0.2rem 0;
  color: var(--muted);
}

.activity-meta {
  display: grid;
  justify-items: end;
  gap: 0.25rem;
  color: var(--muted);
}

.activity-meta strong {
  color: var(--accent-dark);
  font-size: 1.35rem;
}

.activity-data {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.activity-data div {
  min-width: 0;
}

.activity-data dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.activity-data dd {
  margin: 0.2rem 0 0;
  overflow-wrap: anywhere;
}

.activity-source-context {
  grid-column: 1 / -1;
  padding: 0.85rem;
  background: #f4faf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.activity-source-context dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0.55rem 0 0;
}

.activity-source-context dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.activity-source-context dd {
  margin: 0.2rem 0 0;
  overflow-wrap: anywhere;
}

.follow-up-kit {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1.15fr);
  gap: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.follow-up-kit h3 {
  margin: 0.2rem 0 0.35rem;
  font-size: 1rem;
}

.follow-up-kit p {
  margin: 0.35rem 0;
}

.follow-up-kit pre {
  max-height: 13rem;
  overflow: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin: 0.5rem 0 0.75rem;
  color: var(--muted);
  font: inherit;
}

.blueprint-admin-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 1rem;
  align-items: start;
  margin-top: 1.5rem;
}

.blueprint-admin-panel {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.blueprint-admin-panel h2 {
  margin: 0.25rem 0 0.75rem;
  font-size: 1.35rem;
  line-height: 1.2;
}

.blueprint-admin-panel pre {
  max-height: 22rem;
  overflow: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin: 0.75rem 0;
  color: var(--muted);
  font: inherit;
}

.module-list.compact-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.compact-list article {
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.compact-list h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.compact-list p {
  margin: 0;
  color: var(--muted);
}

.review-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.review-row,
.review-empty {
  padding: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-row h2 {
  margin: 0.2rem 0 0.5rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

.review-row p,
.review-empty p {
  color: var(--muted);
}

.database-target-panel {
  max-width: 920px;
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.database-target-panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  line-height: 1.2;
}

.database-target-data {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
}

.database-target-data div {
  min-width: 0;
}

.database-target-data dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.database-target-data dd {
  margin: 0.2rem 0 0;
  overflow-wrap: anywhere;
}

.print-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  background: #ffffff;
}

.print-header {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.print-header h1 {
  margin: 0.25rem 0 0.75rem;
  font-size: 2.4rem;
  line-height: 1.05;
}

.print-content {
  margin-top: 1.5rem;
}

.print-content h1 {
  display: none;
}

.print-content p,
.print-content li {
  font-size: 1.05rem;
}

.print-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.blueprint-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 820px;
  margin-top: 1.5rem;
  padding: 1rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 650;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.65rem 0.7rem;
  font: inherit;
}

input,
select {
  min-height: 2.6rem;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.9rem;
}

legend {
  color: var(--muted);
  font-weight: 650;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
}

.request-form {
  max-width: 920px;
}

.full-span,
.request-form fieldset,
.submit-button {
  grid-column: 1 / -1;
}

.option-stack {
  display: grid;
  gap: 0.7rem;
}

.radio-row,
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 500;
}

.radio-row input,
.check-row input {
  width: auto;
  min-height: auto;
  margin-top: 0.35rem;
}

.radio-row span,
.check-row span {
  display: grid;
  gap: 0.15rem;
}

.field-error {
  color: #9f1239;
  font-size: 0.9rem;
  font-weight: 650;
}

.status-banner {
  max-width: 820px;
  margin: 1.5rem 0;
  padding: 1rem;
  border: 1px solid #e6c886;
  border-radius: 8px;
  background: #fff8e7;
  color: #4d3510;
}

.status-banner p {
  margin: 0.35rem 0 0;
}

.module-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.site-footer {
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .site-header,
  .hero,
  .blueprint-form,
  .guide-claim,
  .claim-layout,
  .scanner-layout,
  .result-grid,
  .activity-row,
  .activity-data {
    grid-template-columns: 1fr;
  }

  .activity-source-context dl {
    grid-template-columns: 1fr;
  }

  .database-target-data {
    grid-template-columns: 1fr;
  }

  .blueprint-admin-grid {
    grid-template-columns: 1fr;
  }

  .module-list.compact-list {
    grid-template-columns: 1fr;
  }

  .follow-up-kit {
    grid-template-columns: 1fr;
  }

  .activity-meta {
    justify-items: start;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 2.5rem;
  }

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

  .module-list {
    grid-template-columns: 1fr;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.4rem;
    line-height: 1.05;
  }

  .guide-header h1 {
    font-size: 2.15rem;
  }

  .section-heading h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 420px) {
  .button {
    width: 100%;
  }
}

@media print {
  .site-header,
  .site-footer,
  .button {
    display: none;
  }

  body,
  body.print-body {
    background: #ffffff;
    color: #000000;
  }

  .print-page {
    max-width: none;
    padding: 0;
  }
}

/* ─── Resource hero / book cover ─────────────────────────────────────────── */

.resource-hero {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

.book-cover-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.book-cover {
  position: relative;
  display: flex;
  width: 160px;
  min-height: 220px;
  border-radius: 4px 8px 8px 4px;
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: -5px 5px 0 0 rgba(0,0,0,0.18), 6px 12px 28px rgba(15,118,110,0.28);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.book-cover:hover {
  transform: translateY(-3px) rotate(0.5deg);
  box-shadow: -5px 8px 0 0 rgba(0,0,0,0.18), 8px 18px 36px rgba(15,118,110,0.32);
}

.book-spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 14px;
  background: rgba(0,0,0,0.22);
  border-radius: 4px 0 0 4px;
}

.book-cover-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 1rem 0.75rem 0.85rem 1.25rem;
}

.book-cover-eyebrow {
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.book-cover-title {
  flex: 1;
  display: flex;
  align-items: flex-start;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1.25;
  color: #ffffff;
}

.book-pdf-badge {
  align-self: flex-end;
  display: inline-block;
  padding: 0.15rem 0.45rem;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-transform: uppercase;
}

.book-download-btn {
  width: 160px;
  text-align: center;
}

.resource-hero-copy h1 {
  margin: 0.25rem 0 0.65rem;
  font-size: 2.6rem;
  line-height: 1.05;
}

.resource-hero-copy .resource-summary {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.guide-why {
  margin: 0.75rem 0 1.25rem;
  padding: 0.85rem 1rem;
  background: #eaf3f0;
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
}

/* ─── Guide body — document-style reading ───────────────────────────────── */

.guide-body {
  line-height: 1.75;
}

.guide-body h2 {
  margin: 2rem 0 0.65rem;
  font-size: 1.55rem;
  line-height: 1.15;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.3rem;
}

.guide-body h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--accent-dark);
}

.guide-body h4 {
  margin: 1.25rem 0 0.4rem;
  font-size: 1rem;
  font-weight: 760;
}

.guide-body ul,
.guide-body ol {
  padding-left: 1.5rem;
  margin: 0.6rem 0 1rem;
}

.guide-body li {
  margin-bottom: 0.35rem;
}

.guide-body ul li::marker {
  color: var(--accent);
}

.guide-body blockquote {
  margin: 1.25rem 0;
  padding: 0.85rem 1.1rem;
  background: #eaf3f0;
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-style: italic;
}

.guide-body blockquote p {
  margin: 0;
  color: var(--ink);
}

.guide-body pre {
  background: #f3f7f6;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1rem 1.1rem;
  overflow-x: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0.75rem 0 1.25rem;
}

.guide-body code {
  font-size: 0.88em;
}

/* Tables — bordered + zebra */
.guide-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.97rem;
}

.guide-body th {
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  text-align: left;
  padding: 0.55rem 0.85rem;
}

.guide-body td {
  padding: 0.5rem 0.85rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.guide-body tr:nth-child(even) td {
  background: #f3f7f6;
}

.guide-body tr:last-child td {
  border-bottom: none;
}

/* ─── Guide list page — mini book-cover card ────────────────────────────── */

.guide-card-inner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.guide-card-book-cover {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 70px;
  min-height: 96px;
  border-radius: 2px 5px 5px 2px;
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: -3px 3px 0 0 rgba(0,0,0,0.16), 3px 6px 14px rgba(15,118,110,0.22);
  padding: 0.55rem 0.45rem 0.45rem 0.7rem;
  overflow: hidden;
}

.guide-card-book-spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7px;
  background: rgba(0,0,0,0.2);
  border-radius: 2px 0 0 2px;
}

.guide-card-book-title {
  font-size: 0.56rem;
  font-weight: 760;
  line-height: 1.25;
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.guide-card-pdf-badge {
  align-self: flex-end;
  margin-top: 0.35rem;
  display: inline-block;
  padding: 0.1rem 0.3rem;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 2px;
  font-size: 0.52rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-transform: uppercase;
}

.guide-card-content {
  flex: 1;
  min-width: 0;
}

.guide-card-content h2 {
  margin: 0.2rem 0 0.5rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 820px) {
  .resource-hero {
    grid-template-columns: 1fr;
  }

  .book-cover-wrap {
    flex-direction: row;
    align-items: flex-end;
  }

  .resource-hero-copy h1 {
    font-size: 2rem;
  }
}

@media (max-width: 520px) {
  .guide-card-inner {
    flex-direction: column;
  }

  .guide-card-book-cover {
    width: 100%;
    min-height: 60px;
    flex-direction: row;
    align-items: center;
    padding: 0.5rem 0.75rem 0.5rem 1rem;
  }

  .guide-card-book-title {
    -webkit-line-clamp: 2;
    font-size: 0.7rem;
  }
}

/* ─── What's inside — guide detail section list ──────────────────────────── */

.whats-inside {
  max-width: 680px;
  margin: 2.5rem auto 2rem;
  padding: 2rem 2rem 1.75rem;
  background: var(--surface, #f9fafb);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 8px;
}

.whats-inside h2 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  color: var(--text-strong, #111827);
}

.whats-inside-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.whats-inside-list li {
  padding: 0.45rem 0 0.45rem 1.6rem;
  position: relative;
  border-bottom: 1px solid var(--border, #e2e8f0);
  font-size: 0.95rem;
  color: var(--text, #374151);
  line-height: 1.4;
}

.whats-inside-list li:last-child {
  border-bottom: none;
}

.whats-inside-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent, #0f766e);
  font-weight: 700;
}

.whats-inside-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

/* ─── Print page nav links ───────────────────────────────────────────────── */

.print-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.print-guide-body {
  margin-top: 2rem;
}
