:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --ink: #1b241f;
  --ink-strong: #101813;
  --body-copy: #344139;
  --muted: #5c6a61;
  --muted-strong: #435147;
  --canvas: #f5f3ec;
  --canvas-soft: #fbfaf5;
  --surface: #fffefa;
  --surface-alt: #f6f8f3;
  --line: #d7dece;
  --line-strong: #bdc9ba;
  --green: #0e5b43;
  --green-dark: #073d2d;
  --green-soft: #e7f1ea;
  --green-ink: #093f2f;
  --blue: #2b4f7a;
  --blue-soft: #eef4fa;
  --gold: #b88722;
  --gold-soft: #fff7df;
  --red: #9f3f31;
  --red-soft: #fff1ed;
  --radius-card: 8px;
  --radius-control: 6px;
  --shadow-card: 0 1px 0 rgba(16, 24, 19, 0.04),
    0 14px 36px rgba(35, 47, 38, 0.055);
  --shadow-lift: 0 1px 0 rgba(16, 24, 19, 0.05),
    0 20px 46px rgba(35, 47, 38, 0.11);
  --focus-ring: 0 0 0 3px rgba(14, 91, 67, 0.2);
  background: var(--canvas);
  color: var(--ink);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--body-copy);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  border: 2px solid #ffffff;
  border-radius: var(--radius-control);
  background: var(--green-dark);
  padding: 10px 14px;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 120ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  font-size: 0;
  line-height: 0;
  white-space: nowrap;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  border-bottom: 1px solid #d9ddd2;
  background: #ffffff;
}

.topbar > a {
  color: #1f2721;
  flex: 0 0 auto;
  font-weight: 800;
  text-decoration: none;
}

.topbar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: flex-end;
}

.topbar nav a {
  color: #30455f;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.topbar > a {
  display: inline-grid;
  gap: 2px;
  line-height: 1.05;
}

.topbar > a small {
  color: #68756c;
  font-size: 0.72rem;
  font-weight: 700;
}

.site-orientation {
  display: flex;
  position: relative;
  z-index: 30;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d9ddd2;
  background: #f7fafc;
  padding: 10px 24px;
  color: #3a473d;
  font-size: 0.94rem;
  line-height: 1.45;
}

