:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #5b6863;
  --line: #d7dedb;
  --paper: #ffffff;
  --canvas: #f4f7f6;
  --charcoal: #13201c;
  --green: #167451;
  --green-soft: #e4f3ec;
  --amber: #8b5a0a;
  --amber-soft: #fff1d3;
  --red: #a23535;
  --red-soft: #fae8e7;
  --blue: #235b89;
  --blue-soft: #e7f0f7;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--canvas);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
}

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #153f62;
}

:focus-visible {
  outline: 3px solid #6ee7b7;
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.shell--wide {
  width: min(1480px, calc(100% - 40px));
}

.masthead {
  border-bottom: 4px solid #59bd8c;
  background: var(--charcoal);
  color: var(--paper);
}

.site-nav {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  min-height: 64px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #31433c;
}

.site-nav a {
  color: #d7e5df;
  font-size: 0.83rem;
  font-weight: 680;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--paper);
}

.site-nav__brand {
  color: var(--paper) !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
}

.site-nav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.masthead__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(390px, 0.8fr);
  gap: 48px;
  align-items: end;
  padding: 52px 0 46px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #76d1a5;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.lede {
  max-width: 720px;
  margin-bottom: 0;
  color: #d2ded9;
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  margin-top: 26px;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 760;
  padding: 10px 16px;
  text-decoration: none;
}

.button--primary {
  background: #56c28d;
  color: #0d251c;
}

.button--primary:hover {
  background: #74d6a6;
  color: #081b14;
}

.button--secondary {
  border-color: #61776d;
  color: var(--paper);
}

.button--secondary:hover {
  border-color: #8aa096;
  color: var(--paper);
}

.button--secondary-dark {
  border-color: #739186;
  color: #dcf8ea;
}

.button--secondary-dark:hover {
  border-color: #a8c9bc;
  color: var(--paper);
}

.hero-actions__link {
  color: #a8e6c6;
  font-size: 0.82rem;
  font-weight: 680;
  padding: 10px 3px;
}

.hero-actions__link:hover {
  color: var(--paper);
}

.masthead__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #40514a;
  border-bottom: 1px solid #40514a;
}

.masthead__stats div {
  min-width: 0;
  padding: 20px 16px;
  border-right: 1px solid #40514a;
}

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

.masthead__stats div:nth-child(2n) {
  border-right: 0;
}

.masthead__stats div:nth-child(-n + 2) {
  border-bottom: 1px solid #40514a;
}

.masthead__stats strong,
.masthead__stats span {
  display: block;
}

.goal-band,
.pick-band,
.quick-start-band,
.trust-band {
  padding: 58px 0;
}

.section-heading--stacked {
  display: block;
  max-width: 760px;
}

.section-heading--stacked > p:last-child,
.section-lede {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
  white-space: normal;
}

.goal-band {
  background: var(--paper);
}

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

.goal-card {
  display: flex;
  min-height: 148px;
  flex-direction: column;
  gap: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
  color: var(--ink);
  padding: 22px;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.goal-card:hover {
  border-color: #79aa96;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(19, 32, 28, 0.08);
  transform: translateY(-2px);
}

.goal-card strong {
  font-size: 1rem;
}

.goal-card span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.pick-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #edf5f1;
}

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

.pick-card {
  display: flex;
  min-width: 0;
  min-height: 225px;
  flex-direction: column;
  border: 1px solid #cbdcd4;
  border-radius: 8px;
  background: var(--paper);
  padding: 22px;
}

.pick-card__label {
  margin-bottom: 20px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pick-card h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.pick-card > p:not(.pick-card__label) {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.pick-card__actions {
  display: flex;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.79rem;
  font-weight: 720;
}

.pick-card__signup {
  color: var(--green);
}

.masthead__stats strong {
  margin-bottom: 5px;
  font-size: 1.7rem;
}

.masthead__stats span {
  color: #aebdb7;
  font-size: 0.76rem;
  line-height: 1.35;
}

.filter-band {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 34px 0 30px;
}

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

.section-heading .eyebrow,
.method-band .eyebrow {
  color: var(--green);
}

.section-heading > p {
  margin: 0 0 3px;
  color: var(--muted);
  white-space: nowrap;
}

.filters {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) repeat(4, minmax(145px, 1fr));
  gap: 12px;
}

.filters label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.filters input,
.filters select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #b9c4c0;
  border-radius: 5px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 9px 11px;
}

.filters input:focus,
.filters select:focus {
  border-color: var(--green);
  outline: 3px solid rgba(22, 116, 81, 0.16);
}

