:root {
  color-scheme: dark;
  --page: #080b12;
  --panel: #0d121b;
  --panel-raised: #121925;
  --panel-soft: rgba(18, 25, 37, 0.72);
  --text: #f4f7fb;
  --text-soft: #b7c2d0;
  --text-faint: #778496;
  --line: rgba(180, 203, 231, 0.14);
  --line-strong: rgba(180, 203, 231, 0.24);
  --accent: #ff7a3d;
  --accent-soft: rgba(255, 122, 61, 0.13);
  --blue: #8bd3ff;
  --green: #6ee7a0;
  --purple: #b39bff;
  --header-height: 68px;
  --sidebar-width: 286px;
  --toc-width: 230px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
  background: var(--page);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  line-height: 1.58;
  background:
    radial-gradient(circle at 70% -20%, rgba(139, 211, 255, 0.08), transparent 34rem),
    radial-gradient(circle at 20% 105%, rgba(255, 122, 61, 0.06), transparent 40rem),
    var(--page);
}

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

.visually-hidden,
.skip-link:not(:focus) {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #111;
  background: #fff;
  font-weight: 800;
}

.docs-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(max-content, 1fr) minmax(250px, 480px) minmax(max-content, 1fr);
  align-items: center;
  gap: 24px;
  padding: 0 clamp(18px, 3vw, 44px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 11, 18, 0.82);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  backdrop-filter: blur(22px) saturate(1.35);
}

.header-leading,
.header-actions,
.brand,
.search-trigger {
  display: flex;
  align-items: center;
}

.header-leading { min-width: 0; gap: 12px; }

.brand {
  gap: 9px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand img {
  width: 27px;
  height: 27px;
  filter: invert(1) drop-shadow(0 0 10px rgba(255, 122, 61, 0.32));
}

.header-divider {
  width: 1px;
  height: 23px;
  background: var(--line-strong);
}

.documentation-name {
  overflow: hidden;
  color: var(--text-soft);
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 720;
}

.search-trigger {
  width: 100%;
  height: 40px;
  gap: 10px;
  padding: 0 9px 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--text-faint);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  text-align: left;
  transition: border-color 140ms ease, background 140ms ease, color 140ms ease;
}

.search-trigger:hover {
  color: var(--text-soft);
  border-color: rgba(139, 211, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.search-trigger svg,
.search-field-wrap svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.search-trigger > span { flex: 1; }

kbd {
  display: inline-flex;
  min-width: 43px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text-faint);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 -1px rgba(0, 0, 0, 0.28);
  font-size: 11px;
  font-family: inherit;
}

.header-actions {
  justify-content: flex-end;
  gap: 20px;
  font-size: 13px;
  font-weight: 750;
}

.header-actions a { color: var(--text-soft); text-decoration: none; }
.header-actions a:hover { color: var(--text); }

.header-actions .launch-button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 10px;
  color: #170b07;
  background: linear-gradient(135deg, #fff 0%, #ffd8c1 46%, #c7ebff 100%);
  box-shadow: 0 8px 28px rgba(255, 122, 61, 0.12);
}

.icon-button {
  border: 0;
  color: inherit;
  background: none;
  cursor: pointer;
}

.sidebar-toggle {
  display: none;
  width: 34px;
  height: 34px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 9px;
}

.sidebar-toggle span { width: 16px; height: 1.5px; border-radius: 2px; background: currentColor; }

.docs-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr) var(--toc-width);
  padding-top: var(--header-height);
}

.docs-sidebar {
  position: fixed;
  z-index: 30;
  top: var(--header-height);
  bottom: 0;
  left: 0;
  width: var(--sidebar-width);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: rgba(9, 13, 20, 0.74);
}

.sidebar-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 24px 18px 30px;
  scrollbar-width: thin;
}

.sidebar-overview,
.doc-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 7px 10px;
  border-radius: 9px;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 13px;
  font-weight: 640;
  transition: color 120ms ease, background 120ms ease;
}

.sidebar-overview:hover,
.doc-nav-link:hover { color: var(--text); background: rgba(255, 255, 255, 0.045); }

.sidebar-overview.is-active,
.doc-nav-link.is-active {
  color: #fff;
  background: linear-gradient(90deg, rgba(255, 122, 61, 0.16), rgba(139, 211, 255, 0.07));
  box-shadow: inset 2px 0 var(--accent);
}

.nav-icon {
  width: 20px;
  flex: 0 0 20px;
  color: var(--text-faint);
  text-align: center;
  font-size: 12px;
}

.is-active .nav-icon { color: var(--accent); }

.doc-nav-group { margin-top: 26px; }

