:root {
  --page: #f7f9f9;
  --surface: #ffffff;
  --surface-subtle: #f2f4f4;
  --text: #202829;
  --text-strong: #1f2526;
  --muted: #5a6061;
  --faint: #9aa2a3;
  --line: #e4e9ea;
  --line-strong: #dde4e5;
  --primary: #2f7a4b;
  --primary-dark: #24603b;
  --primary-soft: #e8f3ec;
  --success: #2f7a4b;
  --success-soft: #e8f3ec;
  --warning: #8a5a1a;
  --warning-soft: #fdf1e3;
  --danger: #9b3328;
  --danger-soft: #fbe9e7;
  --info: #47657a;
  --info-soft: #eef3f8;
  --radius: 8px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(32, 40, 41, 0.08);
  --focus-ring: rgba(47, 122, 75, 0.25);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--page);
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

a {
  color: var(--primary-dark);
}

a:hover {
  color: var(--primary);
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

h1,
h2,
h3,
p,
dl,
dd,
ol,
ul {
  margin-top: 0;
}

h1,
h2,
h3,
strong,
dd,
.price-value {
  font-variant-numeric: tabular-nums;
}

h1 {
  margin-bottom: 7px;
  color: var(--text-strong);
  font-size: 28px;
  line-height: 1.2;
}

h2 {
  margin-bottom: 0;
  color: var(--text-strong);
  font-size: 19px;
  line-height: 1.35;
}

h3 {
  margin-bottom: 0;
  color: var(--text-strong);
  font-size: 15px;
}

img {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--text-strong);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
}

.header-inner,
.banner-inner,
.footer-inner {
  width: min(1480px, 100%);
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.header-inner {
  display: grid;
  min-height: 58px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--text-strong);
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.2;
  white-space: nowrap;
}

.brand small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.site-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 5px;
}

.site-nav a,
.locale-switch {
  min-height: 44px;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.locale-switch:hover {
  background: var(--surface-subtle);
  color: var(--text-strong);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
}

.locale-switch {
  display: inline-flex;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
}

.snapshot-banner {
  min-height: 34px;
  border-bottom: 1px solid #cfe4d7;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 12px;
}

.banner-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 15px;
}

.banner-label {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  color: var(--primary-dark);
  font-weight: 750;
  white-space: nowrap;
}

.banner-label .icon {
  width: 15px;
  height: 15px;
}

.banner-note {
  margin-left: auto;
  color: var(--muted);
}

.catalog-shell {
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: 18px 24px 42px;
}

.catalog-intro {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 30px;
  padding-bottom: 15px;
}

.catalog-intro h1 {
  margin-bottom: 4px;
  font-size: 26px;
}

.catalog-intro p:last-child {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.eyebrow {
  margin-bottom: 4px;
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.catalog-stats {
  display: grid;
  min-width: 340px;
  margin-bottom: 0;
  grid-template-columns: repeat(3, minmax(92px, 1fr));
  gap: 12px;
}

.catalog-stats div {
  padding-left: 11px;
  border-left: 2px solid var(--line);
}

.catalog-stats dt {
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}

.catalog-stats dd {
  margin-bottom: 0;
  color: var(--text-strong);
  font-size: 17px;
  font-weight: 800;
}

.catalog-controls {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr) auto;
  align-items: end;
  gap: 16px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.catalog-search > span:first-child,
.catalog-mode-controls label > span,
.search-label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.search-input {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--surface-subtle);
  color: var(--faint);
}

.search-input:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

.search-input input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.search-input input::placeholder {
  color: var(--faint);
}

.search-input button {
  min-height: 32px;
  padding: 5px 7px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--primary-dark);
  font-size: 11px;
}

