:root {
  --docs-bg: #101211;
  --docs-surface: #171a18;
  --docs-surface-raised: #1d211e;
  --docs-line: rgba(255, 255, 255, .095);
  --docs-line-strong: rgba(255, 255, 255, .17);
  --docs-text: #f5f7f5;
  --docs-muted: #9ca59f;
  --docs-green: #1ed760;
  --docs-mint: #73f49f;
  --docs-blue: #63b8ff;
  --docs-amber: #ffbc52;
  --docs-red: #ff758a;
  --docs-code: #0b0d0c;
  --docs-radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--docs-bg);
  color: var(--docs-text);
}

button,
input {
  font: inherit;
}

.docs-page {
  position: relative;
  background:
    radial-gradient(circle at 52% -18%, rgba(30, 215, 96, .1), transparent 32rem),
    var(--docs-bg);
  color: var(--docs-text);
}

.docs-skip {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 11px 15px;
  border-radius: 10px;
  background: var(--docs-green);
  color: #041008;
  font-weight: 850;
  text-decoration: none;
  transform: translateY(-160%);
}

.docs-skip:focus {
  transform: none;
}

.docs-topbar {
  position: sticky;
  z-index: 120;
  top: 0;
  border-bottom: 1px solid var(--docs-line);
  background: rgba(16, 18, 17, .86);
  backdrop-filter: blur(18px);
}

.docs-topbar-inner {
  display: flex;
  width: min(1380px, calc(100% - 44px));
  min-height: 64px;
  margin: 0 auto;
  align-items: center;
  gap: 14px;
}

.docs-topbar-title {
  color: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.02em;
  text-decoration: none;
}

.docs-topbar-title span {
  margin-left: 8px;
  color: var(--docs-muted);
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.docs-topbar-spacer {
  flex: 1;
}

.docs-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cbd2cd;
  font-size: 11px;
  font-weight: 740;
}

.docs-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--docs-green);
  box-shadow: 0 0 0 5px rgba(30, 215, 96, .1), 0 0 18px rgba(30, 215, 96, .6);
}

.docs-top-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--docs-line);
  border-radius: 10px;
  color: #dfe4e0;
  font-size: 11px;
  font-weight: 780;
  text-decoration: none;
}

.docs-top-link:hover {
  border-color: var(--docs-line-strong);
  background: rgba(255, 255, 255, .045);
}

.docs-shell {
  width: min(1380px, calc(100% - 44px));
  margin: 0 auto;
  padding: 42px 0 90px;
}

.docs-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: clamp(30px, 5vw, 72px);
  min-height: 510px;
  align-items: center;
  padding: clamp(38px, 6vw, 76px);
  border: 1px solid var(--docs-line);
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(30, 215, 96, .075), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012));
  box-shadow: 0 35px 95px rgba(0, 0, 0, .34);
  overflow: hidden;
}

.docs-hero::after {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(30, 215, 96, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(30, 215, 96, .025), 0 0 0 116px rgba(30, 215, 96, .018);
  content: "";
  pointer-events: none;
}

.docs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  color: var(--docs-mint);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.docs-eyebrow::before {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
}

.docs-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(50px, 7vw, 92px);
  line-height: .93;
  letter-spacing: -.07em;
}

.docs-hero h1 span {
  color: var(--docs-green);
}

.docs-hero-lead {
  max-width: 670px;
  margin: 24px 0 0;
  color: #b8c0ba;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
}

.docs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.docs-button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  border: 1px solid var(--docs-line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, .045);
  color: #fff;
  font-size: 12px;
  font-weight: 830;
  text-decoration: none;
  cursor: pointer;
}

.docs-button:hover {
  background: rgba(255, 255, 255, .08);
}

.docs-button.primary {
  border-color: var(--docs-green);
  background: var(--docs-green);
  color: #041008;
}

.docs-button.primary:hover {
  background: #3ce276;
}

.docs-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.docs-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 29px;
  padding: 0 10px;
  border: 1px solid var(--docs-line);
  border-radius: 999px;
  color: var(--docs-muted);
  font-size: 10px;
  font-weight: 760;
}

.docs-pill b {
  color: #fff;
}

.terminal {
  position: relative;
  z-index: 2;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: var(--docs-code);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .46);
  overflow: hidden;
}

.terminal-bar,
.code-head {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid var(--docs-line);
  background: rgba(255, 255, 255, .025);
}

