:root {
  --docs-font-display: "Space Grotesk", "Avenir Next", Avenir, system-ui, sans-serif;
  --docs-font-body: "Manrope", "Avenir Next", Avenir, system-ui, sans-serif;
  --docs-font-mono: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  --docs-bg: #070a10;
  --docs-surface: #0b111b;
  --docs-surface-raised: #111925;
  --docs-text: #f4f8fc;
  --docs-copy: #c9d5e1;
  --docs-muted: #9aa6b5;
  --docs-rule: rgba(226, 232, 240, 0.15);
  --docs-cyan: #57dce9;
}

.docs-public-control-center {
  background: var(--docs-bg) !important;
  color: var(--docs-text) !important;
  font-family: var(--docs-font-body) !important;
}

.docs-public-control-center > .skip-link:focus {
  z-index: 1100;
}

.docs-public-page {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0 72px;
}

.docs-public-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 42px 0;
  border-bottom: 1px solid var(--docs-rule);
  scroll-margin-top: 96px;
}

.docs-public-intro h1,
.docs-public-content h2,
.docs-public-content h3 {
  margin: 0;
  color: var(--docs-text);
  font-family: var(--docs-font-display) !important;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.docs-public-intro h1 {
  max-width: 21ch;
  font-size: clamp(2.3rem, 5vw, 4.25rem) !important;
  line-height: 1.02;
}

.docs-public-intro p {
  max-width: 64ch;
  margin: 20px 0 0;
  color: var(--docs-copy);
  font-size: 1.0625rem;
}

.docs-public-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.docs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--docs-rule);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

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

.docs-button-secondary {
  background: var(--docs-surface-raised);
  color: var(--docs-text);
}

.docs-button:hover,
.docs-button:focus-visible {
  border-color: var(--docs-cyan);
}

.docs-button-primary:hover,
.docs-button-primary:focus-visible {
  background: #81e8f0;
  color: #041015;
}

.docs-public-main {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding-top: 28px;
}

.docs-public-rail {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 2px;
  padding: 4px 0;
  border-right: 1px solid var(--docs-rule);
}

.docs-public-rail a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 18px 8px 0;
  color: var(--docs-muted);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.docs-public-rail a:hover,
.docs-public-rail a:focus-visible {
  color: var(--docs-cyan);
}

.docs-public-content {
  min-width: 0;
}

.docs-public-content section {
  padding: 30px 0;
  border-top: 1px solid var(--docs-rule);
  scroll-margin-top: 96px;
}

.docs-public-content section:first-child {
  border-top: 0;
  padding-top: 2px;
}

.docs-public-content h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  line-height: 1.1;
}

.docs-public-content p,
.docs-public-content li,
.docs-public-content dd {
  color: var(--docs-copy);
}

.docs-public-content p {
  max-width: 70ch;
  margin: 16px 0 0;
}

.docs-public-content p + p {
  margin-top: 12px;
}

.docs-public-content ul,
.docs-public-content ol {
  max-width: 70ch;
  margin: 18px 0 0;
  padding-left: 1.25rem;
}

.docs-public-content li + li {
  margin-top: 10px;
}

.docs-public-content strong,
.docs-public-content dt {
  color: var(--docs-text);
}

.docs-public-content a:not(.docs-button) {
  color: var(--docs-cyan) !important;
  text-decoration-color: rgba(87, 220, 233, 0.55) !important;
}

.docs-public-content code {
  color: var(--docs-cyan) !important;
  font-family: var(--docs-font-mono);
  font-size: 0.9em;
}

.docs-public-content pre {
  max-width: 100%;
  margin: 20px 0 0;
  overflow-x: auto;
  border: 1px solid var(--docs-rule);
  border-radius: 6px;
  background: #060b13;
  padding: 18px;
  color: var(--docs-text);
  font-family: var(--docs-font-mono);
  font-size: 0.875rem;
  line-height: 1.65;
}

.docs-public-content pre code {
  color: inherit !important;
  font-size: inherit;
}

.docs-note {
  display: grid;
  gap: 5px;
  max-width: 70ch;
  margin-top: 20px;
  border-left: 2px solid var(--docs-cyan);
  background: var(--docs-surface-raised);
  padding: 16px 18px;
  color: var(--docs-copy);
}

.docs-note strong {
  color: var(--docs-text);
}

.docs-command-table {
  max-width: 100%;
  margin-top: 20px;
  overflow-x: auto;
  border: 1px solid var(--docs-rule);
  border-radius: 6px;
}

.docs-command-table:focus-visible {
  outline: 2px solid var(--docs-cyan);
  outline-offset: 3px;
}

.docs-command-table table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--docs-surface);
}

.docs-command-table th,
.docs-command-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--docs-rule);
  text-align: left;
  vertical-align: top;
}

.docs-command-table th {
  background: var(--docs-surface-raised);
  color: var(--docs-text);
  font-family: var(--docs-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.docs-command-table td {
  color: var(--docs-copy);
  font-size: 0.9rem;
}

.docs-command-table tr:last-child td {
  border-bottom: 0;
}

.docs-troubleshooting-list {
  display: grid;
  gap: 0;
  max-width: 70ch;
  margin: 20px 0 0;
  border-top: 1px solid var(--docs-rule);
}

.docs-troubleshooting-list div {
  padding: 16px 0;
  border-bottom: 1px solid var(--docs-rule);
}

.docs-troubleshooting-list dt {
  font-weight: 700;
}

.docs-troubleshooting-list dd {
  margin: 6px 0 0;
}

.docs-reference-links {
  list-style: none;
  padding-left: 0;
}

.docs-reference-links li {
  padding-left: 0;
}

.docs-public-control-center :where(a, button, summary):focus-visible {
  outline: 2px solid var(--docs-cyan);
  outline-offset: 3px;
}

.docs-public-control-center .docs-footer {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  border-top-color: var(--docs-rule) !important;
}

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

@media (max-width: 820px) {
  .docs-public-page {
    width: min(100% - 32px, 1240px);
    padding-top: 94px;
  }

  .docs-public-intro {
    grid-template-columns: 1fr;
    padding: 30px 0;
  }

  .docs-public-actions {
    justify-content: flex-start;
  }

  .docs-public-main {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .docs-public-rail {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--docs-rule);
    padding: 0 0 16px;
  }

  .docs-public-rail a {
    padding-right: 10px;
  }

  .docs-public-content section {
    padding: 26px 0;
  }

  .docs-public-control-center .docs-footer {
    width: min(100% - 32px, 1240px);
  }
}

@media (max-width: 560px) {
  .docs-public-page {
    width: min(100% - 24px, 1240px);
  }

  .docs-public-intro h1 {
    font-size: clamp(2.15rem, 12vw, 3.15rem) !important;
  }

  .docs-public-rail {
    grid-template-columns: 1fr;
  }

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

  .docs-public-control-center .docs-footer {
    width: min(100% - 24px, 1240px);
  }
}
