/* 123Proxy developer documentation */

:root {
  --docs-frame: 1380px;
  --docs-ink: #101722;
  --docs-text: #364150;
  --docs-muted: #6d7888;
  --docs-line: #dbe1e8;
  --docs-soft: #f4f6f8;
  --docs-blue: #2f5bea;
  --docs-blue-dark: #2149c9;
  --docs-blue-soft: #edf2ff;
  --docs-teal: #008f79;
  --docs-teal-bright: #2fd1ae;
  --docs-code: #0d1925;
  --docs-code-raised: #132332;
}

body.developer-docs {
  min-width: 320px;
  color: var(--docs-text);
  background: #fff;
  font-size: 15px;
}

.developer-docs .page {
  overflow: clip;
}

.docs-frame {
  width: min(var(--docs-frame), calc(100% - 64px));
  margin-inline: auto;
}

.docs-utility {
  color: #c2ced9;
  background: var(--docs-code);
  font-size: 12px;
}

.docs-utility-inner {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.docs-utility-inner > div,
.docs-network-state {
  display: flex;
  align-items: center;
}

.docs-utility-inner > div {
  gap: 20px;
}

.docs-utility a:hover {
  color: #fff;
}

.docs-network-state {
  gap: 8px;
}

.docs-network-state i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--docs-teal-bright);
  box-shadow: 0 0 0 4px rgb(47 209 174 / 12%);
}

.docs-header {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid rgb(219 225 232 / 94%);
  background: rgb(255 255 255 / 97%);
  box-shadow: 0 1px 0 rgb(13 25 37 / 3%);
  backdrop-filter: blur(16px);
}

.docs-header-inner {
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(220px, auto) minmax(260px, 440px) auto;
  align-items: center;
  gap: 28px;
}

.docs-brand-group,
.docs-topnav,
.docs-brand {
  display: flex;
  align-items: center;
}

.developer-docs .docs-brand {
  min-width: 0;
  gap: 8px;
}

.developer-docs .docs-brand .brand-mark {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
}

.developer-docs .docs-brand .brand-wordmark {
  height: 29px;
}

.developer-docs .docs-brand .brand-wordmark img {
  width: 77px;
}

.docs-brand-divider {
  width: 1px;
  height: 28px;
  margin: 0 16px;
  background: var(--docs-line);
}

.docs-product-name {
  color: var(--docs-ink);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.docs-topnav {
  justify-content: flex-end;
  gap: 20px;
  color: #424d5c;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.docs-topnav a {
  transition: color 160ms ease;
}

.docs-topnav a:hover {
  color: var(--docs-blue);
}

.docs-topnav .docs-console-link {
  min-width: max-content;
  min-height: 36px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  border: 1px solid var(--docs-line);
  border-radius: 6px;
  color: var(--docs-ink);
  line-height: 1;
  white-space: nowrap;
}

.docs-console-link svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.docs-search {
  position: relative;
  min-height: 48px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 0 15px;
  border: 1px solid #cfd7e1;
  border-radius: 7px;
  color: #8691a0;
  background: #fff;
  box-shadow: 0 1px 2px rgb(16 24 35 / 3%);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.docs-search:focus-within {
  border-color: var(--docs-blue);
  box-shadow: 0 0 0 3px rgb(47 91 234 / 10%);
}

.docs-search.is-compact {
  min-height: 40px;
  background: #f7f8fa;
}

.docs-search > svg {
  width: 18px;
  height: 18px;
}

.docs-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--docs-ink);
  background: transparent;
  font: inherit;
  font-size: 14px;
}

.docs-search input::placeholder {
  color: #8994a3;
}

.docs-search kbd {
  min-width: 46px;
  padding: 2px 7px;
  border: 1px solid var(--docs-line);
  border-bottom-color: #c2cad4;
  border-radius: 4px;
  color: #717d8b;
  background: #fff;
  font: 11px/18px "Manrope", sans-serif;
  text-align: center;
}

.docs-search-results {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 100;
  max-height: 360px;
  overflow-y: auto;
  padding: 7px;
  border: 1px solid var(--docs-line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 20px 50px rgb(16 24 35 / 16%);
}

.docs-search-results a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 16px;
  padding: 10px 11px;
  border-radius: 5px;
}

.docs-search-results a:hover,
.docs-search-results a.is-selected {
  background: var(--docs-blue-soft);
}

.docs-search-results strong {
  color: var(--docs-ink);
  font-size: 13px;
}

.docs-search-results span {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: #8390a0;
  font-size: 11px;
}

.docs-search-results small {
  color: var(--docs-muted);
  font-size: 12px;
}

.docs-search-results p {
  margin: 0;
  padding: 12px;
  color: var(--docs-muted);
  font-size: 13px;
}

.docs-icon-button {
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--docs-line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.docs-icon-button svg {
  width: 20px;
}

.docs-mobile-toggle,
.docs-mobile-nav {
  display: none;
}

.docs-home-hero {
  border-bottom: 1px solid var(--docs-line);
  background:
    linear-gradient(90deg, rgb(222 228 235 / 38%) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(rgb(222 228 235 / 38%) 1px, transparent 1px) 0 0 / 64px 64px,
    #fff;
}

.docs-home-hero-inner {
  min-height: 550px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 0.9fr);
  align-items: center;
  gap: clamp(56px, 7vw, 112px);
  padding-block: 74px 66px;
}

.docs-eyebrow,
.docs-article-label,
.docs-section-heading > div > span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--docs-blue);
  font: 700 11px/1.4 "Manrope", sans-serif;
  text-transform: uppercase;
}

.docs-eyebrow svg {
  width: 17px;
  height: 17px;
}

.docs-home-copy h1 {
  max-width: 700px;
  margin: 22px 0 22px;
  color: var(--docs-ink);
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.12;
  letter-spacing: 0;
}