.doc-nav-group h2 {
  margin: 0 10px 8px;
  color: var(--text-faint);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sidebar-resources {
  display: grid;
  gap: 4px;
  padding: 16px 26px 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.sidebar-resources > span {
  margin-bottom: 5px;
  color: var(--text-faint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sidebar-resources a { color: var(--text-soft); text-decoration: none; }
.sidebar-resources a span { color: var(--text-faint); }
.sidebar-resources a:hover { color: var(--blue); }

.docs-main {
  grid-column: 2;
  min-width: 0;
  padding: clamp(44px, 6vw, 86px) clamp(28px, 6vw, 92px) 110px;
  outline: none;
}

.docs-main:focus-visible { outline: none; }

.article-toc {
  position: fixed;
  z-index: 10;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  width: var(--toc-width);
  overflow-y: auto;
  padding: 48px 26px 40px 20px;
}

.article-toc:empty { display: none; }
.article-toc strong { display: block; margin-bottom: 12px; color: var(--text-faint); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.article-toc a { display: block; margin: 8px 0; padding-left: 11px; border-left: 1px solid var(--line); color: var(--text-faint); text-decoration: none; font-size: 12px; line-height: 1.4; }
.article-toc a[data-level="3"] { padding-left: 22px; }
.article-toc a:hover,
.article-toc a.is-active { color: var(--text); border-color: var(--accent); }

.docs-loading {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-faint);
  font-size: 13px;
}

.loading-mark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--line-strong);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.docs-home,
.article-shell { width: min(100%, 900px); margin: 0 auto; }

.docs-hero { padding: clamp(22px, 4vw, 46px) 0 60px; }

.hero-kicker,
.article-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-kicker::before,
.article-kicker::before { content: ""; width: 20px; height: 1px; background: currentColor; }

.docs-hero h1,
.article-heading h1 {
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.docs-hero h1 { max-width: 780px; font-size: clamp(46px, 8vw, 82px); }

.docs-hero > p {
  max-width: 660px;
  margin: 25px 0 0;
  color: var(--text-soft);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.docs-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.025);
  font-size: 12px;
}

.stat-chip strong { color: var(--text); }
.verified-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px rgba(110, 231, 160, 0.65); }

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

.doc-card {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: inherit;
  text-decoration: none;
  background:
    radial-gradient(circle at 100% 0, rgba(139, 211, 255, 0.07), transparent 45%),
    rgba(255, 255, 255, 0.025);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.doc-card:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 211, 255, 0.3);
  background:
    radial-gradient(circle at 100% 0, rgba(139, 211, 255, 0.12), transparent 48%),
    rgba(255, 255, 255, 0.04);
}

.doc-card-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 122, 61, 0.22);
  border-radius: 11px;
  color: #ff9b6a;
  background: var(--accent-soft);
  font-size: 13px;
  font-weight: 900;
}

.doc-card strong { margin-bottom: 7px; font-size: 17px; letter-spacing: -0.02em; }
.doc-card p { margin: 0; color: var(--text-soft); font-size: 13px; line-height: 1.5; }
.doc-card-arrow { position: absolute; top: 24px; right: 24px; color: var(--text-faint); transition: transform 160ms ease; }
.doc-card:hover .doc-card-arrow { transform: translate(2px, -2px); color: var(--blue); }

.home-section { margin-top: 76px; }

.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 22px; }
.section-heading-row h2 { margin: 0; font-size: 26px; letter-spacing: -0.035em; }
.section-heading-row p { max-width: 430px; margin: 0; color: var(--text-faint); font-size: 13px; text-align: right; }

