@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/instrument-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-regular-latin.woff2") format("woff2");
}

:root {
  --canvas: #090c12;
  --surface: #0f141d;
  --surface-soft: #141a24;
  --ink: #f4f6f8;
  --ink-soft: #c0c7d0;
  --muted: #8993a0;
  --rule: rgba(236, 241, 247, 0.12);
  --rule-strong: rgba(236, 241, 247, 0.2);
  --accent: #92bad8;
  --accent-soft: rgba(146, 186, 216, 0.11);
  --success: #7bd0b3;
  --warning: #e6c183;
  --danger: #ee9aa5;
  --focus: #c7e5fa;
  --page: 1120px;
  --header: 64px;
  --sans: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 20px);
}

body {
  background:
    radial-gradient(circle at 76% -8%, rgba(95, 131, 167, 0.12), transparent 30rem),
    var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

h1,
h2,
h3,
p,
pre {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

code,
pre {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}

::selection {
  background: rgba(146, 186, 216, 0.3);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  background: var(--ink);
  border-radius: 0 0 10px 10px;
  color: var(--canvas);
  inset-inline-start: 20px;
  padding: 10px 14px;
  position: fixed;
  top: 0;
  transform: translateY(-120%);
  transition: transform 140ms var(--ease);
  z-index: 100;
}

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

.site-header {
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
  background: rgba(9, 12, 18, 0.84);
  border-bottom: 1px solid var(--rule);
  height: var(--header);
  inset-block-start: 0;
  position: sticky;
  z-index: 50;
}

.header-inner {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  height: 100%;
  margin-inline: auto;
  width: min(calc(100% - 40px), var(--page));
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  font-weight: 650;
  gap: 9px;
  justify-self: start;
  min-height: 44px;
}

.brand-mark {
  height: 26px;
  object-fit: contain;
  width: 26px;
}

.brand-section {
  border-inline-start: 1px solid var(--rule-strong);
  color: var(--muted);
  font-weight: 500;
  padding-inline-start: 9px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 26px;
}

.desktop-nav a {
  align-items: center;
  color: var(--ink-soft);
  display: inline-flex;
  font-size: 13px;
  min-height: 44px;
  transition: color 130ms var(--ease);
}

.github-link {
  align-items: center;
  border: 1px solid var(--rule);
  border-radius: 11px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 620;
  gap: 7px;
  justify-self: end;
  min-height: 40px;
  padding-inline: 13px;
  transition:
    background-color 130ms var(--ease),
    border-color 130ms var(--ease);
}

main {
  overflow: clip;
}

.hero,
.section,
footer > div {
  margin-inline: auto;
  width: min(calc(100% - 40px), var(--page));
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(48px, 8vw, 112px);
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  min-height: min(780px, calc(100svh - var(--header)));
  padding-block: 72px 84px;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow,
.section-heading > p {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 620;
  margin-top: 16px;
}

.hero-lede {
  color: var(--ink-soft);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  margin-top: 22px;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border: 1px solid var(--rule-strong);
  border-radius: 12px;
  display: inline-flex;
  font-size: 13.5px;
  font-weight: 650;
  justify-content: center;
  min-height: 46px;
  padding-inline: 16px;
  transition:
    background-color 130ms var(--ease),
    border-color 130ms var(--ease),
    transform 120ms var(--ease);
}

.button-primary {
  background: var(--ink);
  color: var(--canvas);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.025);
}

.live-line {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-family: var(--mono);
  font-size: 11.5px;
  gap: 9px;
  margin-top: 22px;
}

.status-dot {
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(123, 208, 179, 0.1);
  flex: 0 0 auto;
  height: 6px;
  width: 6px;
}

.path-list {
  background: rgba(15, 20, 29, 0.86);
  border: 1px solid var(--rule);
  border-radius: 18px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.path-list a {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 84px;
  padding: 15px 18px;
  transition: background-color 130ms var(--ease);
}

.path-list a + a {
  border-top: 1px solid var(--rule);
}

.path-list a > span:first-child {
  display: grid;
  gap: 3px;
}

.path-list strong {
  font-size: 15px;
  font-weight: 650;
}

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

.path-list a > span:last-child {
  color: var(--muted);
}

.section {
  padding-block: clamp(80px, 9vw, 120px);
}

.section + .section {
  border-top: 1px solid var(--rule);
}

.section-heading {
  align-items: start;
  display: grid;
  gap: clamp(28px, 6vw, 90px);
  grid-template-columns: minmax(140px, 0.3fr) minmax(0, 1fr);
  margin-bottom: 42px;
}

.section-heading > p {
  padding-top: 8px;
}

.section-heading > div {
  max-width: 700px;
}

.section h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
}

.section-heading > div > p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.58;
  margin-top: 14px;
  max-width: 62ch;
}

.label-table {
  margin-inline-start: calc(140px + clamp(28px, 6vw, 90px));
}

.label-table > div {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(170px, 0.65fr) minmax(180px, 0.75fr) minmax(250px, 1.6fr);
  min-height: 74px;
  padding-block: 13px;
}

.label-table > div + div {
  border-top: 1px solid var(--rule);
}

.label-table code {
  color: var(--accent);
  font-size: 12px;
}

.label-table strong {
  font-size: 14.5px;
  font-weight: 650;
}

.label-table span {
  color: var(--muted);
  font-size: 13.5px;
}

.code-block {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 15px;
  margin-block-start: 28px;
  margin-inline-start: calc(140px + clamp(28px, 6vw, 90px));
  overflow: hidden;
}

.code-heading {
  align-items: center;
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
  display: flex;
  font-size: 11.5px;
  justify-content: space-between;
  min-height: 48px;
  padding-inline: 15px 8px;
}

.code-heading button {
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  min-height: 36px;
  padding-inline: 10px;
}

.code-block pre {
  color: var(--ink-soft);
  font-size: 12.5px;
  line-height: 1.7;
  overflow: auto;
  padding: 20px;
}

.code-block pre:focus-visible {
  outline-offset: -4px;
}

.prelaunch-note,
.provider-grid,
.hard-rule,
.provider-actions,
.reference-list,
.status-ledger {
  margin-inline-start: calc(140px + clamp(28px, 6vw, 90px));
}

.prelaunch-note {
  background: var(--accent-soft);
  border-inline-start: 2px solid var(--accent);
  padding: 14px 16px;
}

.prelaunch-note strong {
  font-size: 13.5px;
}

.prelaunch-note p {
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.55;
  margin-top: 3px;
  max-width: 70ch;
}

.provider-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.provider-grid article > p {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
}

.provider-grid h3 {
  font-size: 19px;
  font-weight: 620;
  margin-top: 9px;
}

.provider-grid article > span {
  color: var(--ink-soft);
  display: block;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
}

.hard-rule {
  color: var(--ink);
  font-size: 14px;
  font-weight: 620;
  line-height: 1.55;
  margin-top: 26px;
  max-width: 70ch;
}

.provider-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.provider-actions a {
  align-items: center;
  color: var(--accent);
  display: inline-flex;
  font-size: 13.5px;
  font-weight: 630;
  gap: 6px;
  min-height: 44px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: from-font;
  text-underline-offset: 4px;
  transition:
    color 130ms var(--ease),
    text-decoration-color 130ms var(--ease);
}

.reference-list {
  display: grid;
}

.reference-list a {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  min-height: 72px;
  padding-inline: 4px;
  transition: background-color 130ms var(--ease);
}

.reference-list a + a {
  border-top: 1px solid var(--rule);
}

.reference-list > a > code {
  color: var(--success);
  font-size: 10.5px;
  font-weight: 500;
}

.reference-list > a > span:nth-child(2) {
  display: grid;
  gap: 3px;
}

.reference-list strong {
  font-size: 14px;
  font-weight: 640;
}

.reference-list small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11.5px;
  overflow-wrap: anywhere;
}