.terminal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6b7c;
}

.terminal-dot:nth-child(2) {
  background: #ffbd52;
}

.terminal-dot:nth-child(3) {
  background: var(--docs-green);
}

.terminal-title {
  margin-left: 6px;
  color: #6f7871;
  font: 700 10px/1 "JetBrains Mono", monospace;
}

.terminal pre,
.code-block pre {
  margin: 0;
  overflow: auto;
  color: #dfe7e1;
  font: 500 12px/1.75 "JetBrains Mono", Consolas, monospace;
  scrollbar-color: #465048 transparent;
  tab-size: 2;
}

.terminal pre {
  min-height: 270px;
  padding: 22px;
}

.code-comment {
  color: #738078;
}

.code-key {
  color: var(--docs-mint);
}

.code-string {
  color: #ffd082;
}

.code-method {
  color: var(--docs-blue);
}

.docs-base-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 11px 10px 14px;
  border: 1px solid var(--docs-line);
  border-radius: 11px;
  background: rgba(0, 0, 0, .2);
}

.docs-base-row span {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  color: #b9c1bb;
  font: 600 11px/1.4 "JetBrains Mono", monospace;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-button {
  display: inline-flex;
  min-width: 38px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid var(--docs-line);
  border-radius: 9px;
  background: rgba(255, 255, 255, .04);
  color: #bbc4bd;
  font-size: 10px;
  font-weight: 810;
  cursor: pointer;
}

.copy-button:hover {
  border-color: rgba(30, 215, 96, .35);
  color: var(--docs-mint);
}

.docs-mobile-toc {
  display: none;
  margin: 22px 0 0;
  border: 1px solid var(--docs-line);
  border-radius: 14px;
  background: var(--docs-surface);
}

.docs-mobile-toc summary {
  padding: 15px 17px;
  font-size: 12px;
  font-weight: 820;
  cursor: pointer;
}

.docs-mobile-toc nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  padding: 0 10px 12px;
}

.docs-mobile-toc a,
.docs-toc a {
  border-radius: 8px;
  color: var(--docs-muted);
  font-size: 11px;
  font-weight: 690;
  line-height: 1.35;
  text-decoration: none;
}

.docs-mobile-toc a {
  padding: 9px;
}

.docs-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  margin-top: 56px;
}

.docs-toc {
  position: sticky;
  top: 90px;
}

.docs-toc-label {
  margin: 0 0 12px;
  color: #e7ebe8;
  font-size: 10px;
  font-weight: 880;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.docs-toc nav {
  display: grid;
  gap: 2px;
}

.docs-toc a {
  position: relative;
  padding: 8px 10px 8px 16px;
}

.docs-toc a::before {
  position: absolute;
  top: 50%;
  left: 2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #424943;
  content: "";
  transform: translateY(-50%);
}

.docs-toc a:hover,
.docs-toc a.active {
  background: rgba(255, 255, 255, .04);
  color: #fff;
}

.docs-toc a.active::before {
  background: var(--docs-green);
  box-shadow: 0 0 10px rgba(30, 215, 96, .5);
}

.docs-toc-help {
  margin-top: 22px;
  padding: 15px;
  border: 1px solid var(--docs-line);
  border-radius: 13px;
  background: rgba(255, 255, 255, .025);
}

.docs-toc-help strong {
  display: block;
  margin-bottom: 5px;
  font-size: 11px;
}

.docs-toc-help p {
  margin: 0 0 10px;
  color: var(--docs-muted);
  font-size: 10px;
  line-height: 1.5;
}

.docs-toc-help a {
  padding: 0;
  color: var(--docs-mint);
}

.docs-toc-help a::before {
  display: none;
}

.docs-content {
  min-width: 0;
  max-width: 980px;
}

.docs-section {
  scroll-margin-top: 88px;
  margin-bottom: 92px;
}

.section-kicker {
  margin: 0 0 9px;
  color: var(--docs-mint);
  font-size: 10px;
  font-weight: 880;
  letter-spacing: .13em;
  text-transform: uppercase;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(29px, 4vw, 44px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.section-heading p {
  max-width: 570px;
  margin: 10px 0 0;
  color: var(--docs-muted);
  font-size: 14px;
  line-height: 1.65;
}

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

.step-card,
.schema-card {
  padding: 22px;
  border: 1px solid var(--docs-line);
  border-radius: var(--docs-radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .015));
}

.step-number {
  display: grid;
  width: 30px;
  height: 30px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(30, 215, 96, .3);
  border-radius: 9px;
  background: rgba(30, 215, 96, .08);
  color: var(--docs-mint);
  font: 800 11px/1 "JetBrains Mono", monospace;
}

.step-card h3,
.schema-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -.025em;
}

.step-card p,
.schema-card p {
  margin: 0;
  color: var(--docs-muted);
  font-size: 12px;
  line-height: 1.62;
}

.inline-code {
  padding: 2px 5px;
  border: 1px solid var(--docs-line);
  border-radius: 5px;
  background: rgba(0, 0, 0, .28);
  color: #dfe7e1;
  font: 600 .9em/1.4 "JetBrains Mono", monospace;
  overflow-wrap: anywhere;
}

.docs-notice {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 13px;
  margin-top: 14px;
  padding: 17px;
  border: 1px solid rgba(255, 188, 82, .23);
  border-radius: 14px;
  background: rgba(255, 188, 82, .055);
}

.docs-notice.info {
  border-color: rgba(99, 184, 255, .23);
  background: rgba(99, 184, 255, .05);
}

.notice-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 188, 82, .1);
  color: var(--docs-amber);
  font-weight: 900;
}