.docs-home-copy > p {
  max-width: 620px;
  margin-bottom: 30px;
  color: #4e5a69;
  font-size: 18px;
  line-height: 1.8;
}

.docs-home-copy > .docs-search {
  max-width: 590px;
}

.docs-home-actions,
.docs-article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.docs-home-actions {
  margin-top: 20px;
}

.docs-home-actions .btn,
.docs-article-actions .btn {
  min-height: 45px;
}

.docs-home-actions svg,
.docs-article-actions svg {
  width: 17px;
  height: 17px;
}

.docs-secondary-button {
  border-color: #c8d1dc;
  background: #fff;
}

.docs-home-code {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #263746;
  border-radius: 7px;
  color: #dce7f0;
  background: var(--docs-code);
  box-shadow: 0 28px 60px rgb(13 25 37 / 16%);
}

.docs-home-code-head,
.docs-home-code-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.docs-home-code-head {
  min-height: 54px;
  padding: 0 20px;
  border-bottom: 1px solid #2a3b49;
  font: 700 11px/1 "Manrope", sans-serif;
}

.docs-home-code-head span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.docs-home-code-head i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--docs-teal-bright);
}

.docs-home-code-head small {
  color: #8498a8;
  font-size: 10px;
}

.docs-home-code .docs-code {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.docs-home-code .docs-code-toolbar {
  background: #101d29;
}

.docs-home-code .docs-code pre {
  min-height: 292px;
  max-height: 292px;
}

.docs-home-code-result {
  min-height: 55px;
  gap: 20px;
  padding: 0 20px;
  border-top: 1px solid #2a3b49;
  background: #101d29;
}

.docs-home-code-result span {
  color: #8396a5;
  font: 700 10px/1 "Manrope", sans-serif;
}

.docs-home-code-result code {
  color: var(--docs-teal-bright);
  font-size: 12px;
}

.docs-code {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #263746;
  border-radius: 7px;
  background: var(--docs-code);
  box-shadow: 0 10px 30px rgb(13 25 37 / 7%);
}

.docs-code-toolbar {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 10px 0 12px;
  border-bottom: 1px solid #2a3b49;
  background: var(--docs-code-raised);
}

.docs-code-toolbar > div {
  min-width: 0;
  display: flex;
  overflow-x: auto;
}

.docs-code-toolbar button {
  border: 0;
  color: #8fa1b1;
  background: transparent;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}

.docs-code-toolbar [data-code-tab] {
  min-height: 45px;
  padding: 0 11px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.docs-code-toolbar [data-code-tab]:hover,
.docs-code-toolbar [data-code-tab].is-active {
  color: #fff;
}

.docs-code-toolbar [data-code-tab].is-active {
  border-bottom-color: var(--docs-teal-bright);
}

.docs-copy-button {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border: 1px solid #384b5b !important;
  border-radius: 5px;
  white-space: nowrap;
}

.docs-copy-button:hover {
  color: #fff;
  background: #1c3041;
}

.docs-copy-button svg {
  width: 14px;
  height: 14px;
}

.docs-code pre {
  margin: 0;
  min-height: 250px;
  max-width: 100%;
  overflow: auto;
  padding: 22px 24px 26px;
  color: #dce7f0;
  background: var(--docs-code);
  font: 13.5px/1.78 "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  tab-size: 2;
}

.docs-code pre[hidden] {
  display: none;
}

.docs-home-band {
  border-bottom: 1px solid var(--docs-line);
  background: #f7f8fa;
}

.docs-home-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.docs-home-band-grid a {
  position: relative;
  min-height: 112px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 4px 13px;
  padding: 24px 27px;
  border-left: 1px solid var(--docs-line);
  transition: background 160ms ease;
}

.docs-home-band-grid a:last-child {
  border-right: 1px solid var(--docs-line);
}

.docs-home-band-grid a:hover {
  background: #fff;
}

.docs-home-band-grid a > span {
  grid-row: 1 / span 2;
  color: var(--docs-blue);
  font: 700 11px/1.4 "Manrope", sans-serif;
}

.docs-home-band-grid strong {
  color: var(--docs-ink);
  font-size: 15px;
}

.docs-home-band-grid small {
  color: var(--docs-muted);
  font-size: 12px;
}

.docs-home-band-grid svg {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  width: 17px;
  color: #7d8997;
}

.docs-home-section {
  padding-block: 88px;
}

.docs-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 500px);
  align-items: end;
  gap: 48px;
  margin-bottom: 36px;
}

.docs-section-heading h2 {
  margin: 9px 0 0;
  color: var(--docs-ink);
  font-size: 34px;
  line-height: 1.25;
}

.docs-section-heading > p {
  margin: 0;
  color: var(--docs-muted);
  font-size: 15px;
  line-height: 1.8;
}

.docs-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--docs-line);
  border-left: 1px solid var(--docs-line);
}

.docs-product-item {
  position: relative;
  min-height: 188px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  padding: 26px;
  border-right: 1px solid var(--docs-line);
  border-bottom: 1px solid var(--docs-line);
  background: #fff;
  transition: background 160ms ease, box-shadow 160ms ease;
}

.docs-product-item:hover {
  z-index: 1;
  background: #f9fbff;
  box-shadow: inset 0 -3px var(--docs-blue);
}

.docs-product-item.is-featured {
  background: #f7f9ff;
}

.docs-product-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cad6ff;
  border-radius: 6px;
  color: var(--docs-blue);
  background: var(--docs-blue-soft);
}

.docs-product-icon svg {
  width: 20px;
  height: 20px;
}

.docs-product-item small {
  color: var(--docs-blue);
  font-size: 11px;
  font-weight: 700;
}

.docs-product-item strong {
  display: block;
  margin: 5px 0 7px;
  color: var(--docs-ink);
  font-size: 17px;
}

.docs-product-item p {
  margin: 0;
  color: var(--docs-muted);
  font-size: 13px;
  line-height: 1.7;
}