.site-orientation-copy {
  display: flex;
  flex: 1 1 420px;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.site-orientation strong {
  color: #1f2721;
  white-space: nowrap;
}

.site-orientation-short {
  display: none;
}

.site-search-mini {
  position: relative;
  flex: 0 1 390px;
  min-width: min(100%, 280px);
  margin: 0;
}

.site-search-mini label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.site-search-mini label span:not(.visually-hidden) {
  color: #435147;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-search-mini input[type="search"] {
  width: 100%;
  min-height: 38px;
  border: 1px solid #9eb9a7;
  border-radius: 6px;
  background: #fffffb;
  padding: 8px 10px;
  color: #101813;
  font: inherit;
  font-weight: 700;
}

.site-header-search {
  flex: 1 1 620px;
  max-width: 720px;
  margin: 0 auto;
}

.site-header-search label {
  display: block;
}

.site-header-search input[type="search"] {
  min-height: 42px;
  border-color: #b7cbbd;
  border-radius: 7px;
  background: #fbfdfb;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-search-results {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(560px, calc(100vw - 32px));
  max-height: min(72vh, 620px);
  overflow: auto;
  grid-template-columns: 1fr;
  border: 1px solid #bdc9ba;
  border-radius: 8px;
  background: #fffefa;
  padding: 10px;
  box-shadow: 0 20px 46px rgba(35, 47, 38, 0.16);
}

.site-search-results[hidden] {
  display: none;
}

body.home-page .site-orientation {
  justify-content: flex-start;
}

body.home-page .site-orientation .site-search-mini {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  border-top: 1px solid var(--line);
  background: #ffffff;
  padding: 34px 32px 42px;
}

.site-footer-summary {
  display: grid;
  gap: 8px;
  align-content: start;
}

.site-footer-summary strong {
  color: var(--ink-strong);
  font-size: 1.02rem;
}

.site-footer-summary p {
  max-width: 44ch;
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.94rem;
  line-height: 1.55;
}

.site-footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.site-footer-links div {
  display: grid;
  gap: 8px;
  align-content: start;
}

.site-footer-links h2 {
  margin: 0 0 2px;
  color: var(--ink-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer-links a {
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

@media (max-width: 900px) {
  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .site-footer {
    padding: 28px 18px 34px;
  }

  .site-footer-links {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-footer-links div {
    border-top: 1px solid var(--line);
    padding-top: 13px;
  }
}

a {
  color: #0e5b43;
}

.shell {
  box-sizing: border-box;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px;
}

.panel {
  background: #ffffff;
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  padding: 32px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #52675a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 16px;
  font-size: 2rem;
  line-height: 1.15;
}

h2 {
  margin-top: 0;
}

p {
  max-width: 680px;
  line-height: 1.6;
}

dl {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
}

dt {
  font-weight: 700;
}

dd {
  margin: 4px 0 0;
}

.messages {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.message {
  margin: 0;
  padding: 10px 12px;
  border-radius: 6px;
  background: #edf5ee;
  border: 1px solid #cbdccb;
}

.message.error {
  background: #fff0ed;
  border-color: #e6bbb2;
}

.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}

button,
.button {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid #245c40;
  border-radius: 6px;
  background: #245c40;
  color: #ffffff;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.button.secondary {
  background: #ffffff;
  color: #245c40;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.stats-grid div,
.empty,
.details,
.preview,
.dashboard-grid article {
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
}

.stats-grid strong {
  display: block;
  font-size: 1.7rem;
}

.stat-link {
  display: block;
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
  color: inherit;
  text-decoration: none;
}

.stats-grid span,
.muted {
  color: #68756c;
}

.two-column,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: start;
}

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

.section-gap {
  margin-top: 28px;
}

.list {
  display: grid;
  gap: 10px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.tabs a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid #bdc8ba;
  border-radius: 6px;
  background: #ffffff;
  text-decoration: none;
}

.tabs a.active {
  border-color: #245c40;
  background: #e8f1e9;
}

.review-list {
  display: grid;
  gap: 14px;
}

.review-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
  gap: 20px;
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
}

.review-card h2 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.review-card h3 {
  margin: 14px 0 8px;
  font-size: 0.95rem;
}

.compact-actions {
  margin: 10px 0 14px;
}

.compact-actions .button {
  min-height: 34px;
  padding: 6px 10px;
}

.source-excerpt {
  margin: 12px 0;
  padding: 12px;
  border-left: 4px solid #bdc8ba;
  background: #f7f7f3;
}

.source-excerpt p {
  margin: 6px 0 0;
}

.inline-review {
  display: grid;
  gap: 10px;
  align-self: start;
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #f7f7f3;
  padding: 14px;
}

.inline-review h3 {
  margin: 0;
}

.bulk-review {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(240px, 1.2fr) minmax(150px, 0.5fr) auto;
  gap: 10px;
  align-items: start;
  margin-bottom: 18px;
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
}

.list-item {
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
}

.list-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.list-item p {
  margin: 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
}

.compact-table {
  margin-bottom: 12px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 11px 12px;
  border-bottom: 1px solid #e5e8df;
  text-align: left;
  vertical-align: top;
}

th {
  background: #f1f4ec;
}

.form-grid,
.form-stack {
  display: grid;
  gap: 16px;
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 20px;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-stack {
  align-self: start;
}

.span-2 {
  grid-column: span 2;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  box-sizing: border-box;
  min-height: 38px;
  border: 1px solid #bdc8ba;
  border-radius: 6px;
  padding: 8px 10px;
  font: inherit;
}

textarea {
  min-height: 110px;
}

.checkbox-label {
  display: flex;
  grid-template-columns: none;
  gap: 10px;
  align-items: center;
}

.checkbox-label input {
  width: auto;
  min-height: auto;
}

pre {
  white-space: pre-wrap;
  line-height: 1.5;
}

.article-preview {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.article-hero,
.article-section,
.evidence-item {
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
}

.article-hero,
.article-section {
  padding: 24px;
}

.article-hero h1 {
  font-size: 2.4rem;
}

.notice {
  color: #715b1d;
}

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

.snapshot-list div {
  border-top: 1px solid #e5e8df;
  padding-top: 10px;
}

.evidence-item {
  margin-top: 12px;
  padding: 16px;
}

.evidence-item h3 {
  margin: 0 0 8px;
}

.trace {
  color: #52675a;
  font-size: 0.9rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 10px;
  padding: 4px 9px;
  border-radius: 6px;
  font-weight: 700;
}

.status-pill.ready {
  background: #e8f1e9;
  color: #245c40;
}

.status-pill.blocked {
  background: #fff0ed;
  color: #8b2f22;
}

.issue-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.issue-list li {
  border-left: 4px solid #d1a223;
  padding: 7px 0 7px 10px;
}

.issue-list li.blocker {
  border-left-color: #b84b3a;
}

.issue-list strong {
  display: block;
  text-transform: capitalize;
}

.site-hero,
.public-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #d9ddd2;
}

.site-hero h1,
.public-hero h1 {
  font-size: 2.5rem;
}

.site-hero-stats,
.public-meta {
  display: grid;
  gap: 10px;
}

.site-hero-stats div,
.public-meta div {
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
}

.site-hero-stats strong,
.public-meta strong {
  display: block;
  color: #2b4f7a;
  font-size: 1.65rem;
}

.site-hero-stats span,
.public-meta span {
  color: #68756c;
}

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

.site-card {
  display: grid;
  gap: 10px;
  min-height: 150px;
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
  color: inherit;
  text-decoration: none;
}

.site-card strong {
  font-size: 1.25rem;
}

.site-card span {
  line-height: 1.45;
}

.site-card small {
  color: #2b4f7a;
  font-weight: 700;
}

.search-panel,
.review-strip,
.collection-note,
.support-section {
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
}

.search-panel {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.search-page {
  display: grid;
  gap: 26px;
  margin-bottom: 34px;
}

.search-page-heading {
  display: grid;
  gap: 12px;
}

.search-page-heading h1 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.98;
}

.search-page-heading p {
  max-width: 760px;
  margin: 0;
  color: #435147;
  font-size: 1.08rem;
}

.search-page-panel {
  margin-bottom: 0;
}

.search-start-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.search-panel input[type="search"] {
  min-height: 48px;
  border-color: #8aa997;
  font-size: 1.02rem;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.search-results > .muted {
  grid-column: 1 / -1;
  margin: 0;
}

.search-summary {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #f6f8f3;
  padding: 11px 13px;
}

.search-summary strong {
  color: #13231a;
}

.search-summary span {
  color: #52675a;
  font-size: 0.9rem;
}

.search-see-all {
  margin-left: auto;
  color: #105d45;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.search-see-all:hover,
.search-see-all:focus-visible {
  color: #073d2d;
  text-decoration: underline;
}

.search-result,
.quick-link {
  display: grid;
  gap: 6px;
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #f7fafc;
  padding: 13px;
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.home-search .search-results {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reader-home-search .search-results {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.search-result span,
.quick-link span {
  color: #52675a;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.search-result span {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: space-between;
}

.search-result span b,
.search-result span i {
  font-style: normal;
}

.search-result span b {
  color: #245c40;
}

.search-result span i {
  color: #68756c;
}

.search-result strong,
.quick-link strong {
  color: #1f2721;
}

.search-result small,
.quick-link small {
  color: #2b4f7a;
  font-weight: 700;
}

.search-result em {
  color: #52675a;
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.4;
}

.search-result mark {
  border-radius: 3px;
  background: #fff2b8;
  color: inherit;
  padding: 0 2px;
}

.search-result:hover,
.search-result:focus {
  border-color: #8ea4bb;
  box-shadow: 0 12px 26px rgba(23, 35, 27, 0.08);
}

.site-search-mini .search-summary {
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
  padding: 9px 10px;
}

.site-search-mini .site-search-results {
  grid-template-columns: 1fr;
  gap: 8px;
}

.site-search-mini .search-summary span {
  font-size: 0.82rem;
}

.site-search-mini .search-result {
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 9px 11px;
  text-align: left;
}

.site-search-mini .search-result span {
  justify-content: flex-start;
}

.site-search-mini .search-result strong {
  font-size: 0.96rem;
  text-align: left;
}

.site-search-mini .search-result small {
  font-size: 0.78rem;
  text-align: left;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.58fr);
  gap: 30px;
  align-items: start;
  margin-bottom: 36px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d9ddd2;
}

.home-hero-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.home-hero h1 {
  margin-bottom: 0;
  max-width: 780px;
  font-size: 4rem;
  line-height: 0.98;
}

.home-lede {
  margin: 0;
  max-width: 760px;
  color: #3a473d;
  font-size: 1.16rem;
}

.home-search,
.home-corpus-card,
.home-review-card {
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
}

.home-search {
  display: grid;
  gap: 14px;
}

.home-search input[type="search"] {
  min-height: 56px;
  border-color: #789680;
  background: #fbfcfa;
  font-size: 1.04rem;
}

.home-query-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-query-chips button {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid #c9d3c6;
  border-radius: 6px;
  padding: 4px 9px;
  background: #f7fafc;
  color: #30455f;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
}

.home-query-chips button:hover,
.home-query-chips button:focus {
  border-color: #8aa997;
  background: #eef7f1;
  color: #073d2d;
}

.home-corpus-card {
  display: grid;
  gap: 16px;
  align-self: start;
}

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

.home-corpus-grid div {
  min-height: 74px;
  padding: 12px;
  border-left: 4px solid #d1a223;
  background: #f7fafc;
}

.home-corpus-grid strong {
  display: block;
  color: #2b4f7a;
  font-size: 1.55rem;
  line-height: 1;
}

.home-corpus-grid span {
  display: block;
  margin-top: 7px;
  color: #52675a;
  font-size: 0.86rem;
  font-weight: 700;
}

.home-evidence-signal {
  display: grid;
  gap: 5px;
  border-top: 1px solid #e5e8df;
  padding-top: 14px;
}

.home-evidence-signal span,
.home-entry-card span,
.home-list-link span {
  color: #52675a;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-evidence-signal strong,
.home-evidence-signal a {
  color: #1f2721;
  font-size: 1.08rem;
}

.home-evidence-signal small {
  color: #68756c;
  line-height: 1.45;
}

.home-entry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-entry-card {
  display: grid;
  gap: 9px;
  align-content: start;
  min-height: 210px;
  border: 1px solid #d9ddd2;
  border-top: 4px solid #2b4f7a;
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.home-entry-card:nth-child(3n + 2) {
  border-top-color: #245c40;
}

.home-entry-card:nth-child(3n) {
  border-top-color: #d1a223;
}

.home-entry-card strong {
  color: #1f2721;
  font-size: 1.22rem;
  line-height: 1.18;
}

.home-entry-card em,
.home-list-link em {
  color: #3f4a42;
  font-style: normal;
  line-height: 1.45;
}

.home-entry-card small,
.home-list-link small {
  color: #2b4f7a;
  font-weight: 800;
  line-height: 1.35;
}

.home-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.home-link-list {
  display: grid;
  gap: 10px;
}

.home-list-link {
  display: grid;
  gap: 6px;
  border: 1px solid #d9ddd2;
  border-left: 4px solid #789680;
  border-radius: 8px;
  background: #ffffff;
  padding: 14px 16px;
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.home-list-link:nth-child(2n) {
  border-left-color: #b84b3a;
}

.home-list-link strong {
  color: #1f2721;
  font-size: 1.05rem;
}

.home-method-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.74fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  border-top: 1px solid #d9ddd2;
  border-bottom: 1px solid #d9ddd2;
  padding: 28px 0;
}

.home-method-band h2,
.home-method-band p,
.home-review-card h2,
.home-review-card p {
  margin-bottom: 0;
}

.home-method-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-method-steps li {
  display: grid;
  gap: 7px;
  align-content: start;
  min-height: 140px;
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
}

.home-method-steps strong {
  color: #30455f;
}

.home-method-steps span {
  color: #3f4a42;
  line-height: 1.45;
}

.home-review-card {
  display: grid;
  gap: 12px;
  align-content: start;
  background: #f7fafc;
}

.growth-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 38px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.growth-hero h1 {
  max-width: 860px;
  margin-bottom: 16px;
  font-size: 4.1rem;
  line-height: 0.98;
}

.growth-lede {
  max-width: 820px;
  margin: 0 0 20px;
  color: var(--body-copy);
  font-size: 1.12rem;
  line-height: 1.72;
}

.growth-brief,
.growth-panel,
.trust-bridge,
.digest-form,
.guide-card,
.standard-card,
.guide-route-card,
.guide-point-card,
.guide-warning,
.digest-grid > div {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.growth-brief {
  display: grid;
  gap: 12px;
  align-content: center;
  border-top: 4px solid var(--gold);
  padding: 24px;
}

.growth-brief h2,
.growth-brief p,
.trust-bridge h2,
.trust-bridge p,
.growth-panel h2,
.growth-panel p {
  margin-bottom: 0;
}

.growth-panel,
.trust-bridge {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 24px;
}

.growth-panel {
  background: var(--surface-alt);
}

.growth-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.growth-path li {
  display: grid;
  gap: 7px;
  align-content: start;
  min-height: 148px;
  border-left: 4px solid var(--blue);
  background: var(--surface);
  padding: 15px;
}

.growth-path li:nth-child(2n) {
  border-left-color: var(--green);
}

.growth-path li:nth-child(4n) {
  border-left-color: var(--gold);
}

.growth-path strong {
  color: var(--ink-strong);
  font-size: 1.08rem;
}

.growth-path span {
  color: var(--body-copy);
  line-height: 1.45;
}

.guide-grid,
.standard-grid,
.guide-route-grid,
.guide-point-grid,
.digest-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.guide-card,
.standard-card,
.guide-route-card {
  display: grid;
  gap: 9px;
  align-content: start;
  min-height: 196px;
  padding: 17px;
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.guide-card {
  border-top: 4px solid var(--blue);
}

.standard-card {
  border-top: 4px solid var(--green);
}

.guide-card:nth-child(2n) {
  border-top-color: var(--green);
}

.guide-card:nth-child(4n) {
  border-top-color: var(--gold);
}

.standard-card:nth-child(2n) {
  border-top-color: var(--blue);
}

.standard-card:nth-child(4n) {
  border-top-color: var(--gold);
}

.guide-card span,
.standard-card span,
.guide-route-card span,
.guide-point-card span,
.digest-grid span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.guide-card strong,
.standard-card strong,
.guide-route-card strong {
  color: var(--ink-strong);
  font-size: 1.2rem;
  line-height: 1.18;
}

.guide-card em,
.standard-card em,
.guide-route-card span {
  color: var(--body-copy);
  font-style: normal;
  line-height: 1.45;
  text-transform: none;
}

.guide-card small,
.standard-card small {
  color: var(--blue);
  font-weight: 800;
  line-height: 1.35;
}

.guide-route-grid,
.guide-point-grid,
.digest-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-route-card {
  min-height: 150px;
  border-left: 4px solid var(--green);
}

.guide-point-card,
.digest-grid > div {
  display: grid;
  gap: 9px;
  align-content: start;
  min-height: 154px;
  padding: 18px;
}

.guide-point-card p,
.digest-grid p {
  margin: 0;
}

.guide-warning {
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  border-left: 5px solid var(--red);
  background: var(--red-soft);
  padding: 24px;
}

.guide-warning h2 {
  margin-bottom: 0;
}

.guide-warning ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.standards-hero .growth-brief {
  border-top-color: var(--green);
}

.standard-roadmap {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-alt);
  padding: 24px;
}

.standard-roadmap h2 {
  margin-bottom: 0;
}

.standard-roadmap ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.standard-roadmap li {
  display: grid;
  gap: 6px;
  border-left: 4px solid var(--green);
  background: var(--surface);
  padding: 14px 15px;
}

.standard-roadmap li:nth-child(2n) {
  border-left-color: var(--blue);
}

.standard-roadmap li:nth-child(3n) {
  border-left-color: var(--gold);
}

.standard-roadmap strong {
  color: var(--ink-strong);
}

.standard-roadmap span {
  color: var(--body-copy);
  line-height: 1.45;
}

.coa-hero .growth-brief {
  border-top-color: var(--blue);
}

.coa-preview,
.coa-empty,
.coa-record-card,
.coa-info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.coa-preview {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  background: var(--surface-alt);
  padding: 24px;
}

.coa-preview h2,
.coa-preview p {
  margin-bottom: 0;
}

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

.coa-stat-grid div {
  min-height: 82px;
  border-left: 4px solid var(--blue);
  background: var(--surface);
  padding: 13px;
}

.coa-stat-grid div:nth-child(2n) {
  border-left-color: var(--green);
}

.coa-stat-grid div:nth-child(4n) {
  border-left-color: var(--gold);
}

.coa-stat-grid strong {
  display: block;
  color: var(--blue);
  font-size: 1.4rem;
  line-height: 1.05;
}

.coa-stat-grid span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.coa-empty {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.coa-empty.compact {
  background: var(--surface-alt);
}

.coa-empty h3,
.coa-empty p {
  margin: 0;
}

.coa-empty ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
}

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

.coa-record-card {
  display: grid;
  gap: 9px;
  align-content: start;
  min-height: 154px;
  border-left: 4px solid var(--blue);
  padding: 17px;
  color: inherit;
  text-decoration: none;
}

.coa-record-card span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.coa-record-card strong {
  color: var(--ink-strong);
  font-size: 1.18rem;
}

.coa-record-card em {
  color: var(--body-copy);
  font-style: normal;
}

.coa-record-card small {
  color: var(--blue);
  font-weight: 800;
}

.coa-info-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
}

.coa-info-card dl {
  display: grid;
  gap: 9px;
  margin: 0;
}

.coa-info-card dl div {
  display: grid;
  gap: 3px;
  border-top: 1px solid var(--line);
  padding-top: 9px;
}

.coa-info-card dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.coa-info-card dd {
  margin: 0;
  color: var(--body-copy);
}

.coa-document-list {
  display: grid;
  gap: 8px;
}

.coa-document-list a {
  display: grid;
  gap: 4px;
  border-left: 4px solid var(--green);
  background: var(--surface-alt);
  padding: 11px 12px;
  color: inherit;
  text-decoration: none;
}

.coa-document-list span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.digest-hero {
  align-items: start;
}

.digest-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
}

.digest-stats div {
  min-height: 88px;
  border-left: 4px solid var(--gold);
  background: var(--surface);
  padding: 15px;
}

.digest-stats strong {
  display: block;
  color: var(--blue);
  font-size: 1.72rem;
  line-height: 1;
}

.digest-stats span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.3;
}

.digest-form {
  display: grid;
  gap: 12px;
  align-content: start;
  border-top: 4px solid var(--green);
  padding: 24px;
}

.digest-form h2 {
  margin-bottom: 4px;
}

.digest-form label {
  color: var(--ink-strong);
  font-size: 0.86rem;
  font-weight: 800;
}

.digest-form input,
.digest-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  background: var(--canvas-soft);
  color: var(--ink);
  font: inherit;
  padding: 8px 10px;
}

.digest-form input:focus,
.digest-form select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: var(--focus-ring);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.collection-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #d9ddd2;
}

.collection-hero-copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.collection-hero h1 {
  margin-bottom: 0;
  font-size: 3.2rem;
  line-height: 1;
}

.collection-hero p {
  margin: 0;
  color: #3a473d;
  font-size: 1.08rem;
}

.collection-stat-card,
.collection-insight-card,
.collection-page-card {
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
}

.collection-stat-card {
  display: grid;
  gap: 14px;
  padding: 22px;
}

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

.collection-stat-grid div {
  min-height: 78px;
  padding: 13px;
  border-left: 4px solid #245c40;
  background: #f7fafc;
}

.collection-stat-grid div:nth-child(2n) {
  border-left-color: #2b4f7a;
}

.collection-stat-grid div:nth-child(3n) {
  border-left-color: #d1a223;
}

.collection-stat-grid strong {
  display: block;
  color: #2b4f7a;
  font-size: 1.58rem;
  line-height: 1;
}

.collection-stat-grid span {
  display: block;
  margin-top: 7px;
  color: #52675a;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.3;
}

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

.collection-insight-card {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 150px;
  border-top: 4px solid #2b4f7a;
  padding: 18px;
}

.collection-insight-card:nth-child(2) {
  border-top-color: #245c40;
}

.collection-insight-card:nth-child(3) {
  border-top-color: #d1a223;
}

.collection-insight-card span,
.collection-page-card span {
  color: #52675a;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.collection-insight-card p {
  margin: 0;
  color: #3f4a42;
}

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

.collection-card-grid > .muted {
  grid-column: 1 / -1;
  margin: 0;
}

.collection-page-card {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 168px;
  padding: 16px;
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.collection-page-card strong {
  color: #1f2721;
  font-size: 1.18rem;
  line-height: 1.2;
}

.collection-page-card em {
  color: #3f4a42;
  font-style: normal;
  line-height: 1.42;
}

.collection-page-card small {
  color: #2b4f7a;
  font-weight: 800;
  line-height: 1.35;
}

.collection-method-strip {
  display: grid;
  grid-template-columns: minmax(240px, 0.74fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  border-top: 1px solid #d9ddd2;
  border-bottom: 1px solid #d9ddd2;
  padding: 28px 0;
}

.collection-method-strip h2,
.collection-method-strip p {
  margin-bottom: 0;
}

.collection-method-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.collection-method-list li {
  display: grid;
  gap: 7px;
  align-content: start;
  min-height: 146px;
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
}

.collection-method-list strong {
  color: #30455f;
}

.collection-method-list span {
  color: #3f4a42;
  line-height: 1.45;
}

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.review-strip {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  background: #f7fafc;
}

.review-strip h2,
.review-strip p {
  margin: 0;
}

.collection-note {
  margin-bottom: 22px;
  background: #f7fafc;
}

.collection-note p {
  margin: 0;
  max-width: none;
}

.support-page {
  display: grid;
  gap: 24px;
}

.support-section h2,
.method-grid h2 {
  font-size: 1.25rem;
}

.method-grid div {
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
}

.method-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #30455f;
  color: #ffffff;
  font-weight: 800;
}

.az-list {
  display: grid;
  gap: 14px;
}

.az-group {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
}

.az-group h3 {
  margin: 0;
  color: #30455f;
}

.term-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.term-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid #bdc8ba;
  border-radius: 999px;
  background: #f7fafc;
  color: #0e5b43;
  font-weight: 700;
  text-decoration: none;
}

.term-chip small {
  color: #5d6a61;
  font-size: 0.78rem;
  font-weight: 700;
}

.dictionary-use-strip {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: start;
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
}

.dictionary-use-strip ol,
.dictionary-source-path ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.dictionary-use-strip li,
.dictionary-source-path li {
  line-height: 1.5;
}

.dictionary-use-strip strong,
.dictionary-source-path strong {
  display: block;
  color: #13231a;
}

.dictionary-use-strip span,
.dictionary-source-path span {
  color: #3f4a42;
}

.dictionary-category-grid,
.dictionary-featured-grid,
.dictionary-reader-card-grid,
.dictionary-lens-grid {
  display: grid;
  gap: 12px;
}

.dictionary-category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dictionary-featured-grid,
.dictionary-reader-card-grid,
.dictionary-lens-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dictionary-category-card,
.dictionary-featured-card,
.dictionary-reader-card,
.dictionary-lens-card {
  min-width: 0;
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.dictionary-category-card span,
.dictionary-featured-card span,
.dictionary-reader-card span,
.dictionary-lens-card span {
  color: #52675a;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dictionary-category-card strong,
.dictionary-featured-card strong,
.dictionary-reader-card strong,
.dictionary-lens-card strong {
  display: block;
  margin: 7px 0;
  color: #1f2721;
  font-size: 1.14rem;
  line-height: 1.2;
}

.dictionary-category-card small,
.dictionary-featured-card small {
  display: block;
  margin: 10px 0 0;
  color: #2b4f7a;
  font-weight: 800;
}

.dictionary-category-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.dictionary-category-card div a,
.dictionary-inline-link {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 1px solid #b9c7d8;
  border-radius: 6px;
  padding: 2px 7px;
  background: #f7fafc;
  color: #30455f;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.dictionary-featured-card:hover,
.dictionary-featured-card:focus {
  border-color: #8ea4bb;
  box-shadow: 0 14px 30px rgba(23, 35, 27, 0.08);
}

.dictionary-reader-map {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  gap: 24px;
  align-items: start;
  border-top: 1px solid #d9ddd2;
  border-bottom: 1px solid #d9ddd2;
  padding: 24px 0;
}

.dictionary-reader-map h2 {
  font-size: 2rem;
}

.dictionary-reader-card,
.dictionary-lens-card {
  border-top: 4px solid #2b4f7a;
}

.dictionary-reader-card:nth-child(2),
.dictionary-lens-card:nth-child(2) {
  border-top-color: #245c40;
}

.dictionary-reader-card:nth-child(3),
.dictionary-lens-card:nth-child(3) {
  border-top-color: #d1a223;
}

.dictionary-reader-card:nth-child(4),
.dictionary-lens-card:nth-child(4) {
  border-top-color: #b84b3a;
}

.dictionary-evidence-lens,
.dictionary-source-path {
  display: grid;
  gap: 16px;
}

.dictionary-lens-note {
  margin: 0;
  border-left: 3px solid #d9ddd2;
  padding-left: 14px;
  color: #3f4a42;
}

.check-list {
  display: grid;
  gap: 9px;
  line-height: 1.55;
}

.consumer-article {
  display: grid;
  gap: 34px;
}

.consumer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.45fr);
  gap: 28px;
  align-items: center;
  padding-bottom: 26px;
  border-bottom: 1px solid #d9ddd2;
}

.consumer-hero h1 {
  max-width: 840px;
  font-size: 3rem;
  text-wrap: balance;
}

.consumer-hero .lede {
  max-width: 760px;
  color: #30455f;
  font-size: 1.12rem;
}

.consumer-scorecard {
  display: grid;
  gap: 10px;
}

.consumer-scorecard div {
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
}

.consumer-scorecard strong {
  display: block;
  color: #2b4f7a;
  font-size: 1.75rem;
}

.consumer-scorecard span {
  color: #68756c;
}

.guide-snapshot {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.guide-snapshot-card,
.related-page-card {
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
}

.guide-snapshot-card {
  border-top: 4px solid #2b4f7a;
}

.guide-snapshot-card:nth-child(2) {
  border-top-color: #245c40;
}

.guide-snapshot-card:nth-child(3) {
  border-top-color: #d1a223;
}

.guide-snapshot-card:nth-child(4) {
  border-top-color: #b84b3a;
}

.guide-snapshot-card span,
.related-page-card span {
  color: #52675a;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.guide-snapshot-card strong {
  display: block;
  margin-top: 6px;
  color: #2b4f7a;
  font-size: 1.65rem;
  line-height: 1;
}

.guide-snapshot-card p {
  margin: 9px 0 0;
  color: #3f4a42;
  line-height: 1.45;
}

.related-pages-section {
  display: grid;
  gap: 14px;
}

.related-graph-section {
  gap: 16px;
}

.related-graph-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: 16px;
  align-items: stretch;
}

.related-graph-current,
.related-graph-node {
  min-width: 0;
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
  overflow-wrap: anywhere;
}

.related-graph-current {
  display: grid;
  gap: 8px;
  border-left: 5px solid #245c40;
}

.related-graph-current span,
.related-graph-node span {
  color: #52675a;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.related-graph-current strong {
  color: #13231a;
  font-size: 1.45rem;
  line-height: 1.1;
}

.related-graph-current p,
.related-graph-current small {
  margin: 0;
  color: #3f4a42;
  line-height: 1.45;
}

.related-graph-current small {
  color: #2b4f7a;
  font-weight: 800;
}

.related-graph-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.related-graph-node {
  display: grid;
  gap: 7px;
  border-top: 4px solid #2b4f7a;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.related-graph-node:nth-child(2) {
  border-top-color: #245c40;
}

.related-graph-node:nth-child(3) {
  border-top-color: #d1a223;
}

.related-graph-node:nth-child(4) {
  border-top-color: #b84b3a;
}

.related-graph-node:hover,
.related-graph-node:focus {
  border-color: #8ea4bb;
  box-shadow: 0 12px 24px rgba(23, 35, 27, 0.08);
}

.related-graph-node strong {
  color: #1f2721;
  font-size: 1.05rem;
  line-height: 1.2;
}

.related-graph-node em {
  color: #3f4a42;
  font-style: normal;
  line-height: 1.35;
}

.related-graph-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.related-graph-metrics div,
.related-graph-metrics p {
  margin: 0;
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #f7fafc;
  padding: 12px;
}

.related-graph-metrics strong {
  display: block;
  color: #2b4f7a;
  font-size: 1.38rem;
  line-height: 1;
}

.related-graph-metrics span,
.related-graph-metrics p {
  color: #52675a;
  font-size: 0.88rem;
  font-weight: 700;
}

.related-graph-metrics p {
  grid-column: 1 / -1;
  background: #ffffff;
  line-height: 1.45;
}

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

.related-page-card {
  display: grid;
  gap: 8px;
  min-height: 205px;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease,
    transform 0.16s ease;
  overflow-wrap: anywhere;
}

.related-page-card:focus,
.related-page-card:hover {
  border-color: #8ea4bb;
  box-shadow: 0 14px 30px rgba(23, 35, 27, 0.08);
  transform: translateY(-1px);
}

.related-page-card strong {
  color: #1f2721;
  font-size: 1.12rem;
  line-height: 1.2;
}

.related-page-card em {
  color: #3f4a42;
  font-style: normal;
  line-height: 1.42;
}

.related-page-reason {
  margin: 0;
  color: #3f4a42;
  font-size: 0.9rem;
  line-height: 1.4;
}

.related-page-reason b {
  color: #13231a;
}

.related-page-card small {
  color: #2b4f7a;
  font-weight: 800;
  line-height: 1.35;
}

.related-term-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.related-term-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 1px solid #b9c7d8;
  border-radius: 6px;
  background: #f7fafc;
  padding: 2px 7px;
  color: #30455f;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: none;
}

.plain-answer,
.journal-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 24px;
  align-items: start;
}

.plain-answer {
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
}

.plain-answer h2 {
  font-size: 2rem;
}

.answer-card-list,
.benefit-grid {
  display: grid;
  gap: 12px;
}

.answer-card-list article,
.benefit-grid article,
.article-section {
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
}

.answer-card-list article {
  background: #f7fafc;
}

.answer-card-list span {
  display: block;
  color: #52675a;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.answer-card-list strong {
  display: block;
  margin: 6px 0;
  font-size: 1.1rem;
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-grid h3 {
  margin: 0 0 8px;
}

.evidence-bucket-summary {
  display: grid;
  gap: 16px;
}

.reader-table td:first-child {
  color: #13231a;
  font-weight: 800;
}

.reader-table td:nth-child(3) {
  color: #30455f;
  font-weight: 700;
}

.inline-citation {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-left: 4px;
  border: 1px solid #b9c7d8;
  border-radius: 6px;
  padding: 1px 7px;
  background: #f7fafc;
  color: #30455f;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.inline-citation:hover {
  color: #073d2d;
}

.article-toc {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 8px;
  border-left: 3px solid #8aa997;
  padding-left: 12px;
}

.article-toc a {
  color: #30455f;
  font-weight: 700;
  text-decoration: none;
}

.article-body {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.rich-copy p {
  max-width: 850px;
  font-size: 1.02rem;
}

.evidence-review h3 {
  margin-top: 24px;
  font-size: 1.2rem;
}

.evidence-review p {
  max-width: 900px;
}

.article-quick-read {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  border-left: 4px solid #2b4f7a;
  background: #f7fafc;
  padding: 18px 20px;
}

.article-quick-read strong,
.article-lane span,
.article-source-list span {
  color: #52675a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-quick-read ul,
.article-guardrails ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.article-quick-read li,
.article-guardrails li,
.article-checklist li {
  line-height: 1.55;
}

.article-lane-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0;
}

.article-lane {
  border-top: 4px solid #2b4f7a;
  padding-top: 12px;
}

.article-lane:nth-child(2) {
  border-top-color: #245c40;
}

.article-lane:nth-child(3) {
  border-top-color: #d1a223;
}

.article-lane:nth-child(4) {
  border-top-color: #b84b3a;
}

.article-lane strong {
  display: block;
  margin: 7px 0;
  color: #1f2721;
  font-size: 1.08rem;
}

.article-lane p,
.article-method-note {
  color: #3f4a42;
  line-height: 1.5;
}

.article-method-note {
  border-left: 3px solid #d9ddd2;
  padding-left: 14px;
}

.article-bucket-chapters {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.article-bucket-chapter {
  border-top: 1px solid #d9ddd2;
  padding-top: 18px;
}

.article-bucket-chapter h4 {
  margin: 0 0 10px;
  color: #13231a;
  font-size: 1.16rem;
}

.article-chapter-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.article-chapter-meta span {
  border: 1px solid #d9ddd2;
  border-radius: 999px;
  padding: 3px 9px;
  color: #52675a;
  font-size: 0.78rem;
  font-weight: 700;
}

.article-source-list {
  display: grid;
  gap: 9px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.article-source-list li {
  border-left: 3px solid #d9ddd2;
  padding-left: 12px;
}

.article-source-list p {
  margin: 5px 0 0;
}

.article-guardrails,
.article-checklist {
  margin: 24px 0;
  border-left: 4px solid #8aa997;
  background: #f6f8f3;
  padding: 18px 20px;
}

.article-guardrails h3,
.article-checklist h3 {
  margin-top: 0;
}

.article-checklist ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.source-note-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 24px;
}

.source-note-list li {
  border-top: 1px solid #d9ddd2;
  padding-top: 12px;
}

.source-note-list span {
  display: block;
  color: #52675a;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.source-note-list p {
  margin: 6px 0;
}

.source-note-list small {
  display: block;
  color: #52675a;
  line-height: 1.45;
}

.dictionary-evidence-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.dictionary-evidence-tools {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
}

.evidence-filter-chip {
  display: grid;
  gap: 4px;
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 12px;
  color: #30455f;
  cursor: pointer;
  font: inherit;
  text-align: left;
  text-decoration: none;
}

.evidence-filter-chip.is-active {
  border-color: #0e5b43;
  background: #eef7f1;
}

.source-note-list .evidence-filter-chip span {
  color: #0e5b43;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: none;
}

.evidence-filter-chip strong {
  color: #18251f;
}

.dictionary-evidence-group {
  display: grid;
  gap: 14px;
  scroll-margin-top: 24px;
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
}

.dictionary-evidence-group + .dictionary-evidence-group {
  margin-top: 16px;
}

.dictionary-evidence-group-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #e5e8df;
  padding-bottom: 10px;
}

.dictionary-evidence-group-heading h3,
.dictionary-evidence-group-heading p {
  margin: 0;
}

.dictionary-evidence-row-list {
  display: grid;
  gap: 12px;
}

.source-note {
  border-top: 1px solid #d9ddd2;
  padding-top: 12px;
}

.dictionary-evidence-row-list .source-note:first-child {
  border-top: 0;
  padding-top: 0;
}

.back-to-evidence {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.dictionary-evidence-count {
  margin: 0;
  color: #52675a;
  font-weight: 700;
}

.dictionary-evidence-empty {
  margin: 0;
}

.safety-callout {
  border-color: #e2c069;
  background: #fffaf0;
}

.research-database {
  display: grid;
  gap: 18px;
  min-width: 0;
  border-top: 1px solid #d9ddd2;
  padding-top: 24px;
}

.research-database .public-section {
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
}

.research-intro {
  max-width: 820px;
  color: #30455f;
}

.public-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  min-width: 0;
}

.public-toc {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 7px;
  border-left: 3px solid #b9c7d8;
  padding-left: 12px;
}

.public-toc a {
  color: #30455f;
  font-size: 0.92rem;
  text-decoration: none;
}

.public-content {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.public-page,
.public-section {
  min-width: 0;
}

.public-section {
  border-top: 1px solid #d9ddd2;
  padding-top: 20px;
}

.article-section,
.public-section {
  overflow-x: auto;
}

.public-section h2 {
  font-size: 1.35rem;
}

.public-section p {
  max-width: 820px;
}

.public-section ul {
  line-height: 1.55;
}

.evidence-brief {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 0.7fr)) minmax(260px, 1.3fr);
  gap: 12px;
  align-items: stretch;
  margin: 0 0 28px;
}

.evidence-brief div,
.evidence-brief p {
  margin: 0;
  border: 1px solid #d9ddd2;
  border-radius: 8px;
  background: #ffffff;
  padding: 15px;
}

.evidence-brief span {
  display: block;
  color: #68756c;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.evidence-brief strong {
  display: block;
  margin-top: 6px;
  color: #2b4f7a;
}

.evidence-brief p {
  max-width: none;
  color: #30455f;
}

.evidence-sentence {
  color: inherit;
  text-decoration-color: #8aa997;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.evidence-sentence:hover,
.citation-link:hover {
  color: #073d2d;
}

.source-title {
  display: block;
}

.citation-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 7px;
}

.citation-link {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 1px solid #b9c7d8;
  border-radius: 6px;
  padding: 2px 7px;
  background: #f7fafc;
  color: #30455f;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .topbar nav {
    justify-content: flex-start;
  }

  .site-hero,
  .public-hero,
  .consumer-hero,
  .plain-answer,
  .journal-layout,
  .home-hero,
  .home-method-band,
  .growth-hero,
  .growth-panel,
  .trust-bridge,
  .guide-warning,
  .standard-roadmap,
  .coa-preview,
  .collection-hero,
  .collection-method-strip,
  .dictionary-use-strip,
  .dictionary-reader-map,
  .related-graph-shell {
    grid-template-columns: 1fr;
  }

  .site-hero-stats,
  .public-meta,
  .consumer-scorecard,
  .home-corpus-grid,
  .collection-stat-grid,
  .related-graph-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .guide-snapshot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-grid,
  .benefit-grid,
  .related-page-grid,
  .related-graph-paths,
  .article-lane-grid,
  .home-entry-grid,
  .search-start-grid,
  .growth-path,
  .guide-grid,
  .standard-grid,
  .coa-record-grid,
  .collection-card-grid,
  .dictionary-category-grid,
  .dictionary-featured-grid,
  .dictionary-reader-card-grid,
  .dictionary-lens-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-header,
  .two-column,
  .split,
  .form-grid,
  .stats-grid,
  .bulk-review,
  .dashboard-grid,
  .snapshot-list,
  .review-card,
  .site-hero,
  .public-hero,
  .public-layout,
  .site-grid,
  .evidence-brief,
  .search-results,
  .quick-grid,
  .method-grid,
  .review-strip,
  .consumer-hero,
  .guide-snapshot,
  .plain-answer,
  .journal-layout,
  .benefit-grid,
  .related-page-grid,
  .related-graph-paths,
  .related-graph-metrics,
  .article-lane-grid,
  .home-entry-grid,
  .home-split,
  .home-method-steps,
  .search-start-grid,
  .growth-path,
  .guide-grid,
  .standard-grid,
  .guide-route-grid,
  .guide-point-grid,
  .digest-grid,
  .standard-roadmap,
  .coa-preview,
  .coa-record-grid,
  .coa-two-column,
  .collection-insight-grid,
  .collection-card-grid,
  .collection-method-list,
  .dictionary-category-grid,
  .dictionary-featured-grid,
  .dictionary-reader-card-grid,
  .dictionary-lens-grid {
    grid-template-columns: 1fr;
  }

  .page-header {
    display: grid;
  }

  .topbar {
    gap: 10px;
    padding: 14px 20px;
  }

  .topbar nav {
    justify-content: flex-start;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .search-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-orientation {
    align-items: stretch;
  }

  .site-orientation-copy {
    flex-basis: 100%;
  }

  .site-search-mini {
    flex-basis: 100%;
  }

  .site-search-results {
    right: auto;
    left: 0;
    width: 100%;
  }

  .home-search .search-results {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: auto;
  }

  .public-toc {
    position: static;
  }

  .article-toc {
    position: static;
  }

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

  .growth-hero h1 {
    font-size: 3rem;
    line-height: 1;
  }

  .home-hero h1 {
    font-size: 3rem;
    line-height: 1;
  }

  .collection-hero h1 {
    font-size: 2.55rem;
  }
}

/* Reader-first public experience. */
.reader-home-page,
.reader-page,
.reader-collection-page,
.reader-dictionary-page,
.reader-dictionary-term-page {
  overflow-x: hidden;
  background: #f4f7f5;
  color: #35423b;
}

.reader-home-page .shell,
.reader-page .shell,
.reader-collection-page .shell,
.reader-dictionary-page .shell,
.reader-dictionary-term-page .shell {
  overflow-x: hidden;
  max-width: 1280px;
  padding-top: 46px;
}

.reader-home-page .topbar,
.reader-page .topbar,
.reader-collection-page .topbar,
.reader-dictionary-page .topbar,
.reader-dictionary-term-page .topbar {
  position: static;
  top: auto;
  border-bottom-color: #d8e0dc;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(31, 67, 50, 0.04);
  backdrop-filter: none;
}

.reader-home-page .topbar,
.reader-page .topbar,
.reader-collection-page .topbar,
.reader-dictionary-page .topbar,
.reader-dictionary-term-page .topbar {
  justify-content: center;
  padding: 13px 24px;
}

.reader-home-page .topbar > a::before,
.reader-page .topbar > a::before,
.reader-collection-page .topbar > a::before,
.reader-dictionary-page .topbar > a::before,
.reader-dictionary-term-page .topbar > a::before {
  border-color: #105d45;
  background: #ffffff;
}

.reader-home-page .topbar nav a,
.reader-page .topbar nav a,
.reader-collection-page .topbar nav a,
.reader-dictionary-page .topbar nav a,
.reader-dictionary-term-page .topbar nav a {
  color: #3e4b44;
}

.reader-home-page .site-footer,
.reader-page .site-footer,
.reader-collection-page .site-footer,
.reader-dictionary-page .site-footer,
.reader-dictionary-term-page .site-footer {
  border-top-color: #d8e0dc;
  background: #ffffff;
}

.reader-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-bottom: 38px;
  color: #4f5e56;
  font-size: 0.84rem;
}

.reader-breadcrumbs a {
  color: #53635a;
  text-decoration: none;
}

.reader-article {
  max-width: 1120px;
  margin: 0 auto;
}

.reader-hero {
  max-width: 970px;
  padding: 20px 0 48px;
}

.reader-hero .eyebrow,
.reader-home-hero .eyebrow,
.reader-home-section .eyebrow,
.reader-home-band .eyebrow,
.reader-home-method .eyebrow,
.reader-home-digest .eyebrow {
  color: #105d45;
}

.reader-hero h1 {
  max-width: 950px;
  margin: 10px 0 22px;
  color: #14201a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.35rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.reader-lede {
  max-width: 820px;
  margin: 0;
  color: #45554c;
  font-size: 1.24rem;
  line-height: 1.62;
}

.reader-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 25px;
  color: #4d5d54;
  font-size: 0.87rem;
  font-weight: 700;
}

.reader-meta span {
  position: relative;
}

.reader-meta span + span::before {
  position: absolute;
  left: -13px;
  color: #a6b2ab;
  content: "\2022";
}

.reader-jump-links {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-top: 1px solid #d8e0dc;
  border-bottom: 1px solid #d8e0dc;
  background: rgba(255, 255, 255, 0.46);
  padding: 13px 0;
}

.reader-jump-links strong {
  color: #1b2922;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.reader-jump-links-list {
  display: flex;
  gap: 8px 19px;
  align-items: center;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 5px 2px 7px;
  scrollbar-color: #a9bcb1 transparent;
  scrollbar-width: thin;
}

.reader-jump-links-list a {
  flex: 0 0 auto;
  color: #466157;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
}

.reader-jump-links-list a:hover,
.reader-jump-links-list a:focus-visible {
  color: #073d2d;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.reader-layout {
  max-width: 900px;
  margin: 0 auto;
}

.reader-main {
  min-width: 0;
}

.reader-section {
  padding: 68px 0;
  border-bottom: 1px solid #d8e0dc;
  scroll-margin-top: 96px;
}

.reader-section h2,
.reader-digest h2 {
  max-width: 760px;
  margin: 7px 0 18px;
  color: #16241d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.reader-section h3 {
  color: #1b2922;
  font-size: 1.08rem;
}

.section-kicker {
  margin: 0;
  color: #105d45;
  font-size: 0.77rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-intro {
  max-width: 740px;
  margin: 0 0 28px;
  color: #59675f;
  font-size: 1.04rem;
  line-height: 1.65;
}

/* Keep the long-form layer calm and easy to scan before a reader decides to open sources. */
.reader-main .reader-section > :is(p, ul, ol),
.reader-main .reader-context-story,
.reader-main .reader-finding-source-meta,
.reader-main .reader-study-list article > p {
  max-width: 72ch;
}

.reader-main .reader-section > p:not(.section-kicker, .section-intro) + p:not(.section-kicker, .section-intro),
.reader-main .reader-context-story > p + p,
.reader-main .reader-finding-source-meta > p + p {
  margin-top: 1.05rem;
}

.reader-main .reader-section > :is(ul, ol) {
  margin-top: 1.2rem;
  padding-left: 1.3rem;
}

.reader-main .reader-section > :is(ul, ol) li + li {
  margin-top: 0.65rem;
}

.reader-evidence > .section-intro,
.reader-study-section > .section-intro,
.reader-findings-section > .section-intro {
  border-left: 3px solid #8aa997;
  padding-left: 16px;
}

.reader-answer {
  padding-top: 64px;
}

.reader-answer-copy {
  max-width: 820px;
  margin: 0;
  color: #2e3d35;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  line-height: 1.7;
}

.reader-answer-conclusion,
.reader-answer-detail {
  font-size: 1.16rem;
}

.reader-answer-detail {
  margin-top: 18px;
}

.reader-answer-meaning {
  max-width: 820px;
  margin: 20px 0 0;
  border-left: 3px solid #105d45;
  padding: 4px 0 4px 17px;
  color: #263b30;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  line-height: 1.65;
}

.reader-answer-context {
  max-width: 820px;
  margin: 24px 0 0;
  border-top: 1px solid #d9e1dc;
  padding-top: 20px;
  color: #5a675f;
  font-size: 0.93rem;
  line-height: 1.65;
}

/* The reader overview answers the ordinary “why would I care?” question before the evidence ledger begins. */
.reader-overview {
  border-top: 4px solid #073d2d;
}

.reader-overview-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.reader-overview-list li {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 0;
  border: 1px solid #d3ddd7;
  border-radius: 7px;
  background: #ffffff;
  padding: 22px;
}

.reader-overview-list li.reader-overview-safety {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr);
  background: #f3f8f4;
}

.reader-overview-posture {
  margin: 0;
  color: #5f6d65;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.reader-overview-list h3 {
  margin: 0;
  color: #16241d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1.15;
}

.reader-overview-list h3 a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.reader-overview-list li > p:not(.reader-overview-posture) {
  margin: 0;
  color: #43534a;
  font-size: 0.96rem;
  line-height: 1.62;
}

.reader-overview-link {
  color: #105d45;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.reader-overview-bottom-line {
  max-width: 820px;
  margin: 22px 0 0;
  border-left: 3px solid #b48739;
  padding: 4px 0 4px 16px;
  color: #3e4c44;
  font-size: 1rem;
  line-height: 1.64;
}

@media (max-width: 700px) {
  .reader-overview-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .reader-overview-list li.reader-overview-safety {
    grid-column: 1;
    grid-template-columns: minmax(0, 1fr);
  }
}

.reader-citation {
  margin-left: 3px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.66em;
  line-height: 1;
  vertical-align: super;
}

.reader-citation a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  border: 1px solid #afc5b8;
  border-radius: 50%;
  background: #ffffff;
  color: #105d45;
  font-weight: 900;
  text-decoration: none;
}

.reader-takeaways {
  display: grid;
  gap: 0;
  max-width: 840px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.reader-takeaways li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  border-top: 1px solid #d8e0dc;
  padding: 19px 0;
}

.reader-takeaways li > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #105d45;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 900;
}

.reader-takeaways p {
  margin: 1px 0 0;
  color: #35443b;
  font-size: 1.03rem;
  line-height: 1.62;
}

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

.reader-research-area {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  border: 1px solid #d8e0dc;
  border-top: 4px solid #105d45;
  border-radius: 7px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(28, 45, 35, 0.035);
}

.reader-research-area:nth-child(2n) {
  border-top-color: #486b8a;
}

.reader-research-area:nth-child(3n) {
  border-top-color: #b48739;
}

.research-posture {
  margin: 0 0 9px;
  color: #4c5d54;
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reader-research-area h3 {
  margin: 0;
  overflow-wrap: anywhere;
}

.reader-study-list h3 {
  margin: 0 0 10px;
  overflow-wrap: anywhere;
}

.reader-research-area p:last-child,
.reader-study-list p:last-child {
  margin: 0;
  color: #4a5a51;
  line-height: 1.58;
}

.reader-benefit-explorer {
  border-top: 4px solid #073d2d;
}

.reader-benefit-paths {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.reader-benefit-paths > li {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) 172px;
  gap: 28px;
  align-items: start;
  border-top: 1px solid #cfd9d3;
  padding: 28px 0 30px;
}

.reader-benefit-paths > li:last-child {
  border-bottom: 1px solid #cfd9d3;
}

.reader-benefit-rank {
  display: grid;
  gap: 5px;
}

.reader-benefit-rank > span {
  color: #073d2d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.reader-benefit-rank > small {
  max-width: 100px;
  color: #63736a;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.reader-benefit-content {
  min-width: 0;
}

.reader-benefit-count {
  margin: 0 0 7px;
  color: #105d45;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reader-benefit-content h3 {
  margin: 0 0 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.2;
}

.reader-benefit-content h3 a {
  color: #073d2d;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.reader-benefit-content > p:not(.reader-benefit-count) {
  max-width: 650px;
  margin: 0;
  color: #45564d;
  line-height: 1.62;
}

.reader-benefit-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  margin-top: 17px;
}

.reader-benefit-questions a {
  border-bottom: 1px solid #a9bcb1;
  color: #285d46;
  font-size: 0.85rem;
  font-weight: 750;
  line-height: 1.45;
  text-decoration: none;
}

.reader-benefit-questions a:hover {
  border-bottom-color: #105d45;
  color: #174b35;
}

.reader-benefit-open {
  align-self: center;
  color: #105d45;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.4;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.reader-benefit-note {
  max-width: 790px;
  margin: 20px 0 0;
  color: #607068;
  font-size: 0.88rem;
  line-height: 1.6;
}

.reader-preview-banner {
  margin-top: 18px;
  border-left: 4px solid #b48739;
  background: #f4f0e7;
  padding: 14px 18px;
  color: #51472f;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.5;
}

.reader-sleep-question-list {
  border-bottom: 1px solid #d3ddd7;
}

.reader-sleep-question {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
  border-top: 1px solid #d3ddd7;
  padding: 54px 0 58px;
  scroll-margin-top: 24px;
}

.reader-sleep-question-heading {
  min-width: 0;
}

.reader-sleep-question-heading > span {
  display: block;
  margin-bottom: 18px;
  color: #105d45;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.reader-sleep-question-heading h3 {
  margin: 0 0 13px;
  color: #172c22;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.52rem;
  line-height: 1.18;
}

.reader-sleep-question-heading p {
  margin: 0;
  color: #405148;
  font-size: 0.93rem;
  line-height: 1.62;
}

.reader-sleep-question-body {
  min-width: 0;
}

.reader-sleep-study-group {
  display: grid;
  grid-template-columns: minmax(165px, 0.62fr) minmax(0, 1.38fr);
  gap: 18px 30px;
  border-top: 2px solid #9fb8aa;
  padding: 22px 0 24px;
}

.reader-sleep-study-group + .reader-sleep-study-group {
  margin-top: 26px;
}

.reader-sleep-study-summary,
.reader-sleep-outcomes {
  min-width: 0;
}

.reader-sleep-study-label {
  margin: 0 0 8px;
  color: #63736a;
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reader-sleep-study-summary h4 {
  margin: 0 0 7px;
  color: #1d3026;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  line-height: 1.35;
}

.reader-sleep-study-summary > .reader-source-links {
  display: block;
  margin-bottom: 18px;
}

.reader-sleep-study-summary > .reader-source-links a {
  color: #105d45;
  font-size: 0.76rem;
  font-weight: 900;
  text-underline-offset: 4px;
}

.reader-sleep-study-summary dl {
  display: grid;
  gap: 9px;
  margin: 0;
}

.reader-sleep-study-summary dl > div {
  min-width: 0;
}

.reader-sleep-study-summary dt {
  margin-bottom: 2px;
  color: #78877f;
  font-size: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reader-sleep-study-summary dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: #405148;
  font-size: 0.76rem;
  line-height: 1.4;
}

.reader-sleep-outcome {
  position: relative;
  border-bottom: 1px solid #dce4df;
  padding: 0 0 17px 19px;
}

.reader-sleep-outcome + .reader-sleep-outcome {
  padding-top: 17px;
}

.reader-sleep-outcome:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.reader-sleep-outcome::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #105d45;
  content: "";
}

.reader-sleep-outcome + .reader-sleep-outcome::before {
  top: 21px;
}

.reader-sleep-outcome:has(.reader-sleep-result-no_detected_effect)::before {
  background: #69839a;
}

.reader-sleep-outcome:has(.reader-sleep-result-decreases)::before {
  background: #a47a2d;
}

.reader-sleep-result-status {
  margin: 0 0 5px;
  color: #105d45;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reader-sleep-result-no_detected_effect {
  color: #526f88;
}

.reader-sleep-result-decreases {
  color: #916c28;
}

.reader-seizure-outcome-positive::before {
  background: #105d45;
}

.reader-seizure-outcome-caution::before {
  background: #a54f3a;
}

.reader-seizure-outcome-neutral::before {
  background: #526f88;
}

.reader-seizure-result-positive {
  color: #105d45;
}

.reader-seizure-result-caution {
  color: #954533;
}

.reader-seizure-result-neutral {
  color: #526f88;
}

.reader-seizure-evidence-group {
  scroll-margin-top: 72px;
}

.reader-sleep-outcome h5 {
  margin: 0 0 5px;
  overflow-wrap: anywhere;
  color: #1d3026;
  font-size: 0.96rem;
  line-height: 1.35;
}

.reader-sleep-outcome > p:last-child {
  margin: 0;
  color: #54635b;
  font-size: 0.84rem;
  line-height: 1.52;
}

.reader-sleep-study-limits {
  grid-column: 1 / -1;
  margin: 0;
  border-top: 1px solid #e1e7e3;
  padding-top: 14px;
  color: #706447;
  font-size: 0.76rem;
  line-height: 1.5;
}

.reader-sleep-study-limits strong {
  color: #554b33;
}

.reader-sleep-study-list {
  display: grid;
  gap: 0;
  border-bottom: 1px solid #d3ddd7;
}

.reader-sleep-study-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1.58fr);
  gap: 8px 30px;
  border-top: 1px solid #d3ddd7;
  padding: 26px 0 28px;
}

.reader-sleep-study-list .research-posture {
  grid-row: 1 / span 3;
}

.reader-sleep-study-list h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 1.1rem;
  line-height: 1.42;
}