.docs-notice.info .notice-icon {
  background: rgba(99, 184, 255, .1);
  color: var(--docs-blue);
}

.docs-notice strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
}

.docs-notice p {
  margin: 0;
  color: #abb4ad;
  font-size: 11.5px;
  line-height: 1.6;
}

.auth-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.auth-option {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--docs-line);
  border-radius: 14px;
  background: var(--docs-surface);
}

.auth-option-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 11px;
  color: #fff;
  font-size: 11px;
  font-weight: 820;
}

.recommended {
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(30, 215, 96, .1);
  color: var(--docs-mint);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.header-code {
  display: block;
  overflow-x: auto;
  padding: 12px;
  border-radius: 9px;
  background: var(--docs-code);
  color: #dfe7e1;
  font: 600 11px/1.6 "JetBrains Mono", monospace;
  white-space: nowrap;
}

.auth-option p {
  margin: 10px 0 0;
  color: var(--docs-muted);
  font-size: 10.5px;
  line-height: 1.55;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 20px 0;
}

.flow-step {
  position: relative;
  min-width: 0;
  padding: 18px 16px;
  border: 1px solid var(--docs-line);
  border-radius: 14px;
  background: var(--docs-surface);
}

.flow-step:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -19px;
  color: #58615a;
  content: "→";
  font-size: 15px;
  transform: translateY(-50%);
}

.flow-method {
  display: block;
  margin-bottom: 9px;
  color: var(--docs-mint);
  font: 800 9px/1 "JetBrains Mono", monospace;
}

.flow-step strong {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
}

.flow-step span:last-child {
  display: block;
  color: var(--docs-muted);
  font-size: 10px;
  line-height: 1.45;
}

.code-example {
  margin-top: 18px;
  border: 1px solid var(--docs-line);
  border-radius: 16px;
  background: var(--docs-code);
  overflow: hidden;
}

.code-tabs {
  display: flex;
  min-width: 0;
  flex: 1;
  gap: 3px;
  overflow-x: auto;
}