.table-band {
  padding: 30px 0 42px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

table {
  width: 100%;
  min-width: 1280px;
  border-collapse: collapse;
  table-layout: fixed;
}

th,
td {
  overflow-wrap: anywhere;
  text-align: left;
  vertical-align: top;
}

th {
  padding: 14px 13px;
  border-bottom: 1px solid #aebbb6;
  background: #edf2f0;
  color: #44504c;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

td {
  padding: 18px 13px;
  border-bottom: 1px solid var(--line);
  color: #34403c;
  font-size: 0.82rem;
  line-height: 1.45;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr:hover {
  background: #fafcfb;
}

th:nth-child(1) { width: 15%; }
th:nth-child(2) { width: 10%; }
th:nth-child(3) { width: 7%; }
th:nth-child(4) { width: 7%; }
th:nth-child(5) { width: 20%; }
th:nth-child(6) { width: 16%; }
th:nth-child(7) { width: 17%; }
th:nth-child(8) { width: 8%; }

td strong,
td span,
td time {
  display: block;
}

.provider-meta,
.cell-detail,
.source-links {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.74rem;
}

.retirement {
  width: fit-content;
  margin-top: 9px;
  border-radius: 4px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 750;
  padding: 4px 6px;
}

.quota {
  color: var(--ink);
  font-size: 0.78rem;
}

.probe {
  width: fit-content;
  border-radius: 4px;
  background: var(--amber-soft);
  color: var(--amber);
  font-size: 0.7rem;
  font-weight: 750;
  padding: 4px 6px;
}

.probe--available {
  background: var(--green-soft);
  color: var(--green);
}

.probe--credential-rejected,
.probe--endpoint-error,
.probe--network-error {
  background: var(--red-soft);
  color: var(--red);
}

.probe--sample-rate-limited {
  background: var(--amber-soft);
  color: var(--amber);
}

.source-links a {
  display: inline;
}

.source-links span {
  display: inline;
}

.row-action,
.hosted-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: var(--green);
  color: var(--paper);
  font-size: 0.76rem;
  font-weight: 750;
  padding: 8px 11px;
  text-align: center;
  text-decoration: none;
}

.row-action:hover,
.hosted-cta:hover {
  background: #0f5b3f;
  color: var(--paper);
}

.closed-label {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
}

.empty-state {
  margin: 0;
  padding: 40px 20px;
  color: var(--muted);
  text-align: center;
}

.method-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 34px 0;
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(340px, 1.4fr) auto;
  gap: 38px;
  align-items: center;
}

.method-grid > p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.hosted-cta {
  min-height: 44px;
  white-space: nowrap;
}

footer {
  color: var(--muted);
  font-size: 0.8rem;
  padding: 24px 0 38px;
}

footer .shell {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

@media (max-width: 1050px) {
  .masthead__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .masthead__stats {
    max-width: 620px;
  }

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

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

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

  .method-grid {
    grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1.2fr);
  }

  .hosted-cta {
    grid-column: 2;
    width: fit-content;
  }
}

@media (max-width: 760px) {
  .shell,
  .shell--wide {
    width: min(100% - 28px, 680px);
  }

  .site-nav {
    width: min(100% - 28px, 680px);
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-nav__links {
    justify-content: flex-start;
    gap: 10px 18px;
  }

  .masthead__inner {
    padding: 38px 0 34px;
  }

  h1 {
    font-size: 2.5rem;
  }

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

  .masthead__stats div {
    padding: 16px 10px;
  }

  .masthead__stats strong {
    font-size: 1.35rem;
  }

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

  .goal-band,
  .pick-band,
  .quick-start-band,
  .trust-band {
    padding: 42px 0;
  }

  .goal-grid,
  .pick-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .goal-card,
  .pick-card {
    min-height: auto;
  }

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

  .search-control {
    grid-column: auto;
  }

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

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

  table {
    min-width: 0;
  }

  thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  tbody {
    display: grid;
    gap: 14px;
  }

  tbody tr {
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
    padding: 8px 14px;
  }

  td {
    display: grid;
    grid-template-columns: minmax(98px, 0.38fr) minmax(0, 1fr);
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e4e9e7;
  }

  td:last-child {
    border-bottom: 0;
  }

  td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .method-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hosted-cta {
    grid-column: auto;
  }

  footer .shell {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .masthead__stats {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .hero-actions__link {
    width: 100%;
  }

  .masthead__stats div {
    border-right: 0;
    border-bottom: 1px solid #40514a;
  }

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

  .section-heading {
    flex-direction: column;
    gap: 12px;
  }

  td {
    grid-template-columns: 1fr;
    gap: 7px;
  }
}

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

.masthead__actions {
  margin: 18px 0 0;
}

.masthead__actions a {
  color: #a8e6c6;
  font-size: 0.86rem;
  font-weight: 650;
}

.masthead__actions a:hover {
  color: var(--paper);
}

.verify-band {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 38px 0 34px;
}

.verify-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 38px;
  align-items: start;
}

.verify-form h2,
.verify-side h2 {
  margin: 0 0 18px;
  font-size: 1.25rem;
}

.verify-form label {
  display: flex;
  margin-bottom: 16px;
  flex-direction: column;
  gap: 7px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.verify-form input,
.verify-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #b9c4c0;
  border-radius: 5px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 9px 11px;
}

.verify-form input:focus,
.verify-form select:focus {
  border-color: var(--green);
  outline: 3px solid rgba(22, 116, 81, 0.16);
}

.verify-form button {
  min-height: 44px;
  border: 0;
  border-radius: 5px;
  background: var(--green);
  color: var(--paper);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 750;
  cursor: pointer;
  padding: 10px 18px;
}

.verify-form button:hover:not(:disabled) {
  background: #0f5b3f;
}

.verify-form button:disabled {
  background: #9aa8a3;
  cursor: not-allowed;
}

.verify-endpoint {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.verify-result {
  display: grid;
  margin: 18px 0 0;
  border: 1px solid var(--line);
  border-left: 4px solid var(--muted);
  border-radius: 5px;
  gap: 6px;
  background: var(--canvas);
  padding: 14px 16px;
  font-size: 0.85rem;
  line-height: 1.6;
}

.verify-result[data-tone="good"] {
  border-left-color: var(--green);
  background: var(--green-soft);
}

.verify-result[data-tone="warn"] {
  border-left-color: var(--amber);
  background: var(--amber-soft);
}

.verify-result[data-tone="bad"] {
  border-left-color: var(--red);
  background: var(--red-soft);
}

.verify-result[data-tone="pending"] {
  border-left-color: var(--blue);
  background: var(--blue-soft);
}

.verify-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.verify-side {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--canvas);
  padding: 24px 26px;
}

.verify-side p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

.origin-list {
  display: grid;
  margin: 0 0 16px;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 4px 14px;
  padding: 0;
  list-style: none;
  font-size: 0.76rem;
}

.origin-list code {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.browser-note {
  border-left: 4px solid var(--muted);
  color: var(--muted);
  padding-left: 14px;
  line-height: 1.65;
}

.browser-note[data-state="supported"] {
  border-left-color: var(--green);
}

.browser-note[data-state="blocked"] {
  border-left-color: var(--amber);
}

.verify-fallback {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--charcoal);
  color: #d8ece2;
  padding: 16px 18px;
  font-size: 0.78rem;
  line-height: 1.6;
}

.provider-links {
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 1050px) {
  .verify-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

.browse-band {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 34px 0;
}

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

.browse-grid h3 {
  margin: 0 0 10px;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.browse-grid ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.85;
}

.quick-start-band {
  background: #0f1c18;
  color: var(--paper);
}

.quick-start-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 52px;
  align-items: center;
}

.quick-start-grid h2 {
  margin-bottom: 16px;
}

.quick-start-grid > div > p:not(.eyebrow) {
  margin-bottom: 24px;
  color: #b9cbc4;
  line-height: 1.65;
}

.quick-start-code {
  min-width: 0;
  overflow-x: auto;
  margin: 0;
  border: 1px solid #3d554c;
  border-radius: 8px;
  background: #172b24;
  color: #d8f3e7;
  padding: 22px 24px;
  font-size: 0.78rem;
  line-height: 1.65;
}

.trust-band {
  background: var(--canvas);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-grid article {
  background: var(--paper);
  padding: 25px;
}

.trust-grid h3 {
  margin: 0 0 10px;
  font-size: 0.98rem;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

.page-head {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 30px 0 34px;
}

.page-head h1 {
  margin: 6px 0 10px;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  line-height: 1.15;
}

.page-head .lede {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.page-head .eyebrow {
  color: var(--green);
}

.breadcrumb {
  margin-bottom: 14px;
  font-size: 0.8rem;
  color: var(--muted);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--line);
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 300px);
  gap: 44px;
  padding: 34px 0 48px;
  align-items: start;
}

.page-body {
  min-width: 0;
  max-width: 74ch;
  line-height: 1.7;
}

.page-body h2 {
  margin: 34px 0 12px;
  font-size: 1.22rem;
  line-height: 1.3;
}

.page-body h2:first-child {
  margin-top: 0;
}

.page-body h3 {
  margin: 22px 0 6px;
  font-size: 1rem;
}

.page-body p {
  margin: 0 0 14px;
}

.page-body code {
  padding: 1px 5px;
  border-radius: 4px;
  background: var(--canvas);
  font-size: 0.86em;
}

.page-code {
  overflow-x: auto;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--charcoal);
  color: #d8ece2;
  padding: 16px 18px;
  font-size: 0.78rem;
  line-height: 1.6;
}

.page-code code {
  padding: 0;
  background: none;
  color: inherit;
  font-size: 1em;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px 26px;
  margin: 0 0 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.fact-grid dt {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.fact-grid dd {
  margin: 2px 0 0;
  font-weight: 600;
}

.model-list,
.difference-list,
.requirement-list,
.source-list {
  margin: 0 0 18px;
  padding-left: 20px;
}

.model-list li,
.difference-list li,
.requirement-list li,
.source-list li {
  margin-bottom: 8px;
}

.source-url {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  word-break: break-all;
}

.row-self {
  background: var(--green-soft);
}

.related {
  position: sticky;
  top: 24px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.related h2 {
  margin: 0 0 8px;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.related div + div {
  margin-top: 20px;
}

.related ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.75;
  font-size: 0.9rem;
}

@media (max-width: 1050px) {
  .page-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .quick-start-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .related {
    position: static;
  }

  .browse-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 620px) {
  .fact-grid {
    grid-template-columns: 1fr;
  }
}