.reader-sleep-study-list .reader-study-facts,
.reader-sleep-study-list article > a {
  grid-column: 2;
}

.reader-evidence-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 32px;
}

.reader-evidence-lanes article {
  border-top: 3px solid #105d45;
  padding: 17px 3px 2px 0;
}

.reader-evidence-lanes article:nth-child(2) {
  border-top-color: #486b8a;
}

.reader-evidence-lanes article:nth-child(3) {
  border-top-color: #b48739;
}

.reader-evidence-lanes span {
  color: #66766d;
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reader-evidence-lanes h3 {
  margin: 7px 0 9px;
}

.reader-evidence-lanes p {
  margin: 0;
  color: #4b5a52;
  line-height: 1.58;
}

.reader-profile-note {
  margin: 16px 0 0;
  color: #5c6b63;
  font-size: 0.9rem;
  line-height: 1.55;
}

.reader-context-story {
  max-width: 780px;
  margin-top: 42px;
  border-top: 1px solid #d8e0dc;
  padding-top: 32px;
}

.reader-context-story h3 {
  margin: 0 0 16px;
  color: #073d2d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.18;
}

.reader-context-story p {
  margin: 0 0 15px;
  color: #3e4d45;
  font-size: 1rem;
  line-height: 1.72;
}

.reader-study-list {
  display: grid;
  gap: 0;
}

.reader-study-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1.58fr);
  column-gap: 30px;
  border-top: 1px solid #d8e0dc;
  padding: 24px 0;
}