.library-group { margin-top: 36px; }
.library-group h3 { margin: 0 0 13px; color: var(--text-faint); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.library-grid .doc-card { min-height: 150px; padding: 20px; }
.library-grid .doc-card-icon { margin-bottom: 18px; }

.trust-panel {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  padding: clamp(25px, 4vw, 38px);
  border: 1px solid rgba(110, 231, 160, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 10%, rgba(110, 231, 160, 0.09), transparent 40%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.trust-panel h2 { margin: 0 0 12px; font-size: 27px; letter-spacing: -0.035em; }
.trust-panel p { margin: 0; color: var(--text-soft); font-size: 14px; }
.trust-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.trust-metric { display: flex; flex-direction: column; justify-content: center; padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: rgba(5, 8, 13, 0.35); }
.trust-metric strong { font-size: 22px; letter-spacing: -0.04em; }
.trust-metric span { color: var(--text-faint); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; }

.agent-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.agent-links a { padding: 9px 12px; border: 1px solid var(--line); border-radius: 9px; color: var(--text-soft); text-decoration: none; font-size: 12px; font-weight: 700; }
.agent-links a:hover { color: var(--text); border-color: rgba(139, 211, 255, 0.3); }

.article-breadcrumbs { display: flex; align-items: center; gap: 8px; margin-bottom: 42px; color: var(--text-faint); font-size: 12px; }
.article-breadcrumbs a { text-decoration: none; }
.article-breadcrumbs a:hover { color: var(--blue); }
.article-breadcrumbs span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.article-heading { padding-bottom: 38px; border-bottom: 1px solid var(--line); }
.article-heading h1 { max-width: 760px; font-size: clamp(42px, 6vw, 67px); }
.article-summary { max-width: 700px; margin: 22px 0 0; color: var(--text-soft); font-size: clamp(17px, 2vw, 20px); }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 24px; color: var(--text-faint); font-size: 11px; }
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.article-meta code { color: var(--text-soft); }

.article-body { max-width: 780px; padding-top: 28px; color: #d9e0e9; font-size: 15px; }
.article-body h2,
.article-body h3,
.article-body h4 { position: relative; color: var(--text); letter-spacing: -0.025em; line-height: 1.2; text-wrap: balance; }
.article-body h2 { margin: 58px 0 18px; padding-top: 4px; font-size: 29px; }
.article-body h3 { margin: 38px 0 14px; font-size: 21px; }
.article-body h4 { margin: 30px 0 12px; font-size: 17px; }
.article-body p { margin: 0 0 19px; }
.article-body a { color: var(--blue); text-decoration-color: rgba(139, 211, 255, 0.38); text-underline-offset: 3px; }
.article-body a:hover { text-decoration-color: currentColor; }
.article-body strong { color: #fff; }
.article-body ul,
.article-body ol { margin: 0 0 22px; padding-left: 24px; }
.article-body li { margin: 7px 0; padding-left: 3px; }
.article-body li::marker { color: var(--accent); }
.article-body hr { height: 1px; margin: 46px 0; border: 0; background: var(--line); }
.article-body blockquote { margin: 27px 0; padding: 18px 20px; border: 1px solid rgba(139, 211, 255, 0.18); border-left: 3px solid var(--blue); border-radius: 0 12px 12px 0; color: var(--text-soft); background: rgba(139, 211, 255, 0.055); }
.article-body blockquote p { margin: 0; }
.heading-anchor { position: absolute; right: 100%; padding-right: 10px; color: transparent !important; text-decoration: none !important; font-weight: 500; }
.article-body h2:hover .heading-anchor,
.article-body h3:hover .heading-anchor,
.heading-anchor:focus { color: var(--text-faint) !important; }

code {
  padding: 0.15em 0.38em;
  border: 1px solid rgba(180, 203, 231, 0.1);
  border-radius: 5px;
  color: #ffd0b8;
  background: rgba(255, 255, 255, 0.05);
  font: 0.9em ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.code-block { margin: 26px 0; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: #05080d; box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16); }
.code-toolbar { height: 39px; display: flex; align-items: center; justify-content: space-between; padding: 0 11px 0 15px; border-bottom: 1px solid var(--line); color: var(--text-faint); font-size: 10px; text-transform: uppercase; letter-spacing: 0.07em; }
.code-toolbar button { padding: 5px 8px; border: 0; border-radius: 6px; color: var(--text-faint); background: transparent; cursor: pointer; font-size: 10px; }
.code-toolbar button:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }
.code-block pre { max-height: 620px; margin: 0; padding: 18px; overflow: auto; line-height: 1.58; tab-size: 2; }
.code-block pre code { padding: 0; border: 0; color: #dbe5ef; background: transparent; font-size: 12.5px; }

.table-scroll { margin: 25px 0; overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; }
table { width: 100%; border-collapse: collapse; min-width: 540px; font-size: 13px; }
th, td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--text); background: rgba(255, 255, 255, 0.035); font-size: 11px; letter-spacing: 0.025em; }
td { color: var(--text-soft); }
tr:last-child td { border-bottom: 0; }

dl { margin: 24px 0; }
dt { margin-top: 19px; color: var(--text); font-weight: 700; }
dd { margin: 5px 0 0; color: var(--text-soft); }
.unresolved-link { color: var(--text-soft); border-bottom: 1px dotted var(--text-faint); }

.article-pagination { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 76px; padding-top: 25px; border-top: 1px solid var(--line); }
.pagination-link { min-height: 92px; display: flex; flex-direction: column; justify-content: center; padding: 16px 18px; border: 1px solid var(--line); border-radius: 13px; color: inherit; text-decoration: none; }
.pagination-link:last-child { text-align: right; }
.pagination-link:hover { border-color: rgba(139, 211, 255, 0.3); background: rgba(255, 255, 255, 0.025); }
.pagination-link span { color: var(--text-faint); font-size: 10px; text-transform: uppercase; letter-spacing: 0.07em; }
.pagination-link strong { margin-top: 4px; font-size: 13px; }
.pagination-placeholder { min-height: 1px; }

.search-dialog {
  width: min(680px, calc(100vw - 28px));
  max-height: min(660px, calc(100dvh - 40px));
  margin: max(76px, 11vh) auto auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  color: var(--text);
  background: rgba(13, 18, 27, 0.96);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(26px) saturate(1.3);
  backdrop-filter: blur(26px) saturate(1.3);
}

.search-dialog::backdrop { background: rgba(2, 4, 8, 0.66); backdrop-filter: blur(4px); }
.search-panel { display: flex; flex-direction: column; max-height: min(660px, calc(100dvh - 40px)); }
.search-field-wrap { flex: 0 0 62px; display: flex; align-items: center; gap: 12px; padding: 0 14px 0 19px; border-bottom: 1px solid var(--line); color: var(--text-faint); }
.search-field-wrap input { flex: 1; min-width: 0; border: 0; outline: 0; color: var(--text); background: transparent; font-size: 16px; }
.search-field-wrap input::placeholder { color: var(--text-faint); }
.search-field-wrap button { padding: 5px 8px; border: 1px solid var(--line); border-radius: 6px; color: var(--text-faint); background: rgba(255, 255, 255, 0.03); cursor: pointer; font-size: 10px; }
.search-results { min-height: 150px; overflow-y: auto; padding: 9px; }
.search-empty { display: grid; min-height: 170px; place-items: center; color: var(--text-faint); font-size: 13px; text-align: center; }
.search-result { display: grid; grid-template-columns: 37px 1fr auto; gap: 12px; align-items: start; padding: 13px; border-radius: 11px; color: inherit; text-decoration: none; }
.search-result:hover,
.search-result.is-selected { background: rgba(139, 211, 255, 0.075); }
.search-result .doc-card-icon { width: 37px; height: 37px; margin: 0; }
.search-result strong { display: block; font-size: 13px; }
.search-result p { margin: 3px 0 0; color: var(--text-faint); font-size: 11px; line-height: 1.4; }
.search-result > span:last-child { color: var(--text-faint); }

.sidebar-scrim { display: none; }
.noscript-message { margin: 120px auto; width: min(680px, calc(100% - 32px)); padding: 20px; border: 1px solid var(--line); border-radius: 12px; }

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

@media (max-width: 1120px) {
  .docs-layout { grid-template-columns: var(--sidebar-width) minmax(0, 1fr); }
  .article-toc { display: none; }
  .docs-main { padding-inline: clamp(28px, 7vw, 82px); }
}

@media (max-width: 820px) {
  :root { --header-height: 62px; }
  .docs-header { grid-template-columns: minmax(0, 1fr) auto; gap: 12px; padding-left: max(12px, env(safe-area-inset-left)); padding-right: max(12px, env(safe-area-inset-right)); }
  .sidebar-toggle { display: flex; }
  .brand span,
  .header-divider,
  .header-actions > a:not(.launch-button),
  .search-trigger > span,
  .search-trigger kbd { display: none; }
  .search-trigger { justify-self: end; width: 40px; padding: 0; justify-content: center; }
  .header-actions { grid-column: 2; grid-row: 1; }
  .header-actions .launch-button { min-height: 34px; padding: 0 12px; font-size: 12px; }
  .search-trigger { grid-column: 2; grid-row: 1; margin-right: 104px; }
  .documentation-name { font-size: 13px; }
  .docs-layout { display: block; }
  .docs-sidebar { top: var(--header-height); width: min(310px, calc(100vw - 42px)); transform: translateX(-105%); transition: transform 180ms ease; box-shadow: var(--shadow); }
  body.sidebar-open .docs-sidebar { transform: translateX(0); }
  .sidebar-scrim { position: fixed; z-index: 25; inset: var(--header-height) 0 0; display: block; background: rgba(2, 4, 8, 0.56); }
  .sidebar-scrim[hidden] { display: none; }
  .docs-main { padding: 40px max(20px, env(safe-area-inset-right)) calc(90px + env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left)); }
  .docs-hero { padding-top: 14px; }
  .featured-grid,
  .library-grid { grid-template-columns: 1fr; }
  .doc-card { min-height: 155px; }
  .trust-panel { grid-template-columns: 1fr; }
  .section-heading-row { align-items: start; flex-direction: column; gap: 8px; }
  .section-heading-row p { text-align: left; }
  .article-breadcrumbs { margin-bottom: 32px; }
  .article-pagination { grid-template-columns: 1fr; }
  .pagination-link:last-child { text-align: left; }
}

@media (max-width: 520px) {
  .documentation-name { max-width: 90px; }
  .docs-main { padding-top: 30px; }
  .docs-hero h1 { font-size: clamp(42px, 13vw, 58px); }
  .docs-hero > p { font-size: 17px; }
  .docs-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-chip { justify-content: center; text-align: center; }
  .trust-metrics { grid-template-columns: 1fr; }
  .article-heading h1 { font-size: 42px; }
  .article-body { font-size: 14px; }
  .article-body h2 { font-size: 25px; }
  .heading-anchor { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