.code-tab {
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #7f8a82;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.code-tab:hover,
.code-tab[aria-selected="true"] {
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

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

.code-block pre {
  max-height: 560px;
  padding: 22px;
}

.spotlight-stack {
  display: grid;
  gap: 16px;
}

.spotlight {
  border: 1px solid var(--docs-line);
  border-radius: 18px;
  background: var(--docs-surface);
  overflow: hidden;
}

.spotlight-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  border-bottom: 1px solid var(--docs-line);
}

.spotlight-title {
  min-width: 0;
  flex: 1;
}

.spotlight-title h3 {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -.03em;
}

.spotlight-title code {
  color: #b7c0b9;
  font: 600 11px/1.5 "JetBrains Mono", monospace;
}

.method-badge,
.meta-badge {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(30, 215, 96, .24);
  border-radius: 7px;
  background: rgba(30, 215, 96, .08);
  color: var(--docs-mint);
  font: 800 9px/1 "JetBrains Mono", monospace;
  letter-spacing: .03em;
  white-space: nowrap;
}

.method-badge.get {
  border-color: rgba(99, 184, 255, .23);
  background: rgba(99, 184, 255, .075);
  color: #86c9ff;
}

.spotlight-body {
  padding: 22px;
}

.spotlight-body > p {
  margin: 0 0 18px;
  color: var(--docs-muted);
  font-size: 12.5px;
  line-height: 1.65;
}

.property-table,
.error-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.property-table th,
.property-table td,
.error-table th,
.error-table td {
  padding: 12px 10px;
  border-top: 1px solid var(--docs-line);
  vertical-align: top;
  font-size: 11px;
  line-height: 1.55;
}

.property-table thead th,
.error-table thead th {
  padding-top: 0;
  border-top: 0;
  color: #727c74;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.property-table code,
.error-table code {
  color: #dce4de;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
}

.property-table td:last-child,
.error-table td:last-child {
  color: var(--docs-muted);
}

.spotlight-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.meta-badge {
  border-color: var(--docs-line);
  background: rgba(255, 255, 255, .025);
  color: #929c94;
  font-family: Inter, sans-serif;
  font-weight: 760;
}

.reference-toolbar {
  display: flex;
  align-items: end;
  gap: 10px;
  margin-bottom: 18px;
}

.endpoint-search-wrap {
  min-width: 0;
  flex: 1;
}

.endpoint-search-wrap label {
  display: block;
  margin-bottom: 7px;
  color: #d9dfda;
  font-size: 10px;
  font-weight: 800;
}

.endpoint-search {
  width: 100%;
  min-height: 45px;
  padding: 0 14px;
  border: 1px solid var(--docs-line);
  border-radius: 12px;
  outline: none;
  background: rgba(0, 0, 0, .23);
  color: #fff;
  font-size: 12px;
}

.endpoint-search::placeholder {
  color: #626b64;
}

.endpoint-search:focus {
  border-color: rgba(30, 215, 96, .5);
  box-shadow: 0 0 0 3px rgba(30, 215, 96, .08);
}

.endpoint-count {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--docs-line);
  border-radius: 12px;
  color: var(--docs-muted);
  font-size: 10px;
  font-weight: 780;
  white-space: nowrap;
}

.reference-intro {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: -4px 0 20px;
  padding: 13px 14px;
  border-left: 2px solid var(--docs-blue);
  background: rgba(99, 184, 255, .04);
  color: #9ea8a0;
  font-size: 10.5px;
  line-height: 1.55;
}

.reference-group {
  margin: 30px 0;
}

.reference-group[hidden],
.endpoint-reference[hidden] {
  display: none;
}

.reference-group-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}

.reference-group h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -.03em;
}

.reference-group-head p {
  max-width: 560px;
  margin: 4px 0 0;
  color: var(--docs-muted);
  font-size: 10.5px;
}

.endpoint-reference {
  margin-top: 8px;
  border: 1px solid var(--docs-line);
  border-radius: 13px;
  background: rgba(255, 255, 255, .018);
  overflow: hidden;
}

.endpoint-reference[open] {
  border-color: rgba(255, 255, 255, .15);
  background: var(--docs-surface);
}

.endpoint-reference summary {
  display: grid;
  grid-template-columns: 50px minmax(190px, .85fr) minmax(170px, 1fr) auto;
  gap: 12px;
  min-height: 62px;
  align-items: center;
  padding: 10px 14px;
  cursor: pointer;
  list-style: none;
}

.endpoint-reference summary::-webkit-details-marker {
  display: none;
}

.endpoint-reference summary::after {
  color: #707a72;
  content: "+";
  font-size: 18px;
}

.endpoint-reference[open] summary::after {
  content: "−";
}

.endpoint-reference summary:hover {
  background: rgba(255, 255, 255, .025);
}

.endpoint-path {
  min-width: 0;
  overflow: hidden;
  color: #e2e8e3;
  font: 600 10.5px/1.5 "JetBrains Mono", monospace;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.endpoint-name {
  color: #b5beb7;
  font-size: 11px;
  font-weight: 740;
}

.endpoint-detail {
  padding: 5px 18px 19px 76px;
}

.endpoint-summary {
  max-width: 750px;
  margin: 0 0 16px;
  color: #aab3ac;
  font-size: 11.5px;
  line-height: 1.65;
}

.endpoint-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 17px;
}

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

.endpoint-data div {
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--docs-line);
  border-radius: 10px;
  background: rgba(0, 0, 0, .18);
}