.reference-list > a > span:last-child {
  color: var(--muted);
}

.status-ledger {
  border: 1px solid var(--rule);
  border-radius: 15px;
  margin-top: 34px;
  overflow: hidden;
}

.status-ledger > div {
  align-items: center;
  display: flex;
  font-size: 13.5px;
  gap: 24px;
  justify-content: space-between;
  min-height: 58px;
  padding-inline: 16px;
}

.status-ledger > div + div {
  border-top: 1px solid var(--rule);
}

.status-ledger strong {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11.5px;
  font-variant-numeric: tabular-nums;
  text-align: end;
}

.status-ledger > p {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 11.5px;
  padding: 11px 16px;
}

.guide-page {
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(236, 241, 247, 0.035) 50%, transparent calc(50% + 0.5px)),
    radial-gradient(circle at 16% 2%, rgba(146, 186, 216, 0.12), transparent 31rem),
    var(--canvas);
}

.guide-hero,
.guide-section {
  margin-inline: auto;
  width: min(calc(100% - 40px), var(--page));
}

.guide-hero {
  align-items: center;
  display: grid;
  gap: clamp(48px, 8vw, 112px);
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  min-height: min(760px, calc(100svh - var(--header)));
  padding-block: 76px 88px;
}

.guide-hero-copy {
  max-width: 660px;
}

.guide-hero h1 {
  font-size: clamp(46px, 6.2vw, 78px);
  font-weight: 610;
  letter-spacing: -0.05em;
  margin-top: 17px;
  max-width: 11ch;
}