.reader-study-list article .research-posture {
  grid-row: 1 / span 2;
}

.reader-study-facts {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 16px 0 0;
  border-top: 1px solid #e1e7e3;
}

.reader-study-facts > div {
  min-width: 0;
  border-bottom: 1px solid #e1e7e3;
  padding: 12px 14px 12px 0;
}

.reader-study-facts > div:nth-child(2n) {
  padding-left: 14px;
}

.reader-study-facts dt {
  margin-bottom: 4px;
  color: #547063;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.reader-study-facts dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: #2f3d36;
  font-size: 0.87rem;
  line-height: 1.45;
}

.reader-findings-list {
  display: grid;
  margin-top: 30px;
  border-bottom: 1px solid #d8e0dc;
}

.reader-finding-source {
  display: grid;
  grid-template-columns: minmax(190px, 0.46fr) minmax(0, 1.54fr);
  gap: 34px;
  border-top: 1px solid #d8e0dc;
  padding: 30px 0 32px;
}

.reader-finding-source-meta {
  min-width: 0;
}

.reader-finding-source-meta h3 {
  margin: 0 0 9px;
  overflow-wrap: anywhere;
  color: #183a2c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.32;
}

.reader-finding-source-meta > p:not(.research-posture) {
  margin: 0 0 11px;
  color: #4c5d54;
  font-size: 0.82rem;
}

.reader-finding-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reader-finding-list > li {
  position: relative;
  border-bottom: 1px solid #e2e8e4;
  padding: 0 0 18px 25px;
  margin-bottom: 18px;
}

.reader-finding-list > li::before {
  position: absolute;
  top: 0.66em;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #105d45;
  content: "";
}

.reader-finding-list > li:last-child {
  margin-bottom: 0;
}

.reader-finding-list p {
  margin: 0;
  color: #2f3e36;
  font-size: 1rem;
  line-height: 1.72;
}

.reader-finding-list .reader-finding-detail {
  margin-top: 9px;
  color: #526159;
  font-size: 0.88rem;
  line-height: 1.55;
}

.reader-finding-limits {
  margin-top: 20px;
  border-left: 3px solid #b48739;
  background: #fbf8f0;
  padding: 18px 20px;
}

.reader-finding-limits > strong {
  color: #5e4c2d;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.reader-finding-limits ul {
  display: grid;
  gap: 7px;
  margin: 10px 0 0;
  padding-left: 19px;
}

.reader-finding-limits li {
  color: #575044;
  font-size: 0.87rem;
  line-height: 1.5;
}