.docs-product-item > svg {
  width: 18px;
  color: #8390a0;
}

.docs-home-workflow {
  border-block: 1px solid var(--docs-line);
  background: var(--docs-soft);
}

.docs-workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #cfd7df;
  border-left: 1px solid #cfd7df;
}

.docs-workflow-grid article {
  position: relative;
  min-height: 220px;
  padding: 30px;
  border-right: 1px solid #cfd7df;
  border-bottom: 1px solid #cfd7df;
  background: transparent;
}

.docs-workflow-grid article > span {
  position: absolute;
  top: 27px;
  right: 27px;
  color: #8a96a5;
  font: 700 11px/1 "Manrope", sans-serif;
}

.docs-workflow-grid article > svg {
  width: 25px;
  height: 25px;
  color: var(--docs-teal);
}

.docs-workflow-grid h3 {
  margin: 26px 0 9px;
  font-size: 18px;
}

.docs-workflow-grid p {
  margin: 0;
  color: var(--docs-muted);
  font-size: 13px;
  line-height: 1.75;
}

.docs-guide-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--docs-line);
}

.docs-guide-list > a {
  min-height: 114px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--docs-line);
}

.docs-guide-list > a:nth-child(odd) {
  border-right: 1px solid var(--docs-line);
}

.docs-guide-list > a:hover {
  background: #f8faff;
}

.docs-guide-list > a > span {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9d4df;
  border-radius: 6px;
  color: var(--docs-teal);
}

.docs-guide-list > a > span svg {
  width: 20px;
}

.docs-guide-list strong {
  color: var(--docs-ink);
  font-size: 15px;
}

.docs-guide-list p {
  margin: 5px 0 0;
  color: var(--docs-muted);
  font-size: 13px;
}

.docs-guide-list > a > svg {
  width: 18px;
  color: #7d8998;
}

.docs-layout {
  position: relative;
  display: grid;
  grid-template-columns: 236px minmax(0, 820px) 190px;
  justify-content: space-between;
  align-items: start;
  gap: 44px;
  padding-block: 46px 100px;
}

.docs-sidebar,
.docs-toc {
  position: sticky;
  top: 114px;
  max-height: calc(100vh - 138px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.docs-sidebar {
  padding-right: 20px;
  border-right: 1px solid var(--docs-line);
}

.docs-sidebar-group {
  margin-bottom: 28px;
}

.docs-sidebar-group > span {
  display: block;
  margin: 0 0 9px 10px;
  color: #8a96a5;
  font-size: 11px;
  font-weight: 700;
}

.docs-sidebar-group > a {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  border-radius: 5px;
  color: #4b5766;
  font-size: 13px;
  font-weight: 560;
}

.docs-sidebar-group > a:hover {
  color: var(--docs-ink);
  background: #f3f5f8;
}

.docs-sidebar-group > a.is-active {
  color: var(--docs-blue);
  background: var(--docs-blue-soft);
  font-weight: 700;
}

.docs-sidebar-group svg {
  width: 16px;
  height: 16px;
  color: #7b8999;
}

.docs-sidebar-group a.is-active svg {
  color: var(--docs-blue);
}

.docs-sidebar-support {
  margin: 34px 0 8px;
  padding: 18px;
  border: 1px solid var(--docs-line);
  border-radius: 7px;
  background: #f7f9fa;
}

.docs-sidebar-support > span {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
  border-radius: 5px;
  color: var(--docs-teal);
  background: #e7f6f3;
}

.docs-sidebar-support svg {
  width: 17px;
}

.docs-sidebar-support strong {
  color: var(--docs-ink);
  font-size: 13px;
}

.docs-sidebar-support p {
  margin: 5px 0 12px;
  color: var(--docs-muted);
  font-size: 12px;
  line-height: 1.65;
}

.docs-sidebar-support a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--docs-blue);
  font-size: 12px;
  font-weight: 700;
}

.docs-toc {
  padding-left: 2px;
}

.docs-toc > strong {
  color: var(--docs-ink);
  font-size: 12px;
}

.docs-toc nav {
  margin: 12px 0 24px;
  padding-left: 12px;
  border-left: 1px solid var(--docs-line);
}

.docs-toc nav a {
  display: block;
  padding: 6px 0 6px 12px;
  color: #748090;
  font-size: 12px;
  line-height: 1.45;
}

.docs-toc nav a:hover,
.docs-toc nav a.is-active {
  color: var(--docs-blue);
}

.docs-toc nav a.is-active {
  box-shadow: -2px 0 var(--docs-blue);
}

.docs-toc-console {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid var(--docs-line);
  border-radius: 5px;
  color: var(--docs-ink);
  font-size: 12px;
  font-weight: 650;
}

.docs-toc-console svg {
  width: 15px;
}

.docs-sidebar-open {
  display: none;
}

.docs-article {
  min-width: 0;
  color: #394554;
  font-size: 16px;
  line-height: 1.82;
}

.docs-article p {
  margin-bottom: 20px;
}

.docs-article a:not(.btn) {
  color: var(--docs-blue);
}

.docs-article > section {
  margin-top: 70px;
  scroll-margin-top: 106px;
}

.docs-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: #748090;
  font-size: 12px;
}

.docs-breadcrumb a {
  color: #748090 !important;
}

.docs-breadcrumb a:hover {
  color: var(--docs-blue) !important;
}

.docs-breadcrumb svg {
  width: 13px;
  height: 13px;
}

.docs-article-header {
  padding-bottom: 42px;
  border-bottom: 1px solid var(--docs-line);
}

.docs-article-header h1 {
  max-width: 760px;
  margin: 14px 0 18px;
  color: var(--docs-ink);
  font-size: 46px;
  line-height: 1.18;
}

.docs-article-header > p {
  max-width: 720px;
  margin-bottom: 22px;
  color: #596576;
  font-size: 18px;
  line-height: 1.75;
}