.guide-lede {
  color: var(--ink-soft);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.62;
  margin-top: 24px;
  max-width: 58ch;
}

.release-line {
  align-items: center;
  color: var(--ink-soft);
  display: flex;
  font-family: var(--mono);
  font-size: 11.5px;
  gap: 10px;
  margin-top: 23px;
  min-height: 28px;
}

.release-line.is-planned .status-dot {
  background: var(--warning);
  box-shadow: 0 0 0 4px rgba(230, 193, 131, 0.1);
}

.release-line.is-live .status-dot {
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(123, 208, 179, 0.1);
}

.release-line.is-unavailable .status-dot {
  background: var(--danger);
  box-shadow: 0 0 0 4px rgba(238, 154, 165, 0.1);
}

.identity-instrument {
  background: rgba(15, 20, 29, 0.86);
  border: 1px solid var(--rule-strong);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.instrument-heading {
  align-items: center;
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
  display: flex;
  font-family: var(--mono);
  font-size: 10.5px;
  justify-content: space-between;
  min-height: 48px;
  padding-inline: 16px;
  text-transform: uppercase;
}

.identity-instrument dl {
  margin: 0;
}

.identity-instrument dl > div {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(94px, 0.55fr) minmax(0, 1.45fr);
  min-height: 62px;
  padding-inline: 16px;
}

.identity-instrument dl > div + div {
  border-top: 1px solid var(--rule);
}

.identity-instrument dt {
  color: var(--muted);
  font-size: 12px;
}

.identity-instrument dd {
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 620;
  margin: 0;
  overflow-wrap: anywhere;
}

.identity-instrument dd code {
  color: var(--accent);
  font-size: 12px;
}

.identity-instrument > p {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
  padding: 15px 16px 16px;
}

.guide-section {
  border-top: 1px solid var(--rule);
  padding-block: clamp(82px, 9vw, 118px);
}

.guide-section-heading {
  align-items: start;
  display: grid;
  gap: clamp(28px, 6vw, 90px);
  grid-template-columns: minmax(140px, 0.3fr) minmax(0, 1fr);
  margin-bottom: 46px;
}

.guide-section-heading > p {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  padding-top: 8px;
}

.guide-section-heading > div {
  max-width: 760px;
}

.guide-section h2 {
  font-size: clamp(33px, 4.2vw, 50px);
  font-weight: 600;
}

.guide-section-heading > div > p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.62;
  margin-top: 15px;
  max-width: 66ch;
}

.contract-ledger,
.guide-note,
.integration-steps,
.guide-code,
.signal-columns,
.guide-status-ledger,
.resource-stack {
  margin-inline-start: calc(140px + clamp(28px, 6vw, 90px));
}

.contract-ledger > div {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(150px, 0.7fr) minmax(220px, 1fr) minmax(240px, 1.4fr);
  min-height: 70px;
  padding-block: 13px;
}

.contract-ledger > div + div {
  border-top: 1px solid var(--rule);
}

.contract-ledger code {
  color: var(--accent);
  font-size: 11.5px;
}

.contract-ledger strong {
  font-size: 14px;
  font-weight: 650;
}

.contract-ledger span {
  color: var(--muted);
  font-size: 13px;
}

.guide-note {
  border-inline-start: 2px solid var(--warning);
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.65;
  margin-top: 30px;
  max-width: 76ch;
  padding: 13px 16px;
}

.integration-steps {
  list-style: none;
  margin-block: 0 38px;
  padding: 0;
}

.integration-steps li {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: 52px minmax(0, 1fr);
  padding-block: 24px;
}

.integration-steps li + li {
  border-top: 1px solid var(--rule);
}

.integration-steps li > span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  padding-top: 4px;
}

.integration-steps h3 {
  font-size: 18px;
  font-weight: 630;
}

.integration-steps p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
  margin-top: 8px;
  max-width: 71ch;
}

.integration-steps code,
.signal-columns code {
  color: var(--accent);
  font-size: 0.92em;
}

.guide-code {
  margin-block-start: 0;
}