.platform-filters {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.platform-filters button {
  min-height: 42px;
  padding: 8px 11px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.platform-filters button:hover {
  background: var(--surface-subtle);
}

.platform-filters button[aria-pressed="true"] {
  border-color: #bcdcc8;
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.catalog-mode-controls select {
  min-height: 42px;
  max-width: 205px;
  padding: 7px 30px 7px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  font-size: 12px;
}

.results-line {
  min-height: 30px;
  padding: 8px 2px 5px;
  color: var(--muted);
  font-size: 12px;
}

.results-line strong {
  color: var(--text-strong);
}

.table-frame {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

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

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

.catalog-table th,
.catalog-table td,
.offer-table th,
.offer-table td,
.guide-table th,
.guide-table td {
  text-align: left;
  vertical-align: middle;
}

.catalog-table thead,
.offer-table thead,
.guide-table thead {
  background: var(--surface-subtle);
}

.catalog-table th,
.offer-table th,
.guide-table th {
  padding: 9px 10px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
}

.catalog-table td {
  min-width: 0;
  height: 70px;
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.catalog-table tbody tr:last-child td,
.offer-table tbody tr:last-child td,
.guide-table tbody tr:last-child td,
.guide-table tbody tr:last-child th {
  border-bottom: 0;
}

.catalog-table tbody tr:hover {
  background: #f7f9f8;
}

.catalog-table th:nth-child(1) { width: 23%; }
.catalog-table th:nth-child(2) { width: 11%; }
.catalog-table th:nth-child(3) { width: 13%; }
.catalog-table th:nth-child(4) { width: 19%; }
.catalog-table th:nth-child(5) { width: 15%; }
.catalog-table th:nth-child(6) { width: 9%; }
.catalog-table th:nth-child(7) { width: 10%; }

.catalog-table.without-platform th:nth-child(1) { width: 28%; }
.catalog-table.without-platform th:nth-child(2) { width: 15%; }
.catalog-table.without-platform th:nth-child(3) { width: 21%; }
.catalog-table.without-platform th:nth-child(4) { width: 17%; }
.catalog-table.without-platform th:nth-child(5) { width: 9%; }
.catalog-table.without-platform th:nth-child(6) { width: 10%; }

.product-cell {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.product-cell img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
  object-fit: contain;
}

.product-cell > div {
  min-width: 0;
}

.product-name {
  display: block;
  color: var(--text-strong);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.product-cell span,
.cell-subtext {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.stock-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.stock-cell .cell-subtext {
  margin-top: 0;
}

.risk-flag {
  display: inline-block;
  padding: 3px 7px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.risk-flag.is-negative {
  background: var(--danger-soft);
  color: var(--danger);
}

.risk-flag.is-caution {
  background: var(--warning-soft);
  color: var(--warning);
}

/* The source reserves this column and leaves it blank; we state the absence instead, so a
   blank cell is never mistaken for missing data. */
.risk-none {
  color: var(--faint);
  font-size: 10px;
  line-height: 1.35;
}

.offer-report {
  display: inline-flex;
  min-width: 30px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--muted);
}

.offer-report:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.offer-report .icon {
  width: 13px;
  height: 13px;
}

.guide-callout {
  margin: 18px 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--primary-soft);
}

.guide-callout h2 {
  margin: 2px 0 6px;
  font-size: 16px;
}

.guide-callout > p:not(.eyebrow) {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.offer-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin: 0 0 10px;
  font-size: 11px;
}

.offer-stats-main {
  color: var(--text-strong);
  font-weight: 650;
}

.offer-stats-scope {
  color: var(--muted);
}

.price-value {
  display: block;
  color: var(--text-strong);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.2;
  white-space: nowrap;
}

.status-label {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
}

.status-short,
.brief-short {
  display: none;
}

.status-label.is-caution { color: var(--warning); }
.status-label.is-negative,
.status-label.is-unknown { color: var(--danger); }

.status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
}

.source-domain {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 4px;
  color: var(--text-strong);
  font-size: 11px;
  font-weight: 750;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.source-domain .icon {
  width: 13px;
  height: 13px;
}

.source-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cell-time time,
.offer-table time {
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}

.brief-link,
.source-action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text-strong);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.brief-link:hover,
.source-action:hover {
  border-color: var(--line-strong);
  background: var(--surface-subtle);
}

.brief-link .icon,
.source-action .icon {
  width: 14px;
  height: 14px;
}

.catalog-empty {
  padding: 32px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  text-align: center;
}

.data-boundary {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding: 13px 15px;
  border-left: 3px solid var(--warning);
  background: var(--warning-soft);
  color: #6e4817;
}

.data-boundary > .icon {
  margin-top: 2px;
}

.data-boundary strong {
  color: #51320d;
  font-size: 12px;
}

.data-boundary p {
  max-width: 1100px;
  margin: 3px 0 0;
  font-size: 11px;
}

.related-guides {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1.4fr);
  gap: 28px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.guide-links,
.related-links {
  display: grid;
  gap: 8px;
}

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

.guide-links a,
.related-links a {
  display: grid;
  min-height: 48px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--text-strong);
  text-decoration: none;
}

.guide-links a:hover,
.related-links a:hover {
  background: var(--surface);
}

.content-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 20px 24px 48px;
}

.breadcrumbs {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 11px;
}

.breadcrumbs ol {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb-separator {
  color: var(--faint);
}

.product-heading {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.7fr);
  align-items: start;
  gap: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.product-heading-copy {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 14px;
}

.product-heading-copy > img {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  object-fit: contain;
}

.product-heading-copy p:last-child,
.page-heading p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.product-snapshot-facts {
  display: grid;
  margin-bottom: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 14px;
}

.product-snapshot-facts div {
  min-width: 0;
  padding-left: 11px;
  border-left: 2px solid var(--line);
}

.product-snapshot-facts dt {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 10px;
}

.product-snapshot-facts dd {
  margin-bottom: 0;
  color: var(--text-strong);
  font-size: 12px;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.offer-section,
.decision-section,
.evidence-section,
.checklist-section,
.related-section,
.platform-checks,
.platform-products,
.method-sections {
  padding-top: 24px;
}

.section-heading {
  display: flex;
  min-width: 0;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 11px;
}

.section-heading > p {
  max-width: 570px;
  margin-bottom: 1px;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

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

.offer-table th:nth-child(1) { width: 11%; }
.offer-table th:nth-child(2) { width: 17%; }
.offer-table th:nth-child(3) { width: 24%; }
.offer-table th:nth-child(4) { width: 10%; }
.offer-table th:nth-child(5) { width: 10%; }
.offer-table th:nth-child(6) { width: 11%; }
.offer-table th:nth-child(7) { width: 11%; }
.offer-table th:nth-child(8) { width: 6%; }

.offer-table td {
  padding: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.offer-table td > strong {
  color: var(--text-strong);
  font-size: 11px;
}

.currency-note {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 10px;
}

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

.decision-column {
  padding: 18px 24px 16px 0;
  border-top: 3px solid var(--success);
  border-bottom: 1px solid var(--line);
}

.decision-column.is-warning {
  padding-right: 0;
  padding-left: 24px;
  border-top-color: var(--warning);
  border-left: 1px solid var(--line);
}

.decision-column ul,
.platform-checks ol,
.method-section ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.decision-column li,
.platform-checks li,
.method-section li {
  margin: 6px 0;
  color: var(--muted);
}

.evidence-section,
.checklist-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.evidence-list {
  margin-bottom: 0;
}

.evidence-list div {
  display: grid;
  grid-template-columns: minmax(110px, 0.28fr) minmax(0, 0.72fr);
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.evidence-list div:last-child {
  border-bottom: 0;
}

.evidence-list dt {
  color: var(--text-strong);
  font-size: 11px;
  font-weight: 800;
}

.evidence-list dd {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.checklist-section ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: checklist;
}

.checklist-section li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  counter-increment: checklist;
}

.checklist-section li::before {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--primary-dark);
  content: counter(checklist);
  font-size: 10px;
  font-weight: 800;
}

.related-section h2 {
  margin-bottom: 8px;
}

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

.related-links a {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.related-links img {
  width: 28px;
  height: 28px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.page-heading {
  max-width: 900px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.platform-checks {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 26px;
}

.platform-checks ol {
  display: grid;
  margin-top: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  list-style-position: inside;
}

.platform-checks li {
  margin: 0;
  padding: 11px 13px;
  border-top: 2px solid var(--primary);
  border-bottom: 1px solid var(--line);
  background: var(--surface-subtle);
}

.guide-shell {
  display: block;
}

.guide-table-frame {
  margin-top: 24px;
}

.guide-table th,
.guide-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  vertical-align: top;
}

.guide-table tbody th {
  color: var(--text-strong);
  font-weight: 800;
}

.guide-conclusion {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 14px;
  padding: 13px 15px;
  border-left: 3px solid var(--primary);
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.snapshot-ledger {
  display: grid;
  margin: 18px 0 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.snapshot-ledger div {
  min-width: 0;
  padding: 13px 15px;
  border-right: 1px solid var(--line);
}

.snapshot-ledger div:last-child {
  border-right: 0;
}

.snapshot-ledger dt {
  color: var(--muted);
  font-size: 10px;
}

.snapshot-ledger dd {
  margin: 3px 0 0;
  color: var(--text-strong);
  font-size: 11px;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.method-section {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.method-number {
  color: var(--primary);
  font-size: 22px;
  font-weight: 850;
}

.method-section ul {
  margin-bottom: 0;
}

.gateway-shell {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 48px 24px 56px;
}

.gateway-intro {
  max-width: 700px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.gateway-intro p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.gateway-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 20px;
  background: var(--line);
  border: 1px solid var(--line);
}

.gateway-options a {
  display: grid;
  min-height: 112px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  gap: 4px 12px;
  padding: 20px;
  background: var(--surface);
  color: var(--text-strong);
  text-decoration: none;
}

.gateway-options a:hover {
  background: var(--surface-subtle);
}

.gateway-options span {
  grid-column: 1;
  color: var(--muted);
  font-size: 12px;
}

.gateway-options strong {
  grid-column: 1;
  font-size: 17px;
}

.gateway-options .icon {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}

.gateway-preview {
  margin-top: 28px;
}

.gateway-preview h2 {
  margin-bottom: 9px;
  font-size: 15px;
}

.gateway-updated {
  margin: -5px 0 10px;
  color: var(--muted);
  font-size: 11px;
}

.gateway-preview ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  list-style: none;
}

.gateway-preview li {
  display: grid;
  min-width: 0;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
}

.gateway-preview img {
  width: 30px;
  height: 30px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.gateway-preview span {
  min-width: 0;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gateway-preview strong {
  font-size: 12px;
  white-space: nowrap;
}

.not-found {
  padding-top: 80px;
  text-align: center;
}

.not-found > .brief-link {
  margin: 14px auto;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: 11px;
}

.footer-inner {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner a {
  color: var(--muted);
}

@media (max-width: 1120px) {
  .catalog-table.has-platform th:nth-child(2),
  .catalog-table.has-platform .cell-platform {
    display: none;
  }

  .catalog-table.has-platform th:nth-child(1) { width: 27%; }
  .catalog-table.has-platform th:nth-child(3) { width: 14%; }
  .catalog-table.has-platform th:nth-child(4) { width: 22%; }
  .catalog-table.has-platform th:nth-child(5) { width: 17%; }
  .catalog-table.has-platform th:nth-child(6) { width: 10%; }
  .catalog-table.has-platform th:nth-child(7) { width: 10%; }

  .catalog-controls {
    grid-template-columns: minmax(250px, 310px) minmax(0, 1fr);
  }

  .catalog-mode-controls {
    display: none;
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 25px;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 14px;
    padding: 7px 14px 0;
  }

  /* The nav scrolls instead of wrapping so the header keeps one row. The scrollbar is
     hidden, so the right-edge fade is the only cue that more links follow. */
  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    overflow-x: auto;
    border-top: 1px solid var(--line);
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 24px), transparent);
    mask-image: linear-gradient(to right, #000 calc(100% - 24px), transparent);
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    min-height: 44px;
    padding: 8px 9px;
    font-size: 12px;
  }

  .banner-inner {
    padding-right: 14px;
    padding-left: 14px;
  }

  .banner-note {
    display: none;
  }

  .catalog-shell,
  .content-shell {
    padding-right: 14px;
    padding-left: 14px;
  }

  .catalog-intro {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 10px;
  }

  .catalog-stats {
    min-width: 0;
  }

  .catalog-controls {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px;
  }

  .catalog-search {
    grid-column: 1 / -1;
  }

  .platform-filters {
    grid-column: 1;
    padding-bottom: 2px;
  }

  .catalog-mode-controls {
    display: block;
    grid-column: 2;
  }

  .catalog-mode-controls label > span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .catalog-mode-controls select {
    width: 126px;
    min-height: 44px;
    padding-right: 24px;
  }

  .table-frame {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .catalog-table,
  .catalog-table tbody,
  .catalog-table tr,
  .catalog-table td {
    display: block;
    width: 100%;
  }

  .catalog-table thead {
    display: none;
  }

  .catalog-table tbody {
    display: grid;
    gap: 6px;
  }

  .catalog-table tr {
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 5px 8px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
  }

  .catalog-table td {
    min-width: 0;
    height: auto;
    padding: 0;
    border: 0;
  }

  .catalog-table td::before {
    display: block;
    margin-bottom: 1px;
    color: var(--muted);
    content: attr(data-label);
    font-size: 10px;
    font-weight: 700;
  }

  .catalog-table .cell-product {
    grid-column: 1 / -1;
  }

  .catalog-table .cell-product::before,
  .catalog-table .cell-platform {
    display: none;
  }

  .catalog-table .cell-price {
    grid-column: 1;
    grid-row: 2;
  }

  .catalog-table .cell-status {
    grid-column: 2 / -1;
    grid-row: 2;
    align-self: center;
    text-align: right;
  }

  .catalog-table .cell-status::before {
    text-align: right;
  }

  .catalog-table .cell-status > .cell-subtext,
  .source-title,
  .status-full,
  .brief-full {
    display: none;
  }

  .status-short,
  .brief-short {
    display: inline;
  }

  .catalog-table .cell-source,
  .catalog-table .cell-time,
  .catalog-table .cell-action {
    grid-row: 3;
    align-self: stretch;
    padding-top: 7px;
  }

  .catalog-table tr::after {
    grid-column: 1 / -1;
    grid-row: 3;
    align-self: start;
    border-top: 1px solid var(--line);
    content: "";
    pointer-events: none;
  }

  .catalog-table .cell-source::before,
  .catalog-table .cell-time::before,
  .catalog-table .cell-action::before {
    display: none;
  }

  .catalog-table .cell-source {
    grid-column: 1;
  }

  .catalog-table .cell-time {
    grid-column: 2;
    display: flex;
    align-items: center;
  }

  .catalog-table .cell-action {
    grid-column: 3;
  }

  .brief-link {
    min-height: 44px;
    min-width: 52px;
    padding: 6px 7px;
  }

  .product-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .offer-table,
  .offer-table tbody,
  .offer-table tr,
  .offer-table td {
    display: block;
    width: 100%;
  }

  .offer-table thead {
    display: none;
  }

  .offer-table tbody {
    display: grid;
    gap: 8px;
  }

  .offer-table tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
  }

  .offer-table td {
    padding: 0;
    border: 0;
  }

  .offer-table td::before {
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    content: attr(data-label);
    font-size: 10px;
    font-weight: 700;
  }

  /* Stacked order: channel, original name and risk take the full width; stock/price and
     action/feedback pair up. Column indexes follow the 8-column head. */
  .offer-table td:nth-child(2),
  .offer-table td:nth-child(3),
  .offer-table td:nth-child(6) {
    grid-column: 1 / -1;
  }

  .offer-table td:nth-child(8) {
    justify-self: end;
  }

  .offer-table td:nth-child(8)::before {
    display: none;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    max-width: none;
    margin-top: 6px;
    text-align: left;
  }

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

  .decision-column,
  .decision-column.is-warning {
    padding: 15px 0;
    border-left: 0;
  }

  .evidence-section,
  .checklist-section,
  .platform-checks,
  .related-guides {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .platform-checks ol,
  .related-links {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 600px) {
  body {
    font-size: 13px;
  }

  h1 {
    font-size: 23px;
  }

  .brand small {
    display: none;
  }

  .catalog-intro p:last-child {
    display: none;
  }

  .locale-switch {
    min-height: 44px;
  }

  .snapshot-banner,
  .banner-inner {
    min-height: 32px;
  }

  .banner-inner > span:nth-child(2) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .catalog-shell {
    padding-top: 13px;
  }

  .catalog-intro h1 {
    font-size: 23px;
  }

  .catalog-intro p:last-child {
    font-size: 12px;
    line-height: 1.4;
  }

  .catalog-stats {
    display: none;
  }

  .catalog-stats div {
    padding-left: 7px;
  }

  .catalog-stats dt {
    white-space: normal;
  }

  .catalog-stats dd {
    font-size: 15px;
  }

  .catalog-controls {
    padding: 7px 8px;
  }

  .catalog-search > span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .search-input {
    min-height: 44px;
  }

  .platform-filters button {
    min-height: 44px;
    padding-right: 9px;
    padding-left: 9px;
  }

  .results-line {
    min-height: 26px;
    padding: 5px 2px 3px;
  }

  .catalog-table tbody {
    gap: 4px;
  }

  .catalog-table tr {
    gap: 4px 8px;
    padding: 8px;
  }

  .catalog-table .cell-price::before,
  .catalog-table .cell-status::before {
    display: none;
  }

  .catalog-table .cell-status {
    max-width: 158px;
  }

  .status-label {
    justify-content: flex-end;
    font-size: 10px;
  }

  .product-heading-copy {
    gap: 10px;
  }

  .product-heading-copy > img {
    width: 46px;
    height: 46px;
    padding: 7px;
  }

  .product-snapshot-facts {
    grid-template-columns: 1fr;
  }

  .evidence-list div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

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

  .snapshot-ledger div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .snapshot-ledger div:last-child {
    border-bottom: 0;
  }

  .guide-table,
  .guide-table tbody,
  .guide-table tr,
  .guide-table th,
  .guide-table td {
    display: block;
    width: 100%;
  }

  .guide-table thead {
    display: none;
  }

  .guide-table tr {
    padding: 11px;
    border-bottom: 1px solid var(--line);
  }

  .guide-table th,
  .guide-table td {
    padding: 4px 0;
    border: 0;
  }

  .guide-table th::before,
  .guide-table td::before {
    display: block;
    color: var(--muted);
    content: attr(data-label);
    font-size: 10px;
    font-weight: 700;
  }

  .gateway-shell {
    padding: 34px 14px 46px;
  }

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

  .gateway-options a {
    min-height: 96px;
  }

  .gateway-preview ul {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: block;
    min-height: 0;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .footer-inner a {
    display: inline-block;
    margin-top: 6px;
  }
}

@media (max-width: 360px) {
  .header-inner,
  .banner-inner,
  .catalog-shell,
  .content-shell {
    padding-right: 10px;
    padding-left: 10px;
  }

  .locale-switch {
    padding-right: 8px;
    padding-left: 8px;
  }

  .locale-switch .icon {
    display: none;
  }

  .catalog-stats dt {
    font-size: 9px;
  }

  .catalog-intro p:last-child {
    display: none;
  }

  .product-cell span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .catalog-table tr {
    gap: 5px 6px;
    padding: 8px;
  }

  .catalog-table .cell-status {
    max-width: 142px;
  }

  .brief-link span {
    max-width: 80px;
  }

  .offer-table tr {
    grid-template-columns: 1fr;
  }

  .offer-table td {
    grid-column: 1 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ---------- Expanded route skeleton: shared primitives ---------- */

.filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.filter-label {
  margin-right: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.filter-group button {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.filter-group button:hover {
  border-color: var(--line-strong);
  background: var(--surface-subtle);
}

.filter-group button[aria-pressed="true"] {
  border-color: #bcdcc8;
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.placeholder-notice {
  display: flex;
  gap: 10px;
  margin: 16px 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--info);
  border-radius: var(--radius);
  background: var(--info-soft);
}

.placeholder-notice strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text-strong);
  font-size: 13px;
}

.placeholder-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.empty-state {
  margin: 12px 0;
  padding: 18px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-subtle);
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.cell-separator {
  margin: 0 5px;
  color: var(--faint);
}

/* ---------- Home ---------- */

.home-shell {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
  padding: 24px 0 48px;
}

.home-hero h1 {
  margin: 6px 0 10px;
  font-size: 30px;
  line-height: 1.25;
}

.home-lead {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.home-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}

.home-stats div {
  min-width: 130px;
  flex: 1 1 130px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.home-stats dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.home-stats dd {
  margin: 4px 0 0;
  color: var(--text-strong);
  font-size: 18px;
  font-weight: 700;
}

.home-intents,
.home-tools,
.home-trust,
.home-faq {
  margin-top: 36px;
}

.home-shell h2 {
  margin: 0 0 14px;
  font-size: 20px;
}

.intent-grid,
.trust-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.intent-card,
.trust-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.intent-card h3,
.trust-card h3 {
  margin: 0;
  font-size: 15px;
}

.intent-card p,
.trust-card p {
  flex: 1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.intent-card .brief-link {
  align-self: flex-start;
}

.tool-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.tool-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-decoration: none;
}

.tool-card:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
}

.tool-card strong {
  color: var(--text-strong);
  font-size: 14px;
}

.tool-card span {
  color: var(--muted);
  font-size: 12px;
}

.tool-card .icon {
  color: var(--primary);
}

.trust-footer {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 14px 0 0;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
}

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

.faq-item {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.faq-item h3 {
  margin: 0 0 6px;
  font-size: 14px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* ---------- Card grids: guides, models, sponsor slots ---------- */

.guides-grid-section,
.model-grid-section,
.slots-section,
.intake-section,
.support-ways-section {
  margin-top: 30px;
}

.guides-grid,
.slot-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.guide-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-decoration: none;
}

.guide-card:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
}

.guide-card strong {
  color: var(--text-strong);
  font-size: 14px;
}

.guide-card span {
  color: var(--muted);
  font-size: 12px;
}

.guide-card .icon {
  color: var(--primary);
}

.model-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.model-grid a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-decoration: none;
}

.model-grid a:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
}

.model-grid strong {
  color: var(--text-strong);
  font-size: 13px;
}

.model-grid span {
  color: var(--muted);
  font-size: 11px;
}

.slot-card {
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.slot-card h3 {
  margin: 0 0 6px;
  font-size: 14px;
}

.slot-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.described-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.described-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.described-list li:last-child {
  border-bottom: 0;
}

.described-list strong,
.described-list a {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
}

.described-list span {
  color: var(--muted);
  font-size: 12px;
}

/* ---------- Link-based intake (the CSP forbids form submission) ---------- */

.intake-template {
  margin: 12px 0;
  padding: 14px 16px;
  overflow-x: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-subtle);
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  line-height: 1.7;
  white-space: pre-wrap;
}

.intake-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.support-ways-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.support-ways-grid a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-decoration: none;
  font-weight: 600;
}

.support-ways-grid a:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
}

@media (max-width: 640px) {
  .home-hero h1 {
    font-size: 24px;
  }

  .home-shell h2 {
    font-size: 18px;
  }
}