.docs-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: #6d7887;
  font-size: 12px;
}

.docs-article-meta span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.docs-article-meta svg {
  width: 15px;
  height: 15px;
  color: var(--docs-teal);
}

.docs-product-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
  border-top: 1px solid var(--docs-line);
  border-left: 1px solid var(--docs-line);
}

.docs-product-facts > span {
  min-height: 83px;
  padding: 16px;
  border-right: 1px solid var(--docs-line);
  border-bottom: 1px solid var(--docs-line);
}

.docs-product-facts small,
.docs-product-facts strong {
  display: block;
}

.docs-product-facts small {
  margin-bottom: 5px;
  color: #7c8795;
  font-size: 11px;
}

.docs-product-facts strong {
  color: var(--docs-ink);
  font-size: 13px;
}

.docs-article-actions {
  margin-top: 22px;
}

.docs-section-title {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  margin-bottom: 20px;
}

.docs-section-title > span,
.docs-step-number {
  color: var(--docs-blue);
  font: 700 12px/1.5 "Manrope", sans-serif;
}

.docs-section-title small {
  display: block;
  margin-bottom: 5px;
  color: #84909f;
  font: 700 10px/1.4 "Manrope", sans-serif;
}

.docs-section-title h2,
.docs-procedure h2 {
  margin: 0;
  color: var(--docs-ink);
  font-size: 29px;
  line-height: 1.3;
}

.docs-procedure {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
}

.docs-procedure > div {
  min-width: 0;
}

.docs-procedure > div > p:first-of-type {
  margin-top: 13px;
}

.docs-callout {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--docs-blue);
  background: #f2f5ff;
}

.docs-callout > svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--docs-blue);
}

.docs-callout strong {
  display: block;
  margin-bottom: 3px;
  color: var(--docs-ink);
  font-size: 14px;
}

.docs-callout p {
  margin: 0;
  color: #5c6878;
  font-size: 13px;
  line-height: 1.7;
}

.docs-callout.is-important {
  margin-top: 34px;
  border-left-color: #d19027;
  background: #fff8eb;
}

.docs-callout.is-important > svg,
.docs-callout.is-warning > svg {
  color: #a76f19;
}

.docs-callout.is-warning {
  border-left-color: #d19027;
  background: #fff8eb;
}

.docs-callout.is-security {
  border-left-color: var(--docs-teal);
  background: #edf8f6;
}

.docs-callout.is-security > svg {
  color: var(--docs-teal);
}

.docs-decision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 24px 0 16px;
  border-top: 1px solid var(--docs-line);
  border-left: 1px solid var(--docs-line);
}

.docs-decision-grid a {
  min-height: 152px;
  padding: 20px;
  border-right: 1px solid var(--docs-line);
  border-bottom: 1px solid var(--docs-line);
  color: inherit !important;
}

.docs-decision-grid a:hover {
  background: #f7f9ff;
}

.docs-decision-grid strong,
.docs-decision-grid span,
.docs-decision-grid small {
  display: block;
}

.docs-decision-grid strong {
  margin-bottom: 8px;
  color: var(--docs-blue);
  font-size: 11px;
}

.docs-decision-grid span {
  margin-bottom: 8px;
  color: var(--docs-ink);
  font-size: 15px;
  font-weight: 700;
}

.docs-decision-grid small {
  color: var(--docs-muted);
  font-size: 12px;
  line-height: 1.6;
}

.docs-inline-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

.docs-inline-action svg {
  width: 15px;
}

.docs-number-list {
  margin: 24px 0;
  padding: 0;
  border-top: 1px solid var(--docs-line);
  list-style: none;
}

.docs-number-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--docs-line);
}

.docs-number-list li > span {
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cad5df;
  border-radius: 50%;
  color: var(--docs-blue);
  font-size: 11px;
  font-weight: 700;
}

.docs-number-list strong {
  color: var(--docs-ink);
  font-size: 14px;
}

.docs-number-list p {
  margin: 4px 0 0;
  color: var(--docs-muted);
  font-size: 13px;
}

.docs-compare-table {
  margin: 24px 0;
  overflow-x: auto;
  border-top: 1px solid var(--docs-line);
  border-left: 1px solid var(--docs-line);
}

.docs-compare-table > div {
  min-width: 650px;
  display: grid;
  grid-template-columns: 1.05fr 1.25fr 1.4fr;
}

.docs-compare-table > div > * {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 13px 16px;
  border-right: 1px solid var(--docs-line);
  border-bottom: 1px solid var(--docs-line);
  font-size: 13px;
}

.docs-compare-table .docs-compare-head > span {
  min-height: 42px;
  color: #657180;
  background: #f3f5f7;
  font-size: 11px;
  font-weight: 700;
}

.docs-compare-table strong {
  color: var(--docs-ink);
}

.docs-result {
  margin-top: 18px;
  padding: 17px 20px;
  border: 1px solid var(--docs-line);
  background: #f7f9fa;
}

.docs-result > span {
  color: #778391;
  font-size: 11px;
  font-weight: 700;
}

.docs-result > code {
  display: block;
  margin-top: 7px;
  color: var(--docs-teal);
  font-size: 14px;
}

.docs-result p {
  margin: 8px 0 0;
  color: var(--docs-muted);
  font-size: 12px;
}

.docs-fact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
  border-top: 1px solid var(--docs-line);
  border-left: 1px solid var(--docs-line);
}

.docs-fact-list > div {
  min-height: 142px;
  padding: 20px;
  border-right: 1px solid var(--docs-line);
  border-bottom: 1px solid var(--docs-line);
}

.docs-fact-list strong {
  color: var(--docs-ink);
  font-size: 14px;
}

.docs-fact-list p {
  margin: 8px 0 0;
  color: var(--docs-muted);
  font-size: 12px;
  line-height: 1.65;
}