.signal-columns {
  display: grid;
  gap: clamp(36px, 7vw, 78px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.signal-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.signal-label.is-accept {
  color: var(--success);
}

.signal-label.is-reject {
  color: var(--warning);
}

.signal-columns ul {
  list-style: none;
  margin: 17px 0 0;
  padding: 0;
}

.signal-columns li {
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.55;
  padding: 14px 0 14px 18px;
  position: relative;
}

.signal-columns li::before {
  color: var(--muted);
  content: "·";
  inset-inline-start: 2px;
  position: absolute;
}

.guide-status-ledger {
  margin-top: 40px;
}

.resource-stack {
  display: grid;
}

.resource-stack > a {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  min-height: 76px;
  padding-inline: 4px;
  transition: background-color 130ms var(--ease);
}

.resource-stack > a + a {
  border-top: 1px solid var(--rule);
}

.resource-stack > a > code {
  color: var(--success);
  font-size: 10.5px;
  font-weight: 500;
}

.resource-stack > a > span:nth-child(2) {
  display: grid;
  gap: 3px;
}

.resource-stack strong {
  font-size: 14px;
  font-weight: 640;
}

.resource-stack small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11.5px;
  overflow-wrap: anywhere;
}

.resource-stack > a > span:last-child {
  color: var(--muted);
}

footer {
  border-top: 1px solid var(--rule);
}

footer > div {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 24px;
  justify-content: space-between;
  min-height: 96px;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

footer a {
  min-height: 44px;
  align-items: center;
  display: inline-flex;
}

.copy-announcement {
  background: var(--ink);
  border: 1px solid var(--rule-strong);
  border-radius: 10px;
  bottom: 20px;
  color: var(--canvas);
  font-size: 13px;
  inset-inline-start: 50%;
  opacity: 0;
  padding: 10px 13px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 12px);
  transition:
    opacity 140ms var(--ease),
    transform 160ms var(--ease);
  z-index: 100;
}

.copy-announcement.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover,
  .github-link:hover {
    color: var(--ink);
  }

  .github-link:hover,
  .path-list a:hover,
  .reference-list a:hover,
  .resource-stack a:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  .button:hover {
    transform: translateY(-1px);
  }

  .button-primary:hover {
    background: #dfe4e8;
  }

  .button-secondary:hover {
    border-color: var(--rule-strong);
    background: rgba(255, 255, 255, 0.045);
  }

  .provider-actions a:hover {
    color: var(--ink);
    text-decoration-color: currentColor;
  }
}

@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 64px 72px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .guide-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 66px 76px;
  }

  .guide-hero-copy {
    max-width: 720px;
  }

  .identity-instrument {
    max-width: 680px;
  }

  .section-heading,
  .guide-section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-heading > p,
  .guide-section-heading > p {
    padding-top: 0;
  }

  .label-table,
  .code-block,
  .prelaunch-note,
  .provider-grid,
  .hard-rule,
  .provider-actions,
  .reference-list,
  .status-ledger,
  .contract-ledger,
  .guide-note,
  .integration-steps,
  .guide-code,
  .signal-columns,
  .guide-status-ledger,
  .resource-stack {
    margin-inline-start: 0;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .hero,
  .section,
  .guide-hero,
  .guide-section,
  footer > div {
    width: min(calc(100% - 28px), var(--page));
  }

  .brand-section,
  .github-link > span {
    display: none;
  }

  .github-link {
    min-height: 44px;
  }

  .hero {
    gap: 42px;
    padding-block: 52px 60px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .guide-hero {
    gap: 42px;
    padding-block: 52px 62px;
  }

  .guide-hero h1 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    min-height: 48px;
  }

  .path-list a {
    min-height: 82px;
    padding-inline: 15px;
  }

  .section {
    padding-block: 68px;
  }

  .guide-section {
    padding-block: 70px;
  }

  .section h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .guide-section h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .section-heading > div > p,
  .guide-section-heading > div > p {
    font-size: 16px;
  }

  .label-table > div {
    align-items: start;
    gap: 5px;
    grid-template-columns: 1fr;
    padding-block: 17px;
  }

  .code-block pre {
    padding: 17px 14px;
  }

  .provider-grid {
    gap: 26px;
    grid-template-columns: 1fr;
  }

  .contract-ledger > div {
    align-items: start;
    gap: 5px;
    grid-template-columns: 1fr;
    padding-block: 17px;
  }

  .integration-steps li {
    gap: 12px;
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .signal-columns {
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .resource-stack > a {
    grid-template-columns: 46px minmax(0, 1fr) auto;
    min-height: 80px;
  }

  .reference-list a {
    min-height: 76px;
  }

  .status-ledger > div {
    align-items: start;
    flex-direction: column;
    gap: 3px;
    justify-content: center;
    padding-block: 11px;
  }

  .status-ledger strong {
    text-align: start;
  }

  footer > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    padding-block: 24px;
  }
}

@media (max-width: 360px) {
  .brand {
    gap: 7px;
  }

  .brand-mark {
    height: 24px;
    width: 24px;
  }

  .github-link {
    padding-inline: 11px;
  }

  .path-list small {
    font-size: 12px;
  }
}

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

  .skip-link,
  .desktop-nav a,
  .github-link,
  .path-list a,
  .button,
  .provider-actions a,
  .reference-list a,
  .resource-stack a,
  .copy-announcement {
    transition: none;
  }
}

@media (forced-colors: active) {
  :focus-visible {
    outline-color: Highlight;
  }
}