.reader-safety {
  margin: 68px -34px 0;
  border: 1px solid #e0d5bd;
  border-left: 5px solid #b48739;
  border-radius: 7px;
  background: #fffaf0;
  padding: 38px 34px;
}

.reader-safety p:not(.section-kicker) {
  max-width: 780px;
  color: #4e4a3c;
  line-height: 1.66;
}

.reader-safety-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 17px;
  margin-top: 24px;
}

.reader-safety-links a {
  color: #6b552d;
  font-size: 0.9rem;
  font-weight: 800;
}

.reader-faq > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin-top: 26px;
}

.reader-faq article {
  border-top: 1px solid #d8e0dc;
  padding: 22px 0;
}

.reader-faq h3 {
  margin: 0 0 9px;
}

.reader-faq p {
  margin: 0;
  color: #4b5a52;
  line-height: 1.62;
}

.reader-related > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.reader-related > div > a {
  display: grid;
  gap: 8px;
  min-height: 168px;
  border: 1px solid #d8e0dc;
  border-radius: 7px;
  background: #ffffff;
  padding: 20px;
  color: inherit;
  text-decoration: none;
}

.reader-related > div > a:hover {
  border-color: #8eaa9a;
  box-shadow: 0 14px 30px rgba(28, 45, 35, 0.08);
}

.reader-related span {
  color: #105d45;
  font-size: 0.71rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reader-related strong {
  color: #1b2922;
  font-size: 1.04rem;
  line-height: 1.3;
}

.reader-related small {
  color: #5c6b63;
  line-height: 1.48;
}

.reader-guide-details > div {
  display: grid;
  gap: 30px;
  max-width: 860px;
}

.reader-guide-long-form {
  border-top: 1px solid #d8e0dc;
  padding-top: 29px;
}

.reader-guide-long-form h3 {
  max-width: 680px;
  margin: 0 0 10px;
  color: #1b2922;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1.22;
}

.reader-guide-long-form p {
  max-width: 72ch;
  margin: 0;
  color: #435249;
  line-height: 1.67;
}

.reader-guide-long-form-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.reader-guide-long-form-links > a {
  display: grid;
  gap: 6px;
  min-height: 118px;
  border: 1px solid #d8e0dc;
  border-radius: 7px;
  background: #fbfcfa;
  padding: 16px;
  color: inherit;
  text-decoration: none;
}

.reader-guide-long-form-links > a:hover {
  border-color: #8eaa9a;
  box-shadow: 0 10px 22px rgba(28, 45, 35, 0.07);
}

.reader-guide-long-form-links span {
  color: #105d45;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reader-guide-long-form-links strong {
  color: #1b2922;
  font-size: 0.98rem;
  line-height: 1.28;
}

.reader-guide-long-form-links small {
  color: #5c6b63;
  font-size: 0.87rem;
  line-height: 1.43;
}

.reader-reference-list {
  display: grid;
  gap: 0;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.reader-reference-list > li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 13px;
  border-top: 1px solid #d8e0dc;
  padding: 17px 0;
}

.reader-reference-list > li > span {
  color: #105d45;
  font-weight: 900;
}

.reader-reference-list strong,
.reader-source-library strong {
  display: block;
  color: #25332c;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.reader-reference-list small,
.reader-source-library small {
  display: block;
  margin: 5px 0 8px;
  color: #4d5b54;
  line-height: 1.45;
}

.reader-source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.reader-source-links a {
  font-size: 0.82rem;
  font-weight: 800;
}

.reader-source-library {
  border-top: 1px solid #bdcbc3;
  border-bottom: 1px solid #bdcbc3;
  padding: 18px 0;
}

.reader-source-library summary {
  color: #105d45;
  font-weight: 900;
  cursor: pointer;
}

.reader-source-library > p {
  max-width: 700px;
  color: #5e6c64;
  line-height: 1.6;
}

.reader-source-library ol {
  display: grid;
  gap: 0;
  padding-left: 24px;
}

.reader-source-library li {
  border-top: 1px solid #e1e7e3;
  padding: 15px 4px;
}

.reader-digest {
  display: flex;
  gap: 34px;
  align-items: center;
  justify-content: space-between;
  margin-top: 72px;
  border-radius: 8px;
  background: #073d2d;
  padding: 38px 42px;
  color: #e7f0eb;
}

.reader-digest .section-kicker {
  color: #a9cfb9;
}

.reader-digest h2 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 2rem;
}

.reader-digest p:last-child {
  max-width: 670px;
  margin: 0;
  color: #d1ded7;
}

.reader-digest .button {
  flex: 0 0 auto;
  border-color: #ffffff;
  background: #ffffff;
  color: #073d2d;
}

.reader-digest-signup {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1.2fr);
  gap: 42px;
  align-items: start;
}

.reader-digest-signup > div {
  padding-top: 16px;
}

.reader-digest-signup .digest-form {
  margin: 0;
  border-color: #d5ded8;
  border-top-color: #287453;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(24, 56, 43, 0.08);
}

.reader-standard-page .reader-takeaways strong {
  color: #073d2d;
}

.reader-home-hero {
  display: grid;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 52px 0 72px;
  text-align: center;
}

.reader-home-hero-copy {
  max-width: 850px;
  margin: 0 auto;
}

.reader-home-hero h1 {
  margin: 10px 0 20px;
  color: #14201a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.reader-home-hero-copy > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: #4c5c53;
  font-size: 1.2rem;
  line-height: 1.62;
}

.reader-home-search {
  position: relative;
  z-index: 5;
  display: grid;
  gap: 14px;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #c6d4cc;
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 22px 55px rgba(30, 54, 41, 0.11);
  text-align: left;
}

.reader-home-search > label {
  display: block;
  margin: 0;
  color: #425148;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reader-home-search input[type="search"] {
  width: 100%;
  min-height: 62px;
  border: 1px solid #9db7a8;
  border-radius: 7px;
  padding: 13px 17px;
  color: #17251d;
  font-size: 1.15rem;
}

.reader-search-suggestions {
  display: grid;
  gap: 9px;
  border-top: 1px solid #e2e9e4;
  padding-top: 14px;
}

.reader-search-suggestions > p {
  margin: 0;
  color: #607067;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reader-home-search .home-query-chips {
  gap: 8px;
}

.reader-home-search .home-query-chips button {
  min-height: 36px;
  border-color: #c7d6ca;
  background: #f7faf7;
  padding: 7px 11px;
  color: #345144;
  font-size: 0.86rem;
  font-weight: 800;
}

.reader-home-search .search-results:not([hidden]) {
  margin-top: 2px;
}

.reader-home-promises {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid #d8e0dc;
  border-bottom: 1px solid #d8e0dc;
}

.reader-home-promises div {
  padding: 17px 12px;
}

.reader-home-promises div + div {
  border-left: 1px solid #d8e0dc;
}

.reader-home-promises strong,
.reader-home-promises span {
  display: block;
}

.reader-home-promises strong {
  color: #223129;
  font-size: 0.92rem;
}

.reader-home-promises span {
  margin-top: 4px;
  color: #4c5b53;
  font-size: 0.82rem;
}

.reader-home-section {
  padding: 78px 0;
  border-top: 1px solid #d8e0dc;
}

.reader-home-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.reader-home-heading-row {
  display: flex;
  max-width: none;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
}

.reader-home-heading h2,
.reader-home-band h2,
.reader-home-method h2,
.reader-home-digest h2 {
  margin: 7px 0 0;
  color: #16241d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.55rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.reader-home-heading-row > a {
  flex: 0 0 auto;
  font-weight: 800;
}

.reader-home-paths {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.reader-home-paths > a {
  display: grid;
  gap: 9px;
  min-height: 214px;
  border: 1px solid #d8e0dc;
  border-top: 4px solid #105d45;
  border-radius: 7px;
  background: #ffffff;
  padding: 21px;
  color: inherit;
  text-decoration: none;
}

.reader-home-paths > a:nth-child(2),
.reader-home-paths > a:nth-child(5) {
  border-top-color: #486b8a;
}

.reader-home-paths > a:nth-child(3) {
  border-top-color: #a95247;
}

.reader-home-paths > a:nth-child(4) {
  border-top-color: #b48739;
}

.reader-home-paths span {
  color: #839088;
  font-size: 0.76rem;
  font-weight: 900;
}

.reader-home-paths strong {
  color: #1d2b23;
  font-size: 1.16rem;
}

.reader-home-paths p {
  margin: 0;
  color: #5c6b63;
  font-size: 0.92rem;
  line-height: 1.52;
}

.reader-home-question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #cdd8d2;
}

.reader-home-question-grid > a {
  display: grid;
  gap: 8px;
  border-bottom: 1px solid #cdd8d2;
  padding: 22px 26px 22px 0;
  color: inherit;
  text-decoration: none;
}

.reader-home-question-grid > a:nth-child(2n) {
  border-left: 1px solid #cdd8d2;
  padding-right: 0;
  padding-left: 26px;
}

.reader-home-question-grid strong {
  color: #1d2b23;
  font-size: 1.12rem;
}

.reader-home-question-grid span {
  color: #617068;
  line-height: 1.5;
}

.reader-home-band {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  gap: 44px;
  align-items: center;
  margin: 24px -32px;
  border-top: 1px solid #c8d8cf;
  border-bottom: 1px solid #c8d8cf;
  background: #edf4f0;
  padding: 48px 32px;
}

.reader-home-band p:last-child {
  color: #59675f;
  line-height: 1.6;
}

.reader-home-compound-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.reader-home-compound-links a {
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 1px solid #aac0b3;
  border-radius: 7px;
  background: #ffffff;
  color: #205c42;
  font-weight: 900;
  text-decoration: none;
}

.reader-home-research-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.reader-home-research-list a {
  display: grid;
  gap: 8px;
  min-height: 190px;
  border: 1px solid #d8e0dc;
  border-radius: 7px;
  background: #ffffff;
  padding: 23px;
  color: inherit;
  text-decoration: none;
}

.reader-home-research-list span {
  color: #105d45;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reader-home-research-list strong {
  color: #1d2b23;
  font-size: 1.1rem;
  line-height: 1.34;
}

.reader-home-research-list p {
  margin: 0;
  color: #617068;
  line-height: 1.52;
}

.reader-home-method {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr) auto;
  gap: 34px;
  align-items: center;
  border-top: 1px solid #d8e0dc;
  border-bottom: 1px solid #d8e0dc;
  padding: 48px 0;
}

.reader-home-method p:last-of-type {
  margin: 0;
  color: #58675f;
  line-height: 1.62;
}

.reader-home-method > a {
  font-weight: 900;
  white-space: nowrap;
}

.reader-home-digest {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  margin-top: 78px;
  border-radius: 8px;
  background: #073d2d;
  padding: 42px;
  color: #d9e6df;
}

.reader-home-digest .eyebrow {
  color: #aad1bb;
}

.reader-home-digest h2 {
  color: #ffffff;
}

.reader-home-digest p:last-child {
  margin-bottom: 0;
  color: #d1ded7;
}

.reader-home-digest .button {
  flex: 0 0 auto;
  background: #ffffff;
  color: #073d2d;
}

.reader-collection {
  max-width: 1120px;
  margin: 0 auto;
}

.reader-collection-hero {
  max-width: 900px;
  padding: 24px 0 46px;
}

.reader-collection-hero .eyebrow,
.reader-collection-heading .eyebrow {
  color: #105d45;
}

.reader-collection-hero h1 {
  margin: 9px 0 20px;
  color: #14201a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.35rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.reader-collection-hero > p:last-child {
  max-width: 800px;
  margin: 0;
  color: #4b5b52;
  font-size: 1.2rem;
  line-height: 1.62;
}

.reader-collection-search {
  max-width: 820px;
  border: 1px solid #c6d4cc;
  border-radius: 8px;
  background: #ffffff;
  padding: 17px;
  box-shadow: 0 16px 40px rgba(30, 54, 41, 0.08);
}

.reader-collection-search > label {
  margin-bottom: 8px;
  color: #415148;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reader-collection-search input[type="search"] {
  min-height: 55px;
  border-color: #9db7a8;
  font-size: 1.04rem;
}

.reader-collection-search .search-results:not([hidden]) {
  margin-top: 14px;
}

.reader-collection-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 30px;
  border-top: 1px solid #d8e0dc;
  border-bottom: 1px solid #d8e0dc;
  padding: 15px 0;
}

.reader-collection-nav a {
  color: #466157;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.reader-collection-section {
  padding: 72px 0;
  border-bottom: 1px solid #d8e0dc;
}

.reader-collection-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.reader-collection-heading h2 {
  margin: 7px 0 10px;
  color: #16241d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.reader-collection-heading > p:last-child {
  margin: 0;
  color: #627068;
  line-height: 1.55;
}

.reader-collection-featured,
.reader-collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.reader-collection-featured > a,
.reader-collection-grid > a {
  display: grid;
  gap: 9px;
  min-width: 0;
  border: 1px solid #d8e0dc;
  border-radius: 7px;
  background: #ffffff;
  padding: 22px;
  color: inherit;
  text-decoration: none;
}

.reader-collection-featured > a {
  min-height: 220px;
  border-top: 4px solid #105d45;
}

.reader-collection-featured > a:nth-child(2n) {
  border-top-color: #486b8a;
}

.reader-collection-featured > a:nth-child(3n) {
  border-top-color: #b48739;
}

.reader-collection-grid > a {
  min-height: 168px;
}

.reader-collection-featured > a:hover,
.reader-collection-grid > a:hover {
  border-color: #8eaa9a;
  box-shadow: 0 14px 30px rgba(28, 45, 35, 0.08);
}