.docs-fact-list code {
  padding: 1px 5px;
  border: 1px solid var(--docs-line);
  border-radius: 3px;
  color: #243142;
  background: #fff;
}

.docs-troubleshooting {
  margin-top: 24px;
  border-top: 1px solid var(--docs-line);
}

.docs-troubleshooting details {
  border-bottom: 1px solid var(--docs-line);
}

.docs-troubleshooting summary {
  min-height: 62px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  color: var(--docs-ink);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.docs-troubleshooting summary::-webkit-details-marker {
  display: none;
}

.docs-troubleshooting summary > svg {
  grid-column: 3;
  width: 17px;
  transition: transform 160ms ease;
}

.docs-troubleshooting details[open] summary > svg {
  transform: rotate(180deg);
}

.docs-troubleshooting details p {
  max-width: 720px;
  margin: -4px 0 19px;
  color: #5d6978;
  font-size: 13px;
}

.docs-pool-comparison,
.docs-auth-flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
  border-top: 1px solid var(--docs-line);
  border-left: 1px solid var(--docs-line);
}

.docs-pool-comparison article {
  min-height: 280px;
  padding: 24px;
  border-right: 1px solid var(--docs-line);
  border-bottom: 1px solid var(--docs-line);
}

.docs-pool-comparison article.is-recommended {
  background: #f7f9ff;
}

.docs-pool-comparison article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.docs-pool-comparison article > div > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--docs-ink);
  font-size: 13px;
  font-weight: 700;
}

.docs-pool-comparison article > div svg {
  width: 18px;
  color: var(--docs-teal);
}

.docs-pool-comparison article > div small {
  color: var(--docs-blue);
  font-size: 10px;
  font-weight: 700;
}

.docs-pool-comparison article > strong {
  display: block;
  margin-bottom: 10px;
  color: var(--docs-ink);
  font-size: 18px;
}

.docs-pool-comparison article > p,
.docs-pool-comparison li {
  color: var(--docs-muted);
  font-size: 13px;
}

.docs-pool-comparison ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.docs-region-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 24px 0;
  border-top: 1px solid var(--docs-line);
  border-left: 1px solid var(--docs-line);
}

.docs-region-grid > span {
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 13px 16px;
  border-right: 1px solid var(--docs-line);
  border-bottom: 1px solid var(--docs-line);
}

.docs-region-grid strong {
  color: var(--docs-ink);
  font-size: 13px;
}

.docs-region-grid small {
  margin-top: 2px;
  color: var(--docs-muted);
  font-size: 10px;
}

.docs-auth-flow article {
  min-height: 172px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 15px;
  padding: 22px;
  border-right: 1px solid var(--docs-line);
  border-bottom: 1px solid var(--docs-line);
}

.docs-auth-flow article > svg {
  width: 23px;
  color: var(--docs-teal);
}

.docs-auth-flow strong {
  color: var(--docs-ink);
  font-size: 14px;
}

.docs-auth-flow p {
  margin: 5px 0 12px;
  color: var(--docs-muted);
  font-size: 12px;
}

.docs-auth-flow code {
  display: block;
  overflow-x: auto;
  padding: 8px 10px;
  color: #dae6ef;
  background: var(--docs-code);
  font-size: 11px;
}

.docs-quiet-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 15px;
  color: var(--docs-muted);
  font-size: 12px;
}

.docs-quiet-note svg {
  width: 15px;
  flex: 0 0 15px;
  margin-top: 5px;
  color: var(--docs-blue);
}

.docs-username-anatomy {
  margin: 24px 0;
  overflow-x: auto;
  padding: 24px;
  color: #dbe7f0;
  background: var(--docs-code);
}

.docs-username-label {
  display: block;
  margin-bottom: 14px;
  color: #8fa2b2;
  font-size: 11px;
  font-weight: 700;
}

.docs-username-anatomy > code {
  display: block;
  min-width: 500px;
  font-size: 17px;
}

.docs-username-anatomy code b {
  color: #fff;
}

.docs-username-anatomy code em {
  color: #79a0ff;
  font-style: normal;
}

.docs-username-anatomy code strong {
  color: var(--docs-teal-bright);
}

.docs-username-anatomy > div {
  min-width: 500px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.4fr 0.8fr;
  gap: 8px;
  margin-top: 18px;
}

.docs-username-anatomy.is-residential > div {
  grid-template-columns: 1.1fr 1.8fr 0.8fr;
}

.docs-username-anatomy > div span {
  padding-top: 10px;
  border-top: 1px solid #344554;
}

.docs-username-anatomy > div b,
.docs-username-anatomy > div small {
  display: block;
}

.docs-username-anatomy > div b {
  color: #dce7f0;
  font-size: 11px;
}

.docs-username-anatomy > div small {
  color: #8295a5;
  font-size: 10px;
}

.docs-format-table {
  margin: 22px 0;
  border-top: 1px solid var(--docs-line);
}

.docs-format-table > div {
  min-height: 54px;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid var(--docs-line);
}

.docs-format-table code {
  color: var(--docs-blue);
  font-size: 12px;
  font-weight: 700;
}

.docs-format-table span {
  overflow-x: auto;
  color: var(--docs-ink);
  font: 12px/1.5 "SFMono-Regular", Consolas, monospace;
}

.docs-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
  border-top: 1px solid var(--docs-line);
  border-left: 1px solid var(--docs-line);
}

.docs-checklist > div {
  min-height: 108px;
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  gap: 13px;
  padding: 20px;
  border-right: 1px solid var(--docs-line);
  border-bottom: 1px solid var(--docs-line);
}

.docs-checklist > div > svg {
  width: 19px;
  color: var(--docs-teal);
}

.docs-checklist strong,
.docs-checklist small {
  display: block;
}

.docs-checklist strong {
  color: var(--docs-ink);
  font-size: 13px;
}