.endpoint-data strong {
  display: block;
  margin-bottom: 7px;
  color: #727c74;
  font-size: 8px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.endpoint-data code,
.endpoint-data span {
  display: block;
  overflow-wrap: anywhere;
  color: #b8c2ba;
  font: 500 9.5px/1.6 "JetBrains Mono", monospace;
  white-space: pre-wrap;
}

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

.schema-card.wide {
  grid-column: 1 / -1;
}

.schema-list {
  display: grid;
  gap: 8px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.schema-list li {
  display: grid;
  grid-template-columns: minmax(120px, .55fr) 1fr;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--docs-line);
  color: var(--docs-muted);
  font-size: 10.5px;
}

.schema-list code {
  color: #d9e1db;
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
}

.error-wrap {
  padding: 21px;
  border: 1px solid var(--docs-line);
  border-radius: var(--docs-radius);
  background: var(--docs-surface);
  overflow-x: auto;
}

.support-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(30, 215, 96, .18);
  border-radius: 22px;
  background: radial-gradient(circle at 100% 0, rgba(30, 215, 96, .14), transparent 45%), var(--docs-surface);
  overflow: hidden;
}

.support-cta h2 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -.04em;
}

.support-cta p {
  max-width: 620px;
  margin: 0;
  color: var(--docs-muted);
  font-size: 12px;
  line-height: 1.65;
}

.docs-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--docs-line);
  color: #747e76;
  font-size: 10px;
}

.docs-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.docs-footer a {
  color: #aeb7b0;
  text-decoration: none;
}

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

.copy-status {
  position: fixed;
  z-index: 400;
  right: 20px;
  bottom: 20px;
  padding: 11px 14px;
  border: 1px solid rgba(30, 215, 96, .3);
  border-radius: 11px;
  background: #152019;
  color: var(--docs-mint);
  font-size: 11px;
  font-weight: 760;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: .18s ease;
}

.copy-status.show {
  opacity: 1;
  transform: none;
}

.empty-search {
  padding: 30px;
  border: 1px dashed var(--docs-line-strong);
  border-radius: 14px;
  color: var(--docs-muted);
  text-align: center;
}

[id] {
  scroll-margin-top: 88px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
pre:focus-visible {
  outline: 3px solid rgba(30, 215, 96, .34);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .docs-layout {
    display: block;
  }

  .docs-toc {
    display: none;
  }

  .docs-mobile-toc {
    display: block;
  }

  .docs-content {
    max-width: none;
  }
}

@media (max-width: 1000px) {
  .docs-hero {
    grid-template-columns: 1fr;
  }

  .terminal {
    max-width: 720px;
  }

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

  .flow-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .docs-topbar {
    position: relative;
  }

  .docs-shell,
  .docs-topbar-inner {
    width: min(100% - 28px, 1380px);
  }

  .docs-shell {
    padding-top: 22px;
  }

  .docs-status {
    display: none;
  }

  .copy-status {
    right: 12px;
    bottom: 82px;
  }
}

@media (max-width: 720px) {
  .docs-hero {
    min-height: 0;
    padding: 29px 22px;
    border-radius: 20px;
  }

  .docs-hero h1 {
    font-size: clamp(45px, 15vw, 68px);
  }

  .step-grid,
  .auth-options,
  .schema-grid,
  .endpoint-data {
    grid-template-columns: 1fr;
  }

  .schema-card.wide {
    grid-column: auto;
  }

  .section-heading,
  .reference-group-head,
  .support-cta,
  .docs-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .endpoint-reference summary {
    grid-template-columns: 46px minmax(0, 1fr) auto;
  }

  .endpoint-name {
    display: none;
  }

  .endpoint-detail {
    padding: 5px 14px 16px;
  }

  .reference-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .endpoint-count {
    min-height: 38px;
    align-self: flex-start;
  }

  .property-table,
  .error-table {
    min-width: 620px;
  }

  .spotlight-body {
    overflow-x: auto;
  }

  .terminal pre,
  .code-block pre {
    font-size: 10.5px;
  }
}

@media (max-width: 500px) {
  .docs-topbar-title span,
  .docs-top-link {
    display: none;
  }

  .docs-mobile-toc nav,
  .flow {
    grid-template-columns: 1fr;
  }

  .docs-actions .docs-button {
    width: 100%;
  }

  .docs-base-row span {
    font-size: 9px;
  }

  .spotlight-head {
    flex-wrap: wrap;
  }

  .schema-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