.reader-collection-featured span,
.reader-collection-grid span {
  color: #105d45;
  font-size: 0.71rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reader-collection-featured strong,
.reader-collection-grid strong {
  color: #1d2b23;
  font-size: 1.08rem;
  line-height: 1.33;
  overflow-wrap: anywhere;
}

.reader-collection-featured p,
.reader-collection-grid p {
  margin: 0;
  color: #5c6b63;
  line-height: 1.52;
}

.reader-collection-featured small {
  align-self: end;
  color: #105d45;
  font-weight: 900;
}

.reader-collection-topics .reader-collection-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reader-dictionary,
.reader-term {
  max-width: 1120px;
  margin: 0 auto;
}

.reader-dictionary-hero,
.reader-term-hero {
  max-width: 920px;
  padding: 24px 0 46px;
}

.reader-dictionary-hero .eyebrow,
.reader-term-hero .eyebrow {
  color: #105d45;
}

.reader-dictionary-hero h1,
.reader-term-hero h1 {
  margin: 9px 0 20px;
  color: #14201a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.35rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.reader-dictionary-hero > p:last-child,
.reader-term-hero > p:not(.eyebrow, .reader-term-aliases) {
  max-width: 820px;
  margin: 0;
  color: #4b5b52;
  font-size: 1.2rem;
  line-height: 1.62;
}

.reader-dictionary-section {
  padding: 72px 0;
  border-bottom: 1px solid #d8e0dc;
}

.reader-dictionary-popular {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.reader-dictionary-popular > a,
.reader-dictionary-categories section > div > a {
  display: grid;
  gap: 8px;
  min-width: 0;
  border: 1px solid #d8e0dc;
  border-radius: 7px;
  background: #ffffff;
  padding: 19px;
  color: inherit;
  text-decoration: none;
}

.reader-dictionary-popular > a {
  min-height: 195px;
  border-top: 4px solid #105d45;
}

.reader-dictionary-popular > a:nth-child(2n) {
  border-top-color: #486b8a;
}

.reader-dictionary-popular > a:nth-child(3n) {
  border-top-color: #b48739;
}

.reader-dictionary-popular span,
.reader-dictionary-categories span {
  color: #105d45;
  font-size: 0.69rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reader-dictionary-popular strong,
.reader-dictionary-categories strong {
  color: #1d2b23;
  font-size: 1.04rem;
}

.reader-dictionary-popular p,
.reader-dictionary-categories section > div > a p {
  margin: 0;
  color: #5c6b63;
  font-size: 0.91rem;
  line-height: 1.5;
}

.reader-dictionary-categories {
  display: grid;
  gap: 42px;
}

.reader-dictionary-categories > section {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1.55fr);
  gap: 30px;
  border-top: 1px solid #d8e0dc;
  padding-top: 26px;
}

.reader-dictionary-categories > section > h3 {
  grid-column: 1;
  margin: 0;
  color: #1d2b23;
  font-size: 1.2rem;
}

.reader-dictionary-categories > section > p {
  grid-column: 1;
  margin: -18px 0 0;
  color: #64726a;
  line-height: 1.5;
}

.reader-dictionary-categories > section > div {
  display: grid;
  grid-row: 1 / span 2;
  grid-column: 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.reader-dictionary-az {
  display: grid;
  gap: 0;
}

.reader-dictionary-az > section {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 20px;
  border-top: 1px solid #d8e0dc;
  padding: 20px 0;
}

.reader-dictionary-az h3 {
  margin: 0;
  color: #105d45;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.reader-dictionary-az section > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.reader-dictionary-az a {
  color: #344b40;
  font-weight: 800;
}

.reader-term-hero {
  max-width: 980px;
}

.reader-term-aliases {
  margin-top: 18px;
  color: #637068;
  font-size: 0.9rem;
}

.reader-term-copy {
  max-width: 800px;
  color: #3d4c44;
  font-size: 1.08rem;
  line-height: 1.68;
}

.reader-term-note,
.reader-term-confuse,
.reader-term-no-sources {
  max-width: 800px;
  margin-top: 28px;
  border-left: 4px solid #105d45;
  background: #edf4f0;
  padding: 20px 22px;
}

.reader-term-note > strong,
.reader-term-confuse > strong {
  color: #1d2b23;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.reader-term-note p {
  margin: 7px 0 0;
  line-height: 1.58;
}

.reader-term-confuse > div,
.reader-term-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.reader-term-confuse a,
.reader-term-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid #b8c9bf;
  border-radius: 6px;
  background: #ffffff;
  padding: 6px 10px;
  color: #0d503b;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.reader-term-related h3 {
  margin: 34px 0 10px;
}

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

.reader-term-related-grid > a {
  display: grid;
  gap: 8px;
  min-height: 175px;
  border: 1px solid #d8e0dc;
  border-radius: 7px;
  background: #ffffff;
  padding: 20px;
  color: inherit;
  text-decoration: none;
}

.reader-term-related-grid span {
  color: #105d45;
  font-size: 0.69rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reader-term-related-grid strong {
  color: #1d2b23;
  line-height: 1.33;
}

.reader-term-related-grid p {
  margin: 0;
  color: #5c6b63;
  font-size: 0.91rem;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .reader-home-paths {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reader-related > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reader-collection-featured,
  .reader-collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reader-dictionary-popular {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reader-term-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .reader-home-page .shell,
  .reader-page .shell,
  .reader-collection-page .shell,
  .reader-dictionary-page .shell,
  .reader-dictionary-term-page .shell {
    padding: 34px 22px 68px;
  }

  .reader-hero h1 {
    font-size: 3.35rem;
  }

  .reader-home-hero h1 {
    font-size: 3.8rem;
  }

  .reader-collection-hero h1 {
    font-size: 3.35rem;
  }

  .reader-dictionary-hero h1,
  .reader-term-hero h1 {
    font-size: 3.35rem;
  }

  .reader-dictionary-categories > section {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .reader-dictionary-categories > section > h3,
  .reader-dictionary-categories > section > p,
  .reader-dictionary-categories > section > div {
    grid-row: auto;
    grid-column: 1;
  }

  .reader-dictionary-categories > section > p {
    margin: 0 0 8px;
  }

  .reader-research-grid,
  .reader-faq > div,
  .reader-home-question-grid,
  .reader-home-research-list {
    grid-template-columns: 1fr;
  }

  .reader-home-question-grid > a:nth-child(2n) {
    border-left: 0;
    padding-left: 0;
  }

  .reader-evidence-lanes {
    grid-template-columns: 1fr;
  }

  .reader-benefit-paths > li {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 22px;
  }

  .reader-benefit-open {
    grid-column: 2;
    justify-self: start;
  }

  .reader-sleep-question {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .reader-digest-signup {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .reader-digest-signup > div {
    padding-top: 0;
  }

  .reader-study-list article {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .reader-study-list article .research-posture {
    grid-row: auto;
  }

  .reader-study-facts {
    grid-column: 1;
  }

  .reader-finding-source {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reader-finding-source-meta h3 {
    max-width: 34rem;
  }

  .reader-safety {
    margin-right: 0;
    margin-left: 0;
  }

  .reader-home-paths {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reader-home-band,
  .reader-home-method {
    grid-template-columns: 1fr;
  }

  .reader-home-band {
    margin-right: -22px;
    margin-left: -22px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .reader-home-method > a {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .reader-home-page .shell,
  .reader-page .shell,
  .reader-collection-page .shell,
  .reader-dictionary-page .shell,
  .reader-dictionary-term-page .shell {
    padding: 24px 16px 56px;
  }

  .reader-breadcrumbs {
    margin-bottom: 24px;
  }

  .reader-hero {
    padding: 12px 0 34px;
  }

  .reader-hero h1 {
    margin-bottom: 17px;
    font-size: 2.55rem;
    line-height: 1.04;
  }

  .reader-lede {
    font-size: 1.05rem;
    line-height: 1.55;
  }

  .reader-meta {
    display: grid;
    gap: 6px;
  }

  .reader-meta span + span::before {
    display: none;
  }

  .reader-jump-links {
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
    padding: 12px 0;
  }

  .reader-jump-links strong {
    padding-left: 2px;
  }

  .reader-jump-links-list {
    gap: 8px 16px;
    padding: 5px 2px 8px;
  }

  .reader-section {
    padding: 48px 0;
  }

  .reader-section h2,
  .reader-digest h2 {
    font-size: 1.9rem;
  }

  .reader-answer-copy {
    font-size: 1.16rem;
    line-height: 1.65;
  }

  .reader-research-grid,
  .reader-related > div,
  .reader-guide-long-form-links {
    grid-template-columns: 1fr;
  }

  .reader-research-area {
    padding: 19px;
  }

  .reader-benefit-paths > li {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 24px 0 26px;
  }

  .reader-benefit-rank {
    display: flex;
    gap: 12px;
    align-items: baseline;
  }

  .reader-benefit-rank > span {
    font-size: 1.5rem;
  }

  .reader-benefit-rank > small {
    max-width: none;
  }

  .reader-benefit-open {
    grid-column: 1;
  }

  .reader-preview-banner {
    margin-top: 8px;
    padding: 13px 15px;
  }

  .reader-sleep-question-heading > span {
    margin-bottom: 12px;
    font-size: 0.7rem;
  }

  .reader-sleep-question-heading h3 {
    font-size: 1.38rem;
  }

  .reader-sleep-study-group {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .reader-sleep-study-summary dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 20px;
  }

  .reader-sleep-study-list article {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .reader-sleep-study-list .research-posture {
    grid-row: auto;
  }

  .reader-sleep-study-list .reader-study-facts,
  .reader-sleep-study-list article > a {
    grid-column: 1;
  }

  .reader-safety {
    padding: 28px 20px;
  }

  .reader-digest,
  .reader-home-digest {
    display: grid;
    gap: 24px;
    padding: 28px 22px;
  }

  .reader-digest .button,
  .reader-home-digest .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .reader-home-hero {
    gap: 22px;
    padding: 32px 0 52px;
  }

  .reader-home-hero h1 {
    font-size: 2.8rem;
    line-height: 1.02;
  }

  .reader-collection-hero {
    padding: 12px 0 34px;
  }

  .reader-collection-hero h1 {
    font-size: 2.55rem;
    line-height: 1.04;
  }

  .reader-dictionary-hero,
  .reader-term-hero {
    padding: 12px 0 34px;
  }

  .reader-dictionary-hero h1,
  .reader-term-hero h1 {
    font-size: 2.55rem;
    line-height: 1.04;
  }

  .reader-dictionary-hero > p:last-child,
  .reader-term-hero > p:not(.eyebrow, .reader-term-aliases) {
    font-size: 1.02rem;
  }

  .reader-dictionary-section {
    padding: 52px 0;
  }

  .reader-dictionary-popular,
  .reader-dictionary-categories > section > div,
  .reader-term-related-grid {
    grid-template-columns: 1fr;
  }

  .reader-dictionary-popular > a,
  .reader-term-related-grid > a {
    min-height: 0;
  }

  .reader-dictionary-az > section {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .reader-collection-hero > p:last-child {
    font-size: 1.02rem;
  }

  .reader-collection-search {
    padding: 13px;
  }

  .reader-collection-nav {
    gap: 9px 15px;
  }

  .reader-collection-section {
    padding: 52px 0;
  }

  .reader-collection-heading h2 {
    font-size: 2rem;
  }

  .reader-collection-featured,
  .reader-collection-grid,
  .reader-collection-topics .reader-collection-grid {
    grid-template-columns: 1fr;
  }

  .reader-collection-featured > a,
  .reader-collection-grid > a {
    min-height: 0;
  }

  .reader-home-hero-copy > p:last-child {
    font-size: 1.04rem;
  }

  .reader-home-search {
    padding: 13px;
  }

  .reader-home-search input[type="search"] {
    min-height: 56px;
    font-size: 1rem;
  }

  .reader-home-promises {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .reader-home-promises div + div {
    border-top: 1px solid #d8e0dc;
    border-left: 0;
  }

  .reader-home-section {
    padding: 56px 0;
  }

  .reader-home-heading-row {
    display: grid;
    align-items: start;
  }

  .reader-home-heading h2,
  .reader-home-band h2,
  .reader-home-method h2,
  .reader-home-digest h2 {
    font-size: 2rem;
  }

  .reader-home-paths,
  .reader-home-compound-links {
    grid-template-columns: 1fr;
  }

  .reader-home-paths > a {
    min-height: 0;
  }

  .reader-home-band {
    margin-right: -16px;
    margin-left: -16px;
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (max-width: 520px) {
  .shell {
    padding: 36px 18px;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    justify-content: center;
    width: 100%;
  }

  .site-hero-stats,
  .public-meta,
  .consumer-scorecard,
  .guide-snapshot,
  .home-corpus-grid,
  .digest-stats,
  .coa-stat-grid,
  .collection-stat-grid {
    grid-template-columns: 1fr;
  }

  .search-panel,
  .plain-answer,
  .article-section,
  .home-search,
  .home-corpus-card,
  .home-review-card,
  .growth-brief,
  .growth-panel,
  .trust-bridge,
  .digest-form,
  .guide-warning,
  .standard-roadmap,
  .coa-preview,
  .coa-empty,
  .coa-info-card,
  .collection-stat-card {
    padding: 18px;
  }

  .consumer-hero h1,
  .site-hero h1,
  .public-hero h1,
  .home-hero h1,
  .collection-hero h1 {
    font-size: 1.95rem;
  }
}

/* Visual polish layer: shared rhythm, contrast, alignment, and proximity. */
::selection {
  background: #dcebdc;
  color: var(--ink-strong);
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  box-shadow: var(--focus-ring);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  :focus-visible {
    outline: 3px solid Highlight;
    outline-offset: 3px;
  }
}

a {
  color: var(--green);
  text-decoration-color: rgba(14, 91, 67, 0.36);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--green-dark);
  text-decoration-color: currentColor;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  border-bottom: 1px solid rgba(189, 201, 186, 0.78);
  background: rgba(255, 254, 250, 0.94);
  box-shadow: 0 10px 28px rgba(28, 39, 32, 0.055);
  backdrop-filter: blur(12px);
}

.topbar > a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--ink-strong);
  font-size: 1.02rem;
  letter-spacing: 0;
}

.topbar > a::before {
  width: 13px;
  height: 13px;
  border: 3px solid var(--green);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--surface);
  content: "";
}

.topbar nav {
  gap: 6px;
}

.topbar nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  padding: 6px 9px;
  color: var(--muted-strong);
  font-size: 0.88rem;
}

.topbar nav a:hover,
.topbar nav a:focus-visible {
  border-color: var(--line);
  background: var(--surface-alt);
  color: var(--ink-strong);
  text-decoration: none;
}

.shell {
  max-width: 1240px;
  padding: 64px 32px 86px;
}

h1,
h2,
h3,
h4 {
  color: var(--ink-strong);
  letter-spacing: 0;
}

h1 {
  font-size: 2.35rem;
  line-height: 1.05;
  text-wrap: balance;
}

h2 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  line-height: 1.16;
  text-wrap: balance;
}

h3 {
  line-height: 1.22;
}

p,
li,
dd,
td {
  color: var(--body-copy);
}

p {
  line-height: 1.68;
}

.muted,
.trace,
.stats-grid span,
.site-card span,
.public-meta span,
.site-hero-stats span {
  color: var(--muted);
}

.eyebrow {
  color: var(--green);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.page-header,
.site-hero,
.public-hero,
.home-hero,
.collection-hero,
.consumer-hero {
  border-bottom-color: var(--line);
}

.site-hero,
.public-hero,
.home-hero,
.collection-hero,
.consumer-hero {
  gap: 36px;
  margin-bottom: 42px;
  padding-bottom: 36px;
}

.site-hero,
.public-hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
}

.site-hero h1,
.public-hero h1 {
  max-width: 780px;
  font-size: 3.1rem;
  line-height: 1;
}

.home-hero {
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.52fr);
  align-items: start;
}

.home-hero-copy {
  gap: 20px;
}

.home-hero h1 {
  max-width: 820px;
  font-size: 4.65rem;
  line-height: 0.96;
}

.home-lede,
.collection-hero p,
.consumer-hero .lede,
.research-intro {
  color: var(--body-copy);
  font-size: 1.1rem;
  line-height: 1.7;
}

.collection-hero h1 {
  max-width: 820px;
  font-size: 3.7rem;
  line-height: 0.98;
}

.consumer-hero {
  align-items: stretch;
}

.consumer-hero h1 {
  max-width: 880px;
  font-size: 3.3rem;
  line-height: 1;
}

.consumer-hero-copy {
  align-self: center;
}

button,
.button {
  justify-content: center;
  min-height: 42px;
  border-color: var(--green);
  border-radius: var(--radius-control);
  background: var(--green);
  box-shadow: 0 1px 0 rgba(16, 24, 19, 0.08);
  font-weight: 800;
  line-height: 1;
  transition: background 0.16s ease, border-color 0.16s ease,
    box-shadow 0.16s ease, transform 0.16s ease;
}

button:hover,
.button:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}

.button.secondary {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--green);
}

.button.secondary:hover {
  border-color: var(--green);
  background: var(--green-soft);
  color: var(--green-dark);
}

:where(
    .panel,
    .empty,
    .details,
    .preview,
    .dashboard-grid article,
    .stat-link,
    .list-item,
    .form-grid,
    .form-stack,
    .article-hero,
    .article-section,
    .evidence-item,
    .site-card,
    .search-panel,
    .review-strip,
    .collection-note,
    .support-section,
    .search-result,
    .quick-link,
    .home-search,
    .home-corpus-card,
    .home-review-card,
    .home-entry-card,
    .home-list-link,
    .home-method-steps li,
    .collection-stat-card,
    .collection-insight-card,
    .collection-page-card,
    .collection-method-list li,
    .method-grid div,
    .az-group,
    .dictionary-use-strip,
    .dictionary-category-card,
    .dictionary-featured-card,
    .dictionary-reader-card,
    .dictionary-lens-card,
    .consumer-scorecard div,
    .guide-snapshot-card,
    .related-page-card,
    .related-graph-current,
    .related-graph-node,
    .related-graph-metrics div,
    .related-graph-metrics p,
    .plain-answer,
    .answer-card-list article,
    .benefit-grid article,
    .evidence-filter-chip,
    .dictionary-evidence-group,
    .research-database .public-section,
    .evidence-brief div,
    .evidence-brief p,
    .site-hero-stats div,
    .public-meta div,
    .stats-grid div
  ) {
  min-width: 0;
  border-color: var(--line);
  border-radius: var(--radius-card);
  background-color: var(--surface);
  box-shadow: var(--shadow-card);
}

:where(
    .site-card,
    .search-result,
    .quick-link,
    .home-entry-card,
    .home-list-link,
    .collection-page-card,
    .dictionary-featured-card,
    .dictionary-category-card,
    .related-page-card,
    .related-graph-node,
    .term-chip,
    .citation-link,
    .inline-citation
  ) {
  transition: border-color 0.16s ease, box-shadow 0.16s ease,
    background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

:where(
    .site-card,
    .search-result,
    .quick-link,
    .home-entry-card,
    .home-list-link,
    .collection-page-card,
    .dictionary-featured-card,
    .dictionary-category-card,
    .related-page-card,
    .related-graph-node
  ):hover,
:where(
    .site-card,
    .search-result,
    .quick-link,
    .home-entry-card,
    .home-list-link,
    .collection-page-card,
    .dictionary-featured-card,
    .dictionary-category-card,
    .related-page-card,
    .related-graph-node
  ):focus-visible {
  border-color: #9bb3a2;
  box-shadow: var(--shadow-lift);
  text-decoration: none;
  transform: translateY(-2px);
}

:where(
    .site-grid,
    .search-results,
    .quick-grid,
    .home-entry-grid,
    .home-split,
    .home-method-steps,
    .collection-insight-grid,
    .collection-card-grid,
    .collection-method-list,
    .method-grid,
    .dictionary-category-grid,
    .dictionary-featured-grid,
    .dictionary-reader-card-grid,
    .dictionary-lens-grid,
    .guide-snapshot,
    .related-page-grid,
    .related-graph-paths,
    .benefit-grid,
    .article-lane-grid
  ) {
  align-items: stretch;
}

:where(
    .site-grid,
    .quick-grid,
    .home-entry-grid,
    .collection-card-grid,
    .dictionary-category-grid,
    .dictionary-featured-grid,
    .dictionary-reader-card-grid,
    .dictionary-lens-grid,
    .guide-snapshot,
    .related-page-grid,
    .benefit-grid
  ) > * {
  height: 100%;
}

.section-gap {
  margin-top: 54px;
}

.section-heading {
  align-items: flex-end;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.section-heading h2,
.section-heading p {
  margin: 0;
}

.section-heading > a,
.section-heading > span {
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 800;
}

.stats-grid,
.site-grid,
.home-entry-grid,
.quick-grid,
.collection-card-grid,
.dictionary-category-grid,
.dictionary-featured-grid,
.dictionary-reader-card-grid,
.dictionary-lens-grid,
.guide-snapshot,
.related-page-grid,
.benefit-grid {
  gap: 16px;
}

.home-search,
.search-panel {
  gap: 16px;
  border-color: #c7d6ca;
  background: var(--surface);
}

input,
select,
textarea {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.16s ease, box-shadow 0.16s ease,
    background 0.16s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  background: #ffffff;
  outline: 0;
  box-shadow: var(--focus-ring);
}

.search-panel input[type="search"],
.home-search input[type="search"] {
  border: 1px solid #9eb9a7;
  background: #fffffb;
  color: var(--ink-strong);
  font-weight: 700;
}

.home-search input[type="search"] {
  min-height: 60px;
  padding: 12px 16px;
  font-size: 1.08rem;
}

.home-query-chips {
  gap: 7px;
}

.home-query-chips button {
  min-height: 32px;
  border-color: var(--line);
  background: var(--surface-alt);
  color: var(--muted-strong);
}

.home-query-chips button:hover,
.home-query-chips button:focus-visible {
  background: var(--green-soft);
  color: var(--green-dark);
  transform: none;
}

.search-result,
.quick-link {
  gap: 8px;
  background: var(--surface);
}

.search-summary {
  border-color: var(--line);
  background: var(--surface-alt);
}

.not-found-page {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(340px, 1fr);
  gap: 36px;
  align-items: start;
  min-height: 58vh;
  padding-top: 48px;
}

.not-found-copy h1 {
  max-width: 10ch;
  margin: 12px 0 18px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.98;
  color: var(--ink-strong);
}

.not-found-copy p {
  max-width: 52ch;
  color: var(--muted-strong);
  font-size: 1.14rem;
  line-height: 1.7;
}

.not-found-search {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.not-found-search input[type="search"] {
  min-height: 58px;
  padding: 12px 16px;
  border: 1px solid #9eb9a7;
  border-radius: 6px;
  background: #fffffb;
  color: var(--ink-strong);
  font-weight: 700;
  font-size: 1.05rem;
}

.not-found-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  grid-column: 1 / -1;
}

.home-corpus-card,
.collection-stat-card,
.consumer-scorecard {
  align-content: start;
}

.home-corpus-grid div,
.collection-stat-grid div {
  border-radius: var(--radius-control);
  background: var(--surface-alt);
}

.home-corpus-grid strong,
.collection-stat-grid strong,
.consumer-scorecard strong,
.site-hero-stats strong,
.public-meta strong,
.stats-grid strong {
  color: var(--blue);
  font-weight: 850;
  letter-spacing: 0;
}

.home-entry-card,
.collection-page-card,
.related-page-card,
.site-card {
  align-content: start;
}

.home-entry-card {
  min-height: 230px;
  padding: 20px;
}

.home-entry-card strong,
.collection-page-card strong,
.site-card strong,
.related-page-card strong {
  color: var(--ink-strong);
}

.home-method-band,
.collection-method-strip,
.dictionary-reader-map,
.research-database {
  border-top-color: var(--line);
  border-bottom-color: var(--line);
}

.dictionary-use-strip,
.plain-answer,
.review-strip {
  padding: 28px;
}

.dictionary-reader-map h2,
.plain-answer h2 {
  font-size: 2.25rem;
  line-height: 1.05;
}

.plain-answer {
  gap: 32px;
}

.answer-card-list,
.benefit-grid,
.article-body,
.evidence-bucket-summary,
.public-content {
  gap: 20px;
}

.answer-card-list article,
.benefit-grid article {
  padding: 22px;
}

.benefit-grid article {
  display: grid;
  align-content: start;
}

.rich-copy p,
.evidence-review p,
.public-section p {
  max-width: 76ch;
}

.rich-copy p {
  font-size: 1.04rem;
  line-height: 1.72;
}

.article-quick-read,
.article-guardrails,
.article-checklist {
  border-radius: var(--radius-card);
  background: var(--surface-alt);
}

.article-toc,
.public-toc {
  top: 96px;
  gap: 9px;
  border-left-color: #8fb39b;
}

.article-toc a,
.public-toc a {
  border-radius: var(--radius-control);
  padding: 4px 7px;
  color: var(--muted-strong);
}

.article-toc a:hover,
.public-toc a:hover {
  background: var(--green-soft);
  color: var(--green-dark);
  text-decoration: none;
}

.table-wrap {
  border-color: var(--line);
  box-shadow: var(--shadow-card);
}

table {
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.94rem;
}

th,
td {
  padding: 13px 14px;
  border-bottom-color: #e4e8df;
}

th {
  background: #edf2e8;
  color: var(--ink-strong);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr:hover td {
  background: #fbfcf7;
}

.reader-table td:first-child {
  color: var(--ink-strong);
}

.inline-citation,
.citation-link,
.dictionary-inline-link,
.dictionary-category-card div a,
.term-chip,
.related-term-chips span,
.article-chapter-meta span {
  border-color: #bdcddd;
  border-radius: var(--radius-control);
  background: var(--blue-soft);
  color: #244b73;
}

.inline-citation:hover,
.citation-link:hover,
.dictionary-inline-link:hover,
.dictionary-category-card div a:hover,
.term-chip:hover {
  border-color: #8aa997;
  background: var(--green-soft);
  color: var(--green-dark);
  text-decoration: none;
}

.status-pill.ready {
  background: var(--green-soft);
  color: var(--green-dark);
}

.status-pill.blocked {
  background: var(--red-soft);
  color: var(--red);
}

.message {
  background: var(--green-soft);
  border-color: #c7dac8;
}

.message.error {
  background: var(--red-soft);
  border-color: #e2b9b1;
}

.safety-callout {
  background: var(--gold-soft);
  border-color: #e7cf87;
}

.public-layout,
.journal-layout {
  gap: 34px;
}

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

.public-section h2 {
  font-size: 1.55rem;
}

.evidence-brief {
  gap: 14px;
}

.evidence-sentence {
  text-decoration-color: rgba(14, 91, 67, 0.45);
}

@media (max-width: 980px) {
  .shell {
    padding: 52px 26px 72px;
  }

  .topbar {
    position: static;
    min-height: 0;
  }

  .home-hero h1 {
    font-size: 4rem;
  }

  .collection-hero h1,
  .consumer-hero h1,
  .site-hero h1,
  .public-hero h1 {
    font-size: 2.75rem;
  }

  .article-toc,
  .public-toc {
    top: 18px;
  }
}

@media (max-width: 760px) {
  .shell {
    padding: 44px 22px 64px;
  }

  .site-hero,
  .public-hero,
  .home-hero,
  .collection-hero,
  .consumer-hero {
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 28px;
  }

  .home-hero h1 {
    font-size: 3.25rem;
  }

  .collection-hero h1,
  .consumer-hero h1,
  .site-hero h1,
  .public-hero h1 {
    font-size: 2.35rem;
  }

  .dictionary-use-strip,
  .plain-answer,
  .review-strip {
    padding: 22px;
  }

  .not-found-page {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 20px;
  }

  .not-found-copy h1 {
    max-width: 12ch;
  }

  .section-gap {
    margin-top: 42px;
  }
}

@media (max-width: 520px) {
  .shell {
    padding: 36px 18px 54px;
  }

  .topbar {
    padding: 14px 16px;
  }

  .topbar nav a {
    min-height: 32px;
    padding: 5px 7px;
    font-size: 0.84rem;
  }

  .home-hero h1,
  .collection-hero h1,
  .consumer-hero h1,
  .site-hero h1,
  .public-hero h1 {
    font-size: 2.08rem;
    line-height: 1.03;
  }

  .search-page {
    gap: 18px;
  }

  .search-page-heading {
    gap: 9px;
  }

  .search-page-heading h1 {
    font-size: 2.25rem;
    line-height: 1.04;
  }

  .search-page-heading p {
    font-size: 1rem;
  }

  .home-lede,
  .collection-hero p,
  .consumer-hero .lede,
  .research-intro {
    font-size: 1rem;
  }

  .section-heading {
    gap: 8px;
  }

  table {
    min-width: 640px;
  }
}

.topbar {
  align-items: center;
}

.topbar > a {
  display: inline-grid;
  gap: 2px;
  min-width: max-content;
  line-height: 1.05;
}

.topbar > a span {
  color: var(--ink-strong);
  font-weight: 900;
}

.topbar > a small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.topbar nav {
  gap: 6px;
}

.topbar nav a {
  min-height: 34px;
  padding: 6px 10px;
  font-size: 0.88rem;
}

.site-orientation {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  background: #f7fafc;
  padding: 10px 24px;
  color: var(--body-copy);
  font-size: 0.94rem;
  line-height: 1.45;
  text-align: center;
}

.site-orientation strong {
  color: var(--ink-strong);
  white-space: nowrap;
}

.landing-explainer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 34px;
}

.landing-explainer article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 16px;
}

.landing-explainer span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.landing-explainer p {
  margin: 0;
  color: var(--body-copy);
  font-size: 0.98rem;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .topbar {
    gap: 14px;
  }

  .topbar nav {
    justify-content: flex-start;
  }

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

@media (max-width: 760px) {
  .site-orientation {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .topbar > a {
    width: 100%;
  }

  .topbar nav {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .site-orientation {
    padding: 9px 16px;
    font-size: 0.88rem;
  }

  .topbar nav a {
    padding: 5px 7px;
  }
}

.home-corpus-card,
.home-search,
.table-wrap {
  max-width: 100%;
  min-width: 0;
}

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

@media (max-width: 520px) {
  .home-hero {
    gap: 24px;
  }
}

.topbar > a {
  display: inline-grid;
  grid-template-columns: auto minmax(0, max-content);
  align-items: center;
  column-gap: 10px;
}

.topbar > a::before {
  grid-row: 1 / span 2;
}

.topbar > a span,
.topbar > a small {
  grid-column: 2;
}

@media (max-width: 760px) {
  .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
    min-height: 0;
    padding: 10px 14px 8px;
  }

  .topbar > a {
    width: auto;
    min-width: 0;
    justify-self: start;
  }

  .topbar > a span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .topbar nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    margin: 0;
    overflow: visible;
    border-top: 1px solid #e4e9e5;
    padding: 5px 0 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .topbar nav a {
    display: grid;
    min-width: 0;
    min-height: 34px;
    place-items: center;
    padding: 5px 4px;
    font-size: 0.76rem;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .site-orientation {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
    padding: 8px 14px 10px;
    font-size: 0.86rem;
    line-height: 1.34;
    text-align: left;
  }

  .site-orientation-copy {
    display: flex;
    flex-basis: auto;
    gap: 6px;
    align-items: center;
  }

  .site-orientation-long {
    display: none;
  }

  .site-orientation-short {
    display: inline;
  }

  .site-search-mini {
    width: 100%;
    min-width: 0;
  }

  .site-search-mini label {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-search-mini label span:not(.visually-hidden) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .site-search-mini input[type="search"] {
    min-height: 40px;
  }
}

@media (max-width: 520px) {
  .topbar {
    padding: 9px 14px 7px;
  }

  .topbar > a small {
    display: none;
  }

  .topbar > a::before {
    grid-row: 1;
  }

  .topbar nav a {
    min-height: 31px;
    padding: 5px 8px;
    font-size: 0.83rem;
  }

  .site-orientation {
    padding: 7px 14px 9px;
    font-size: 0.84rem;
  }
}

@media (max-width: 760px) {
  .consumer-article {
    gap: 22px;
  }

  .consumer-hero {
    gap: 18px;
    margin-bottom: 0;
    padding-bottom: 18px;
  }

  .consumer-scorecard {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .consumer-scorecard div {
    display: grid;
    gap: 4px;
    align-content: start;
    min-height: 0;
    padding: 10px 8px;
  }

  .consumer-scorecard strong {
    overflow-wrap: anywhere;
    font-size: 1.12rem;
    line-height: 1.05;
  }

  .consumer-scorecard span {
    font-size: 0.72rem;
    line-height: 1.22;
  }

  .landing-explainer {
    gap: 8px;
    margin-bottom: 24px;
  }

  .landing-explainer article {
    padding: 12px 14px;
  }

  .landing-explainer span {
    margin-bottom: 4px;
    font-size: 0.68rem;
  }

  .landing-explainer p {
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .guide-snapshot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .guide-snapshot-card {
    border-top-width: 3px;
    padding: 11px;
  }

  .guide-snapshot-card span {
    font-size: 0.68rem;
  }

  .guide-snapshot-card strong {
    margin-top: 5px;
    font-size: 1.24rem;
  }

  .guide-snapshot-card p {
    margin-top: 6px;
    font-size: 0.86rem;
    line-height: 1.34;
  }
}

/* Scientific names often include long slash-separated labels; keep them inside narrow readers. */
.reader-article,
.reader-collection,
.reader-hero,
.reader-layout,
.reader-main,
.reader-section,
.reader-research-area,
.reader-source-card {
  min-width: 0;
}

.reader-article h1,
.reader-article h2,
.reader-article h3,
.reader-article h4,
.reader-article p,
.reader-article li,
.reader-article a,
.reader-collection h1,
.reader-collection h2,
.reader-collection h3,
.reader-collection p,
.reader-collection a {
  overflow-wrap: anywhere;
}

/* Brand system: a compact research-library wordmark with a deep evergreen anchor. */
.topbar {
  border-bottom-color: rgba(7, 61, 45, 0.16);
  background: rgba(255, 255, 253, 0.97);
  box-shadow: 0 10px 28px rgba(7, 61, 45, 0.075);
}

.topbar > .site-wordmark {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: max-content;
  color: var(--green-ink);
}

.topbar > .site-wordmark::before {
  display: none;
}

.site-wordmark-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #073d2d;
  border-radius: 8px;
  background: #073d2d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 8px 18px rgba(7, 61, 45, 0.14);
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.site-wordmark-copy {
  display: grid;
  gap: 1px;
  align-content: center;
}

.topbar > .site-wordmark .site-wordmark-name {
  color: var(--green-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.topbar > .site-wordmark small {
  display: block;
  color: #477060;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.05;
  text-transform: uppercase;
}

.site-header-search input[type="search"] {
  border-color: #a9c2b3;
  background: #fcfffd;
  box-shadow: inset 0 1px 0 rgba(7, 61, 45, 0.035);
}

.site-header-search input[type="search"]:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(14, 91, 67, 0.16);
}

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .topbar > .site-wordmark {
    width: auto;
  }

  .site-header-search {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 520px) {
  .topbar > .site-wordmark {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
  }

  .site-wordmark-mark {
    width: 34px;
    height: 34px;
    font-size: 0.76rem;
  }

  .topbar > .site-wordmark .site-wordmark-name {
    font-size: 1.08rem;
  }
}

/* Public header: a compact search tool that yields space while readers move down-page. */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 680px) minmax(220px, 1fr);
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 3vw, 46px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: #073d2d;
  background: rgba(7, 61, 45, 0.97);
  box-shadow: 0 10px 28px rgba(7, 61, 45, 0.18);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, box-shadow 180ms ease;
  forced-color-adjust: none;
}

.topbar.is-hidden {
  transform: translateY(-112%);
  box-shadow: none;
}

.topbar > .site-wordmark {
  grid-column: 1;
  justify-self: start;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 11px;
  color: #ffffff;
}

.site-wordmark-mark {
  width: 42px;
  height: 42px;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  font-size: 0.9rem;
}

.topbar > .site-wordmark .site-wordmark-name,
.topbar > .site-wordmark small {
  color: #ffffff !important;
}

.topbar > .site-wordmark small {
  opacity: 0.72;
}

.site-header-search {
  grid-column: 2;
  width: 100%;
  max-width: none;
}

.site-header-search input[type="search"] {
  min-height: 48px;
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  background: #ffffff;
  padding: 12px 16px;
  color: var(--ink-strong);
  font-size: 0.96rem;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(3, 35, 25, 0.16);
}

.site-header-search input[type="search"]::placeholder {
  color: #607068;
  opacity: 1;
}

.site-header-search input[type="search"]:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(213, 241, 223, 0.52), 0 6px 14px rgba(3, 35, 25, 0.18);
}

.site-search-results {
  border-color: rgba(7, 61, 45, 0.28);
}

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
    min-height: 0;
    padding: 10px 16px 12px;
  }

  .topbar > .site-wordmark,
  .site-header-search {
    grid-column: 1;
  }

  .topbar > .site-wordmark {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 9px;
  }

  .site-wordmark-mark {
    width: 36px;
    height: 36px;
    font-size: 0.78rem;
  }

  .topbar > .site-wordmark .site-wordmark-name {
    font-size: 1.1rem;
  }

  .site-header-search input[type="search"] {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar {
    transition: none;
  }
}

/* Final public chrome pass: preserve the brand at every viewport and give the
   home search experience a stable visual center. */
body.reader-home-page .topbar,
body.reader-page .topbar,
body.reader-collection-page .topbar,
body.reader-dictionary-page .topbar,
body.reader-dictionary-term-page .topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  justify-content: normal;
  border-bottom-color: rgba(255, 255, 255, 0.18);
  background: rgba(7, 61, 45, 0.97);
  box-shadow: 0 10px 28px rgba(7, 61, 45, 0.18);
  backdrop-filter: blur(14px);
}

body.reader-home-page .topbar > .site-wordmark,
body.reader-page .topbar > .site-wordmark,
body.reader-collection-page .topbar > .site-wordmark,
body.reader-dictionary-page .topbar > .site-wordmark,
body.reader-dictionary-term-page .topbar > .site-wordmark {
  display: flex;
  grid-column: 1;
  gap: 11px;
  align-items: center;
  align-self: center;
  height: 42px;
  min-width: 0;
  color: #ffffff;
}

body.reader-home-page .site-wordmark-mark,
body.reader-page .site-wordmark-mark,
body.reader-collection-page .site-wordmark-mark,
body.reader-dictionary-page .site-wordmark-mark,
body.reader-dictionary-term-page .site-wordmark-mark {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

body.reader-home-page .site-wordmark-copy,
body.reader-page .site-wordmark-copy,
body.reader-collection-page .site-wordmark-copy,
body.reader-dictionary-page .site-wordmark-copy,
body.reader-dictionary-term-page .site-wordmark-copy {
  display: grid;
  grid-template-columns: none;
  gap: 2px;
  align-content: center;
  min-width: 0;
}

body.reader-home-page .topbar > .site-wordmark .site-wordmark-name,
body.reader-page .topbar > .site-wordmark .site-wordmark-name,
body.reader-collection-page .topbar > .site-wordmark .site-wordmark-name,
body.reader-dictionary-page .topbar > .site-wordmark .site-wordmark-name,
body.reader-dictionary-term-page .topbar > .site-wordmark .site-wordmark-name,
body.reader-home-page .topbar > .site-wordmark small,
body.reader-page .topbar > .site-wordmark small,
body.reader-collection-page .topbar > .site-wordmark small,
body.reader-dictionary-page .topbar > .site-wordmark small,
body.reader-dictionary-term-page .topbar > .site-wordmark small {
  color: #ffffff;
}

body.reader-home-page .topbar > .site-wordmark small,
body.reader-page .topbar > .site-wordmark small,
body.reader-collection-page .topbar > .site-wordmark small,
body.reader-dictionary-page .topbar > .site-wordmark small,
body.reader-dictionary-term-page .topbar > .site-wordmark small {
  opacity: 0.72;
}

body.reader-home-page .shell {
  max-width: 1280px;
  padding-top: 0;
}

body.reader-home-page .reader-home-hero {
  width: min(100%, 1080px);
  min-height: 0;
  margin-right: auto;
  margin-left: auto;
  padding-top: clamp(54px, 7vw, 92px);
  padding-bottom: clamp(62px, 7vw, 92px);
}

body.reader-home-page .reader-home-hero-copy,
body.reader-home-page .reader-home-search,
body.reader-home-page .reader-home-promises {
  margin-right: auto;
  margin-left: auto;
}

/* Footer: an editorial index, not a thin legal afterthought. */
.site-footer,
body.reader-home-page .site-footer,
body.reader-page .site-footer,
body.reader-collection-page .site-footer,
body.reader-dictionary-page .site-footer,
body.reader-dictionary-term-page .site-footer {
  display: block;
  width: 100%;
  margin-top: 0;
  border-top: 0;
  background: #073d2d;
  color: #d9e8df;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(42px, 7vw, 112px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 62px clamp(24px, 4vw, 52px) 48px;
}

.site-footer-brand {
  max-width: 370px;
}

.site-footer-wordmark {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}

.site-footer-mark {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-footer-wordmark > span:last-child {
  display: grid;
  gap: 2px;
}

.site-footer-wordmark strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}

.site-footer-wordmark small,
.site-footer-note {
  color: #a9cdb8;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer-brand > p {
  margin: 24px 0 16px;
  color: #d7e6dc;
  font-size: 1rem;
  line-height: 1.58;
}

.site-footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.site-footer-links div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer-links h2 {
  margin: 1px 0 5px;
  color: #a9cdb8;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer-links a,
.site-footer-bottom a {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible,
.site-footer-bottom a:hover,
.site-footer-bottom a:focus-visible {
  color: #b7e4c7;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer-bottom {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  padding: 18px clamp(24px, 4vw, 52px) 22px;
  color: #a9cdb8;
  font-size: 0.78rem;
}

.site-footer-bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer-bottom a {
  color: #d7e6dc;
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .site-footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 26px;
  }
}

@media (max-width: 760px) {
  body.reader-home-page .topbar,
  body.reader-page .topbar,
  body.reader-collection-page .topbar,
  body.reader-dictionary-page .topbar,
  body.reader-dictionary-term-page .topbar {
    min-height: 0;
  }

  body.reader-home-page .topbar > .site-wordmark,
  body.reader-page .topbar > .site-wordmark,
  body.reader-collection-page .topbar > .site-wordmark,
  body.reader-dictionary-page .topbar > .site-wordmark,
  body.reader-dictionary-term-page .topbar > .site-wordmark {
    height: 36px;
  }

  body.reader-home-page .site-wordmark-mark,
  body.reader-page .site-wordmark-mark,
  body.reader-collection-page .site-wordmark-mark,
  body.reader-dictionary-page .site-wordmark-mark,
  body.reader-dictionary-term-page .site-wordmark-mark {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }

  .site-footer-inner {
    padding-top: 46px;
  }

  .site-footer-bottom {
    display: grid;
    justify-content: start;
  }
}

@media (max-width: 480px) {
  .site-footer-links {
    grid-template-columns: 1fr;
  }
}

/* Answer-first front door: help a first-time visitor identify their question before asking them to browse a taxonomy. */
.reader-home-start-here {
  padding-top: 66px;
}

.reader-home-intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reader-home-intent-grid article {
  min-height: 292px;
  border-top: 4px solid #287453;
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(30, 54, 41, 0.08);
}

.reader-home-intent-grid article:nth-child(2) {
  border-top-color: #3e6f8e;
}

.reader-home-intent-grid article:nth-child(3) {
  border-top-color: #ad6657;
}

.reader-home-intent-number {
  margin: 0 0 22px;
  color: #456759;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.reader-home-intent-grid h3 {
  margin: 0;
  color: #14201a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.1;
}

.reader-home-intent-grid > article > p:not(.reader-home-intent-number) {
  margin: 14px 0 22px;
  color: #506057;
  line-height: 1.58;
}

.reader-home-intent-grid article > div {
  display: grid;
  gap: 9px;
}

.reader-home-intent-grid article a {
  width: fit-content;
  color: #07533d;
  font-size: 0.91rem;
  font-weight: 800;
  text-decoration-color: rgba(7, 83, 61, 0.35);
  text-underline-offset: 4px;
}

.reader-home-intent-grid article a:hover,
.reader-home-intent-grid article a:focus-visible {
  color: #143d2d;
  text-decoration-thickness: 2px;
}

.reader-home-how-it-works {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 82px max(calc((100vw - 1280px) / 2), 24px);
  background: #e6efea;
}

.reader-home-how-it-works .reader-home-heading {
  max-width: 560px;
  margin: 0;
}

.reader-home-how-it-works .reader-home-heading > p:last-child {
  max-width: 510px;
  margin: 18px 0 0;
  color: #526259;
  font-size: 1.02rem;
  line-height: 1.62;
}

.reader-home-how-it-works ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reader-home-how-it-works li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid #bfd0c6;
}

.reader-home-how-it-works li:last-child {
  border-bottom: 1px solid #bfd0c6;
}

.reader-home-how-it-works li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #759887;
  border-radius: 50%;
  color: #07533d;
  font-size: 0.86rem;
  font-weight: 900;
}

.reader-home-how-it-works strong,
.reader-home-how-it-works p {
  display: block;
}

.reader-home-how-it-works strong {
  color: #173327;
  font-size: 1.03rem;
}

.reader-home-how-it-works li p {
  margin: 5px 0 0;
  color: #5a6a61;
  line-height: 1.5;
}

/* Give every guide a usable fork immediately after the conclusion. */
.reader-next-steps {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: start;
  margin: 34px 0 64px;
  border-top: 1px solid #bfd0c6;
  border-bottom: 1px solid #bfd0c6;
  padding: 30px 0;
}

.reader-next-steps h2 {
  margin: 5px 0 10px;
  color: #173327;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.1;
}

.reader-next-steps > div:first-child > p:last-child {
  max-width: 390px;
  margin: 0;
  color: #56665d;
  font-size: 0.94rem;
  line-height: 1.58;
}

.reader-next-steps-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.reader-next-steps-links a {
  min-height: 106px;
  border: 1px solid #d0ddd5;
  border-radius: 6px;
  background: #f7faf8;
  padding: 16px;
  color: #173327;
  text-decoration: none;
  transition: border-color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.reader-next-steps-links a:hover,
.reader-next-steps-links a:focus-visible {
  border-color: #6d9a82;
  background: #edf5ef;
  transform: translateY(-2px);
}

.reader-next-steps-links strong,
.reader-next-steps-links span {
  display: block;
}

.reader-next-steps-links strong {
  color: #07533d;
  font-size: 0.91rem;
}

.reader-next-steps-links span {
  margin-top: 6px;
  color: #5e6e64;
  font-size: 0.84rem;
  line-height: 1.42;
}

@media (max-width: 900px) {
  .reader-home-intent-grid,
  .reader-next-steps-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reader-home-intent-grid article:last-child {
    grid-column: span 2;
  }

  .reader-home-how-it-works,
  .reader-next-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .reader-home-start-here {
    padding-top: 48px;
  }

  .reader-home-intent-grid,
  .reader-next-steps-links {
    grid-template-columns: 1fr;
  }

  .reader-home-intent-grid article,
  .reader-home-intent-grid article:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 24px;
  }

  .reader-home-how-it-works {
    gap: 34px;
    margin-right: -16px;
    margin-left: -16px;
    padding: 58px 16px;
  }

  .reader-next-steps {
    margin-bottom: 48px;
    padding: 26px 0;
  }
}

/* Visual cohesion: a tighter shared rhythm, stronger microcopy contrast, and aligned entry-point surfaces. */
body.reader-home-page .reader-home-hero {
  gap: 24px;
  padding-top: clamp(44px, 5vw, 72px);
  padding-bottom: clamp(52px, 5vw, 72px);
}

body.reader-home-page .reader-home-hero h1 {
  margin-top: 0;
  margin-bottom: 18px;
}

.reader-home-start-here {
  padding-top: clamp(50px, 4vw, 60px);
}

.reader-search-page .reader-collection-hero {
  padding-bottom: 30px;
}

.reader-search-page .reader-collection-hero + .reader-collection-section {
  padding-top: 32px;
  padding-bottom: 56px;
}

.reader-evidence-lanes span {
  color: #56665d;
}

.reader-home-paths span {
  color: #5f6f66;
}

.reader-home-how-it-works {
  width: auto;
  margin-right: 0;
  margin-left: 0;
  padding: clamp(58px, 5vw, 72px) clamp(20px, 3vw, 42px);
  gap: clamp(34px, 6vw, 88px);
  border-radius: 8px;
}

.reader-not-found-body .not-found-page {
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  min-height: 0;
  padding-top: clamp(44px, 6vw, 72px);
  padding-bottom: clamp(56px, 7vw, 88px);
}

.reader-not-found-body .not-found-copy h1 {
  max-width: 11ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 5.2vw, 4.9rem);
  font-weight: 500;
  letter-spacing: 0;
}

.reader-not-found-body .not-found-copy p {
  color: #4b5b52;
  font-size: 1.08rem;
}

.reader-not-found-body .not-found-search {
  border-color: #c6d4cc;
  box-shadow: 0 18px 46px rgba(24, 56, 43, 0.09);
}

@media (max-width: 640px) {
  .reader-home-search .home-query-chips {
    gap: 6px;
  }

  .reader-home-search .home-query-chips button {
    min-height: 38px;
    padding: 6px 9px;
    font-size: 0.84rem;
  }

  .reader-home-how-it-works {
    gap: 30px;
    margin-right: 0;
    margin-left: 0;
    padding: 48px 20px;
  }

  .reader-not-found-body .not-found-page {
    gap: 32px;
    padding-top: 32px;
    padding-bottom: 56px;
  }
}