.docs-checklist small {
  margin-top: 5px;
  color: var(--docs-muted);
  font-size: 11px;
  line-height: 1.6;
}

.docs-example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 25px;
  border-top: 1px solid var(--docs-line);
  border-left: 1px solid var(--docs-line);
}

.docs-example-card {
  min-height: 190px;
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 20px;
  grid-template-rows: auto auto auto 1fr;
  column-gap: 14px;
  padding: 24px;
  border-right: 1px solid var(--docs-line);
  border-bottom: 1px solid var(--docs-line);
  color: inherit !important;
  background: #fff;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.docs-example-card:hover {
  background: #f8faff;
}

.docs-example-icon {
  width: 42px;
  height: 42px;
  grid-row: 1 / span 3;
  display: grid;
  place-items: center;
  color: var(--docs-blue);
  background: #eef3ff;
  border: 1px solid #d9e3ff;
}

.docs-example-icon svg {
  width: 20px;
}

.docs-example-card > small {
  color: var(--docs-blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.docs-example-card > strong {
  margin-top: 4px;
  color: var(--docs-ink);
  font-size: 17px;
}

.docs-example-card > p {
  margin: 5px 0 0;
  color: var(--docs-muted);
  font-size: 12px;
}

.docs-example-card > code {
  grid-column: 2;
  align-self: end;
  margin-top: 18px;
  color: #536172;
  font-size: 11px;
}

.docs-example-card > svg {
  width: 17px;
  grid-column: 3;
  grid-row: 1 / span 4;
  align-self: center;
  color: #8794a4;
}

.docs-gateway-table {
  margin: 24px 0;
  overflow-x: auto;
  border-top: 1px solid var(--docs-line);
  border-left: 1px solid var(--docs-line);
}

.docs-gateway-table > div {
  min-width: 720px;
  display: grid;
  grid-template-columns: 1.15fr 1.65fr 0.85fr 1.5fr;
}

.docs-gateway-table > div > * {
  min-height: 57px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-right: 1px solid var(--docs-line);
  border-bottom: 1px solid var(--docs-line);
}

.docs-gateway-table .docs-gateway-head > span {
  min-height: 42px;
  color: #7d8997;
  background: #f6f8fb;
  font-size: 10px;
  font-weight: 800;
}

.docs-gateway-table span {
  color: var(--docs-ink);
  font-size: 12px;
}

.docs-gateway-table code {
  color: var(--docs-blue);
  font-size: 11px;
  font-weight: 700;
}

.docs-target-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  border-top: 1px solid var(--docs-line);
  border-left: 1px solid var(--docs-line);
}

.docs-target-grid article {
  min-height: 174px;
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  gap: 13px;
  padding: 22px;
  border-right: 1px solid var(--docs-line);
  border-bottom: 1px solid var(--docs-line);
}

.docs-target-grid article > svg {
  width: 20px;
  color: var(--docs-teal);
}

.docs-target-grid strong {
  color: var(--docs-ink);
  font-size: 14px;
}

.docs-target-grid p {
  margin: 5px 0 14px;
  color: var(--docs-muted);
  font-size: 12px;
  line-height: 1.65;
}

.docs-target-grid code {
  overflow-wrap: anywhere;
  color: var(--docs-blue);
  font-size: 10px;
}

.docs-run-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 0;
  border-top: 1px solid var(--docs-line);
  border-left: 1px solid var(--docs-line);
}

.docs-run-summary > span {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border-right: 1px solid var(--docs-line);
  border-bottom: 1px solid var(--docs-line);
}

.docs-run-summary small,
.docs-run-summary strong,
.docs-run-summary code {
  display: block;
}

.docs-run-summary small {
  color: #8793a1;
  font-size: 10px;
  font-weight: 800;
}

.docs-run-summary strong {
  margin-top: 7px;
  color: var(--docs-ink);
  font-size: 14px;
}

.docs-run-summary code {
  overflow: hidden;
  margin-top: 3px;
  color: var(--docs-blue);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.docs-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
  border-top: 1px solid var(--docs-line);
  border-left: 1px solid var(--docs-line);
}

.docs-check-grid > div {
  min-height: 94px;
  display: grid;
  grid-template-columns: 24px 21px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 19px;
  border-right: 1px solid var(--docs-line);
  border-bottom: 1px solid var(--docs-line);
}

.docs-check-grid span {
  color: #9aa6b3;
  font-size: 9px;
  font-weight: 800;
}

.docs-check-grid svg {
  width: 18px;
  color: var(--docs-teal);
}

.docs-check-grid strong {
  color: var(--docs-ink);
  font-size: 12px;
  line-height: 1.55;
}

.docs-source-links {
  margin-top: 22px;
  border-top: 1px solid var(--docs-line);
}

.docs-source-links > a {
  min-height: 68px;
  display: grid;
  grid-template-columns: 32px minmax(150px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 13px;
  padding: 13px 4px;
  border-bottom: 1px solid var(--docs-line);
  color: inherit !important;
}

.docs-source-links > a:hover strong {
  color: var(--docs-blue);
}

.docs-source-links > a > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--docs-blue);
  background: #eef3ff;
}

.docs-source-links svg {
  width: 15px;
}

.docs-source-links strong {
  color: var(--docs-ink);
  font-size: 12px;
}

.docs-source-links code {
  overflow: hidden;
  color: var(--docs-muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.docs-next {
  margin-top: 76px;
  padding-top: 20px;
  border-top: 1px solid var(--docs-line);
}

.docs-next > span {
  display: block;
  margin-bottom: 10px;
  color: #8994a2;
  font-size: 11px;
  font-weight: 700;
}

.docs-next > a {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 18px;
  border: 1px solid var(--docs-line);
  border-radius: 6px;
  color: inherit !important;
}

.docs-next > a:hover {
  border-color: #b7c3d0;
  background: #f8faff;
}

.docs-next small,
.docs-next strong {
  display: block;
}

.docs-next small {
  color: var(--docs-blue);
  font-size: 10px;
}

.docs-next strong {
  color: var(--docs-ink);
  font-size: 14px;
}

.docs-next svg {
  width: 18px;
  color: #7a8796;
}

.docs-port-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 24px 0;
  border-top: 1px solid var(--docs-line);
  border-left: 1px solid var(--docs-line);
}

.docs-port-map > div {
  min-height: 124px;
  padding: 21px;
  border-right: 1px solid var(--docs-line);
  border-bottom: 1px solid var(--docs-line);
}

.docs-port-map small,
.docs-port-map strong,
.docs-port-map span {
  display: block;
}

.docs-port-map small {
  color: var(--docs-blue);
  font-size: 10px;
  font-weight: 700;
}

.docs-port-map strong {
  margin: 9px 0 5px;
  overflow-x: auto;
  color: var(--docs-ink);
  font: 700 16px/1.5 "SFMono-Regular", Consolas, monospace;
}

.docs-port-map span {
  color: var(--docs-muted);
  font-size: 11px;
  line-height: 1.6;
}

.docs-allocation-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
  border-top: 1px solid var(--docs-line);
  border-left: 1px solid var(--docs-line);
}

.docs-allocation-flow article {
  position: relative;
  min-height: 190px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-content: center;
  gap: 15px;
  padding: 25px;
  border-right: 1px solid var(--docs-line);
  border-bottom: 1px solid var(--docs-line);
}

.docs-allocation-flow article > span {
  position: absolute;
  top: 17px;
  right: 18px;
  color: #8a96a5;
  font: 700 10px/1 "Manrope", sans-serif;
}

.docs-allocation-flow article > svg {
  width: 23px;
  color: var(--docs-teal);
}

.docs-allocation-flow strong {
  color: var(--docs-ink);
  font-size: 14px;
}

.docs-allocation-flow p {
  margin: 6px 0 0;
  color: var(--docs-muted);
  font-size: 12px;
  line-height: 1.65;
}

.docs-static-result > code {
  overflow-x: auto;
  white-space: nowrap;
}

.docs-boundary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
  border-top: 1px solid var(--docs-line);
  border-left: 1px solid var(--docs-line);
}

.docs-boundary-grid > div {
  min-height: 118px;
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 14px;
  padding: 21px;
  border-right: 1px solid var(--docs-line);
  border-bottom: 1px solid var(--docs-line);
  background: #fafbfc;
}

.docs-boundary-grid > div.is-supported {
  background: #edf8f6;
}

.docs-boundary-grid > div > svg {
  width: 21px;
  color: #8b6670;
}

.docs-boundary-grid > div.is-supported > svg {
  color: var(--docs-teal);
}

.docs-boundary-grid strong,
.docs-boundary-grid small {
  display: block;
}

.docs-boundary-grid strong {
  color: var(--docs-ink);
  font-size: 13px;
}

.docs-boundary-grid small {
  margin-top: 5px;
  color: var(--docs-muted);
  font-size: 11px;
  line-height: 1.6;
}

.docs-country-details {
  margin-top: 24px;
  border: 1px solid var(--docs-line);
}

.docs-country-details summary {
  min-height: 62px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: 15px;
  padding: 0 18px;
  color: var(--docs-ink);
  background: #f7f9fa;
  cursor: pointer;
  list-style: none;
}

.docs-country-details summary::-webkit-details-marker {
  display: none;
}

.docs-country-details summary > span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
}

.docs-country-details summary > span svg,
.docs-country-details summary > svg {
  width: 17px;
  height: 17px;
}

.docs-country-details summary > span svg {
  color: var(--docs-teal);
}

.docs-country-details summary > strong {
  color: var(--docs-blue);
  font-size: 12px;
}

.docs-country-details summary > svg {
  color: #7d8997;
  transition: transform 160ms ease;
}

.docs-country-details[open] summary > svg {
  transform: rotate(180deg);
}

.docs-country-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 8px 18px 18px;
  background: #fff;
}

.docs-country-grid span {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 9px;
  border-bottom: 1px solid #edf0f3;
  color: #526071;
  font-size: 12px;
}

.docs-article p > code,
.docs-quiet-note code,
.docs-troubleshooting p code {
  padding: 1px 5px;
  border: 1px solid #d9e0e8;
  border-radius: 3px;
  color: #243142;
  background: #f7f9fa;
  font-size: 0.88em;
}

.docs-footer {
  color: #98a8b7;
  background: var(--docs-code);
}

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

.developer-docs .docs-footer-brand {
  min-width: 0;
  opacity: 0.96;
}

.developer-docs .docs-footer-brand .brand-wordmark img {
  filter: brightness(0) invert(1);
}

.docs-footer-inner > div:first-child > p {
  max-width: 520px;
  margin: 16px 0 0;
  color: #91a2b1;
  font-size: 13px;
}

.docs-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 28px;
  color: #c9d4dd;
  font-size: 13px;
}

.docs-footer-links a:hover {
  color: #fff;
}

.docs-footer-bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #263746;
  color: #748898;
  font-size: 11px;
}

@media (max-width: 1240px) {
  .docs-header-inner {
    grid-template-columns: auto minmax(260px, 420px) auto;
    gap: 18px;
  }

  .docs-topnav {
    gap: 13px;
  }

  .docs-layout {
    grid-template-columns: 220px minmax(0, 820px);
    justify-content: center;
  }

  .docs-toc {
    display: none;
  }
}

@media (max-width: 1080px) {
  .docs-header-inner {
    grid-template-columns: auto minmax(280px, 1fr) 40px;
  }

  .docs-topnav {
    display: none;
  }

  .docs-mobile-toggle {
    display: flex;
  }

  .docs-mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 8px 32px 16px;
    border-top: 1px solid var(--docs-line);
    border-bottom: 1px solid var(--docs-line);
    background: #fff;
    box-shadow: 0 16px 34px rgb(16 24 35 / 12%);
  }

  .docs-mobile-nav.is-open {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .docs-mobile-nav a {
    padding: 11px 12px;
    color: var(--docs-ink);
    font-size: 13px;
    font-weight: 600;
  }

  .docs-home-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    gap: 40px;
  }

  .docs-home-copy h1 {
    font-size: 45px;
  }
}

@media (max-width: 900px) {
  .docs-frame {
    width: min(100% - 40px, var(--docs-frame));
  }

  .docs-home-hero-inner {
    grid-template-columns: 1fr;
    padding-block: 60px;
  }

  .docs-home-copy {
    max-width: 700px;
  }

  .docs-home-code {
    width: min(100%, 700px);
  }

  .docs-home-band-grid,
  .docs-workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .docs-home-band-grid a:nth-child(3) {
    border-left: 1px solid var(--docs-line);
  }

  .docs-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .docs-layout {
    display: block;
    width: min(100% - 48px, 820px);
    padding-top: 28px;
  }

  .docs-sidebar-open {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 0 12px;
    border: 1px solid var(--docs-line);
    border-radius: 5px;
    color: var(--docs-ink);
    background: #fff;
    font-size: 13px;
    font-weight: 650;
    cursor: pointer;
  }

  .docs-sidebar-open svg {
    width: 16px;
  }

  .docs-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: min(330px, 88vw);
    max-height: none;
    overflow-y: auto;
    padding: 28px 22px;
    border-right: 1px solid var(--docs-line);
    background: #fff;
    box-shadow: 20px 0 50px rgb(16 24 35 / 18%);
    transform: translateX(-105%);
    transition: transform 200ms ease;
  }

  .docs-sidebar.is-open {
    transform: translateX(0);
  }

  .docs-sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    border: 0;
    background: rgb(13 25 37 / 42%);
  }

  .docs-sidebar-overlay.is-open {
    display: block;
  }

  body.docs-sidebar-active {
    overflow: hidden;
  }
}

@media (max-width: 680px) {
  .docs-frame {
    width: min(100% - 28px, var(--docs-frame));
  }

  .docs-utility {
    display: none;
  }

  .docs-header-inner {
    min-height: 62px;
    grid-template-columns: minmax(0, 1fr) 40px;
    gap: 12px;
  }

  .docs-header-inner > .docs-search {
    display: none;
  }

  .docs-brand-divider {
    height: 24px;
    margin-inline: 11px;
  }

  .docs-product-name {
    font-size: 13px;
  }

  .docs-mobile-nav {
    padding-inline: 14px;
  }

  .docs-mobile-nav.is-open {
    grid-template-columns: repeat(2, 1fr);
  }

  .docs-home-hero-inner {
    min-height: auto;
    padding-block: 48px 42px;
  }

  .docs-home-copy h1 {
    margin-block: 18px;
    font-size: 38px;
    line-height: 1.15;
  }

  .docs-home-copy > p {
    font-size: 16px;
  }

  .docs-search {
    grid-template-columns: 18px minmax(0, 1fr);
  }

  .docs-search kbd {
    display: none;
  }

  .docs-home-actions .btn {
    flex: 1 1 100%;
  }

  .docs-home-code .docs-code pre {
    min-height: 260px;
    max-height: 260px;
  }

  .docs-code pre {
    padding: 19px 18px 22px;
    font-size: 13px;
  }

  .docs-copy-button span {
    display: none;
  }

  .docs-home-band-grid,
  .docs-product-grid,
  .docs-workflow-grid,
  .docs-guide-list,
  .docs-section-heading,
  .docs-decision-grid,
  .docs-pool-comparison,
  .docs-auth-flow,
  .docs-fact-list,
  .docs-checklist,
  .docs-example-grid,
  .docs-target-grid,
  .docs-run-summary,
  .docs-check-grid,
  .docs-port-map,
  .docs-allocation-flow,
  .docs-boundary-grid {
    grid-template-columns: 1fr;
  }

  .docs-home-band-grid a {
    min-height: 92px;
    border-right: 1px solid var(--docs-line);
  }

  .docs-home-band-grid a:nth-child(n) {
    border-left: 1px solid var(--docs-line);
  }

  .docs-home-section {
    padding-block: 64px;
  }

  .docs-section-heading {
    align-items: start;
    gap: 14px;
    margin-bottom: 27px;
  }

  .docs-section-heading h2 {
    font-size: 29px;
  }

  .docs-product-item {
    min-height: 156px;
  }

  .docs-workflow-grid article {
    min-height: 176px;
  }

  .docs-guide-list > a:nth-child(odd) {
    border-right: 0;
  }

  .docs-source-links > a {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .docs-source-links code {
    grid-column: 2;
  }

  .docs-layout {
    width: min(100% - 28px, 820px);
    padding-bottom: 72px;
  }

  .docs-article {
    font-size: 15.5px;
  }

  .docs-article > section {
    margin-top: 58px;
  }

  .docs-article-header h1 {
    font-size: 36px;
  }

  .docs-article-header > p {
    font-size: 16px;
  }

  .docs-section-title,
  .docs-procedure {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 6px;
  }

  .docs-section-title h2,
  .docs-procedure h2 {
    font-size: 25px;
  }

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

  .docs-region-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .docs-decision-grid a {
    min-height: 128px;
  }

  .docs-pool-comparison article {
    min-height: auto;
  }

  .docs-format-table > div {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .docs-country-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-inline: 12px;
  }

  .docs-country-details summary {
    padding-inline: 14px;
  }

  .docs-footer-inner {
    min-height: 230px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .docs-footer-links {
    justify-content: flex-start;
  }

  .docs-footer-bottom {
    min-height: 76px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .developer-docs *,
  .developer-docs *::before,
  .developer-docs *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
