@import url('./theme.css');
@font-face {
  font-family: Geist;
  src: url('./assets/fonts/Geist-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Geist Mono';
  src: url('./assets/fonts/GeistMono-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  font-family: Geist, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  color-scheme: light;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 4px;
}
img {
  display: block;
  max-width: 100%;
}
p,
h1,
h2,
h3,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
p {
  line-height: 1.65;
}
code,
pre {
  font-family: 'Geist Mono', monospace;
}
.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--line);
  z-index: 100;
}
.skip-link:focus {
  top: 18px;
}
.docs-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  border-bottom: 1px solid var(--line);
  background: #fffffff2;
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 550;
  letter-spacing: -0.045em;
}
.brand img {
  width: 29px;
  height: 29px;
}
.docs-header nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 12px;
}
.docs-header nav a {
  color: var(--muted);
}
.docs-header nav a:hover {
  color: var(--olive);
}
.page-label {
  font:
    10px/1 'Geist Mono',
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
}
.docs-layout {
  width: min(1400px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 244px minmax(0, 1fr);
  gap: 76px;
  padding: 0 48px;
}
.docs-sidebar {
  align-self: start;
  position: sticky;
  top: 74px;
  height: calc(100svh - 74px);
  padding: 54px 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}
.docs-sidebar nav {
  padding-right: 34px;
}
.nav-group {
  margin-bottom: 32px;
}
.nav-group > p {
  font:
    9px/1 'Geist Mono',
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 12px;
}
.nav-group a {
  position: relative;
  display: block;
  padding: 6px 0;
  font-size: 13px;
  color: var(--muted);
}
.nav-group a:hover {
  color: var(--ink);
}
.nav-group a[aria-current='location'] {
  color: var(--ink);
  font-weight: 550;
}
.nav-group a[aria-current='location']:before {
  content: '';
  position: absolute;
  left: -17px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #718267;
}
.sidebar-meta {
  padding-right: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  font-size: 11px;
  color: var(--muted);
}
.sidebar-meta strong {
  color: var(--ink);
  font:
    11px/1.4 'Geist Mono',
    monospace;
  font-weight: 500;
}
.sidebar-meta a {
  grid-column: 1/-1;
  margin-top: 6px;
  color: var(--olive);
}
.docs-content {
  min-width: 0;
  max-width: 980px;
  padding-right: 24px;
}
.doc-section {
  scroll-margin-top: 92px;
}
.hero {
  min-height: 580px;
  padding: 92px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: 70px;
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  font:
    10px/1.3 'Geist Mono',
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--olive);
  margin-bottom: 22px;
}
.eyebrow span {
  color: #abb1a7;
  padding-inline: 6px;
}
.hero h1 {
  max-width: 680px;
  font-size: clamp(52px, 5.6vw, 78px);
  font-weight: 510;
  line-height: 0.99;
  letter-spacing: -0.065em;
  text-wrap: balance;
}
.hero-lede {
  max-width: 660px;
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  letter-spacing: -0.015em;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 13px 16px;
  border-radius: 4px;
  background: var(--olive-dark);
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
}
.primary-button:hover {
  background: #465542;
}
.text-link {
  font-size: 12px;
  color: var(--olive);
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.quick-command {
  align-self: center;
  background: var(--code);
  border: 1px solid var(--code-line);
  border-radius: 8px;
  color: var(--code-ink);
  box-shadow: 0 25px 60px -38px #17241999;
  overflow: hidden;
}
.code-heading {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid var(--code-line);
  font:
    9px/1 'Geist Mono',
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--code-muted);
}
.code-heading span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.code-heading i {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--code-foliage);
  border-radius: 50%;
}
.code-heading button {
  font:
    9px/1 'Geist Mono',
    monospace;
  color: var(--code-ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.code-heading button:hover {
  color: #fff;
}
.quick-command pre {
  margin: 0;
  padding: 22px 18px;
  font-size: 11px;
  line-height: 2.05;
  overflow: auto;
}
.quick-command .prompt {
  color: var(--code-foliage);
}
.quick-command > p {
  padding: 13px 16px;
  border-top: 1px solid var(--code-line);
  font-size: 10px;
  line-height: 1.5;
  color: var(--code-muted);
}
.scope-note {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  margin: 28px 0 0;
  padding: 25px 27px;
  background: var(--olive-soft);
  border: 1px solid var(--line);
  border-radius: 7px;
}
.scope-note strong {
  font-size: 14px;
  font-weight: 590;
}
.scope-note p {
  margin-top: 5px;
  max-width: 760px;
  font-size: 13px;
  color: var(--muted);
}
.scope-icon {
  height: 42px;
  position: relative;
}
.scope-icon span {
  position: absolute;
  top: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #708168;
  box-shadow: 0 0 0 5px #dce5d7;
}
.scope-icon span:nth-child(1) {
  left: 0;
}
.scope-icon span:nth-child(2) {
  left: 24px;
}
.scope-icon span:nth-child(3) {
  left: 48px;
}
.scope-icon:before {
  content: '';
  position: absolute;
  left: 6px;
  right: 6px;
  top: 22px;
  height: 1px;
  background: #91a28a;
}
.section-block {
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}
.section-heading {
  max-width: 720px;
  margin-bottom: 52px;
}
.section-heading.compact {
  margin-bottom: 36px;
}
.section-heading h2 {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 510;
  line-height: 1.05;
  letter-spacing: -0.052em;
  text-wrap: balance;
}
.section-heading > p:last-child {
  margin-top: 21px;
  max-width: 650px;
  font-size: 16px;
  color: var(--muted);
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.capability-grid article {
  min-height: 226px;
  padding: 25px 23px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.capability-number {
  display: block;
  margin-bottom: 44px;
  font:
    9px/1 'Geist Mono',
    monospace;
  color: var(--muted);
}
.capability-grid h3 {
  font-size: 17px;
  font-weight: 580;
  letter-spacing: -0.025em;
  margin-bottom: 9px;
}
.capability-grid p {
  font-size: 13px;
  color: var(--muted);
}
.capability-grid code {
  font-size: 0.9em;
  color: var(--olive);
}
.connection-map {
  margin-top: 70px;
  padding: 34px 36px 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.map-agents {
  position: relative;
  height: 290px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 42px 86px;
  align-items: center;
}
.map-agents:before,
.map-agents:after {
  content: '';
  position: absolute;
  inset: 50% 14%;
  height: 1px;
  background: #c7cec2;
  transform: rotate(22deg);
  z-index: 0;
}
.map-agents:after {
  transform: rotate(-22deg);
}
.map-agent,
.map-hub {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: 150px;
  min-height: 82px;
  padding: 13px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 25px -22px #1c2b20;
}
.map-agent > span {
  float: left;
  width: 28px;
  height: 28px;
  margin: 0 10px 22px 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--olive-soft);
  font:
    9px/1 'Geist Mono',
    monospace;
  color: var(--olive);
}
.map-agent strong,
.map-hub strong {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 570;
}
.map-agent small,
.map-hub small {
  display: block;
  margin-top: 5px;
  font:
    8px/1.4 'Geist Mono',
    monospace;
  color: var(--muted);
}
.map-agent:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.map-agent:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}
.map-agent:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}
.map-agent:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}
.map-hub {
  grid-column: 2;
  grid-row: 1/3;
  align-self: center;
  width: 168px;
  min-height: 96px;
  padding: 17px;
  background: var(--olive-dark);
  border-color: var(--olive-dark);
  color: #fff;
}
.map-hub img {
  float: left;
  width: 36px;
  height: 36px;
  margin-right: 11px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.map-hub strong {
  font-size: 13px;
  margin-top: 4px;
}
.map-hub small {
  color: #b9c5b6;
}
.connection-map figcaption {
  padding-top: 25px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}
.connection-map figcaption strong {
  color: var(--ink);
}
.requirements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 7px;
  margin-bottom: 58px;
}
.requirements > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 18px;
  border-right: 1px solid var(--line);
}
.requirements > div:last-child {
  border-right: 0;
}
.requirements > div > span {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--olive-soft);
  font-size: 10px;
  color: var(--olive);
}
.requirements p {
  line-height: 1.25;
}
.requirements strong {
  display: block;
  font-size: 11px;
  font-weight: 570;
}
.requirements small {
  display: block;
  margin-top: 5px;
  font:
    8px/1.3 'Geist Mono',
    monospace;
  color: var(--muted);
}
.instruction-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
}
.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-marker span {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #cfd5cb;
  border-radius: 50%;
  font:
    10px/1 'Geist Mono',
    monospace;
  color: var(--olive);
}
.step-marker i {
  width: 1px;
  flex: 1;
  min-height: 52px;
  background: var(--line);
}
.step-content {
  padding-bottom: 42px;
  min-width: 0;
}
.step-content > h3 {
  font-size: 21px;
  font-weight: 530;
  letter-spacing: -0.03em;
  margin: 4px 0 8px;
}
.step-content > p {
  font-size: 13px;
  color: var(--muted);
}
.code-block {
  margin-top: 20px;
  margin-bottom: 20px;
  background: var(--code);
  border: 1px solid var(--code-line);
  border-radius: 6px;
  color: var(--code-ink);
  overflow: hidden;
}
.code-block pre {
  margin: 0;
  padding: 19px 18px;
  font-size: 11px;
  line-height: 1.8;
  overflow: auto;
  white-space: pre;
  font-variant-ligatures: none;
  font-feature-settings:
    'liga' 0,
    'calt' 0;
}
.detail-note {
  margin-top: 14px !important;
  padding-left: 14px;
  border-left: 2px solid #aebba7;
  font-size: 11px !important;
}
.detail-note code {
  font-size: 0.95em;
  color: var(--ink);
}
.connect-step .step-content {
  padding-bottom: 0;
}
.host-section {
  padding: 76px 0;
  border-bottom: 1px solid var(--line);
}
.host-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 23px;
}
.host-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  font:
    10px/1 'Geist Mono',
    monospace;
  color: var(--olive);
}
.host-kicker {
  font:
    8px/1 'Geist Mono',
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  margin-bottom: 4px;
}
.host-title h2 {
  font-size: 30px;
  line-height: 1;
  font-weight: 530;
  letter-spacing: -0.045em;
}
.support-badge {
  margin-left: auto;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #f8faf7;
  font:
    8px/1 'Geist Mono',
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--olive);
}
.host-section > p {
  max-width: 740px;
  font-size: 14px;
  color: var(--muted);
}
.host-section > .code-block {
  max-width: 740px;
}
.host-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.host-details > div {
  padding: 19px 20px;
  border: 1px solid var(--line);
  border-radius: 5px;
}
.host-details strong {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 590;
}
.host-details p {
  font-size: 11px;
  color: var(--muted);
}
.host-details code {
  display: block;
  margin-top: 11px;
  font-size: 9px;
  line-height: 1.65;
  color: var(--olive);
  overflow-wrap: anywhere;
}
.host-details p code {
  display: inline;
  margin: 0;
  font-size: 0.92em;
  color: var(--ink);
}
.config-table {
  max-width: 740px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.config-table > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  border-bottom: 1px solid var(--line);
}
.config-table > div:last-child {
  border-bottom: 0;
}
.config-table dt,
.config-table dd {
  padding: 14px 16px;
  font-size: 11px;
}
.config-table dt {
  color: var(--muted);
  background: var(--paper);
}
.config-table dd code {
  font-size: 10px;
  color: var(--olive);
}
.verify-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.verify-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-width: 0;
}
.verify-card > span {
  font:
    9px/1 'Geist Mono',
    monospace;
  color: var(--muted);
}
.verify-card h3 {
  font-size: 17px;
  font-weight: 550;
  letter-spacing: -0.025em;
  margin: 28px 0 9px;
}
.verify-card > p {
  font-size: 12px;
  color: var(--muted);
}
.verify-card > p code {
  font-size: 0.92em;
  color: var(--olive);
}
.compact-code {
  margin-top: 17px;
}
.compact-code pre {
  font-size: 10px;
  padding: 14px 15px;
}
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.tool-grid article {
  min-height: 228px;
  padding: 25px 23px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tool-grid article > span {
  display: block;
  margin-bottom: 40px;
  font:
    9px/1.3 'Geist Mono',
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.tool-grid h3 {
  font-size: 17px;
  font-weight: 570;
  letter-spacing: -0.025em;
  line-height: 1.25;
}
.tool-grid p {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 17px;
}
.tool-grid code {
  display: inline-block;
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  font-size: 9px;
  color: var(--olive);
}
.tool-note {
  max-width: 760px;
  margin-top: 22px !important;
}
.starter-prompt {
  padding: 27px 28px;
  background: var(--olive-dark);
  color: #fff;
  border-radius: 7px;
}
.starter-prompt > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 21px;
  font:
    9px/1 'Geist Mono',
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #afbdac;
}
.starter-prompt button {
  font:
    9px/1 'Geist Mono',
    monospace;
  text-transform: uppercase;
  color: #dbe4d8;
}
.starter-prompt p {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.015em;
}
.workflow-list {
  list-style: none;
  padding: 0;
  margin: 50px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 50px;
}
.workflow-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 15px;
  padding: 23px 0;
  border-top: 1px solid var(--line);
}
.workflow-list li > span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid #d2d8ce;
  border-radius: 50%;
  font:
    9px/1 'Geist Mono',
    monospace;
  color: var(--olive);
}
.workflow-list h3 {
  font-size: 14px;
  font-weight: 570;
  margin: 3px 0 7px;
}
.workflow-list p {
  font-size: 11px;
  color: var(--muted);
}
.workflow-list code {
  font-size: 0.9em;
  color: var(--olive);
}
.workflow-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.workflow-panels article {
  padding: 27px 28px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}
.workflow-panels .eyebrow {
  margin-bottom: 18px;
}
.workflow-panels h3 {
  font-size: 20px;
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1.2;
}
.workflow-panels article > p:not(.eyebrow) {
  margin-top: 15px;
  font-size: 12px;
  color: var(--muted);
}
.workflow-panels code {
  font-size: 0.9em;
  color: var(--olive);
}
.turn-flow {
  margin-top: 30px;
  padding: 33px 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 7px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.flow-agent,
.flow-resource {
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  text-align: center;
}
.flow-resource {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
  color: #fff;
}
.flow-agent span,
.flow-resource span {
  display: block;
  font-size: 11px;
  font-weight: 560;
}
.flow-agent small,
.flow-resource small {
  display: block;
  margin-top: 5px;
  font:
    8px/1 'Geist Mono',
    monospace;
  color: var(--muted);
}
.flow-resource small {
  color: #b9c5b6;
}
.turn-flow > i {
  font-style: normal;
  color: var(--muted);
}
.turn-flow figcaption {
  grid-column: 1/-1;
  margin-top: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted);
}
.upgrade-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 32px;
  align-items: center;
  padding: 27px 28px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--olive-soft);
}
.upgrade-section > .code-block {
  max-width: 740px;
  margin-bottom: 20px;
}
.upgrade-card + .upgrade-card {
  margin-top: 16px;
}
.upgrade-card strong {
  font-size: 14px;
  font-weight: 590;
}
.upgrade-card > div > p {
  margin-top: 7px;
  font-size: 12px;
  color: var(--muted);
}
.upgrade-card .code-block {
  margin-top: 0;
}
.skill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.skill-grid > a {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 13px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.skill-grid > a:hover {
  border-color: #b8c4b3;
  background: #fbfcfa;
}
.skill-grid > a > span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--olive-soft);
  font:
    10px/1 'Geist Mono',
    monospace;
  color: var(--olive);
}
.skill-grid strong {
  display: block;
  font:
    11px/1.3 'Geist Mono',
    monospace;
  font-weight: 550;
  color: var(--olive);
}
.skill-grid p {
  margin-top: 6px;
  font-size: 11px;
  color: var(--muted);
}
.skill-grid i {
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
}
.troubleshooting details {
  border-top: 1px solid var(--line);
}
.troubleshooting details:last-of-type {
  border-bottom: 1px solid var(--line);
}
.troubleshooting summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 0;
  font-size: 14px;
  font-weight: 540;
  cursor: pointer;
}
.troubleshooting summary::-webkit-details-marker {
  display: none;
}
.troubleshooting summary span {
  font-size: 20px;
  font-weight: 300;
  color: var(--muted);
  transition: transform 0.15s;
}
.troubleshooting details[open] summary span {
  transform: rotate(45deg);
}
.troubleshooting details > p {
  max-width: 750px;
  padding: 0 44px 21px 0;
  font-size: 12px;
  color: var(--muted);
}
.troubleshooting details code {
  font-size: 0.9em;
  color: var(--olive);
}
.more-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding: 24px 25px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.more-help strong {
  font-size: 13px;
  font-weight: 580;
}
.more-help p {
  margin-top: 4px;
  font-size: 11px;
  color: var(--muted);
}
.docs-footer {
  padding: 58px 0 48px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  color: var(--muted);
}
.footer-brand {
  font-size: 19px;
  font-weight: 550;
  letter-spacing: -0.05em;
  color: var(--ink);
}
.docs-footer p {
  margin-top: 8px;
  font-size: 10px;
}
.docs-footer nav {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  font-size: 10px;
}
.docs-footer nav a:hover {
  color: var(--olive);
}
.copy-status {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  margin: 0;
  padding: 11px 14px;
  border-radius: 4px;
  background: var(--olive-dark);
  color: #fff;
  font:
    10px/1.3 'Geist Mono',
    monospace;
  box-shadow: 0 8px 30px #1a281e30;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 0.18s,
    transform 0.18s;
}
.copy-status.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1100px) {
  .docs-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 48px;
    padding-inline: 34px;
  }
  .docs-content {
    padding-right: 0;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 72px;
  }
  .quick-command {
    width: min(520px, 100%);
  }
  .capability-grid,
  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 800px) {
  html {
    scroll-padding-top: 122px;
  }
  .docs-header {
    height: 66px;
    padding-inline: 22px;
  }
  .docs-header nav {
    gap: 17px;
  }
  .page-label {
    display: none;
  }
  .docs-layout {
    display: block;
    padding: 0;
  }
  .docs-sidebar {
    position: sticky;
    top: 66px;
    z-index: 20;
    height: 49px;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    background: #fffffff5;
    backdrop-filter: blur(16px);
    overflow-x: auto;
  }
  .docs-sidebar nav {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 22px;
    min-width: max-content;
  }
  .nav-group {
    display: contents;
  }
  .nav-group > p,
  .sidebar-meta {
    display: none;
  }
  .nav-group a {
    padding: 17px 13px 16px;
    font-size: 10px;
    white-space: nowrap;
  }
  .nav-group a[aria-current='location']:before {
    left: 13px;
    right: 13px;
    top: auto;
    bottom: 0;
    width: auto;
    height: 2px;
    border-radius: 0;
  }
  .docs-content {
    max-width: none;
    padding: 0 30px;
  }
  .doc-section {
    scroll-margin-top: 130px;
  }
  .hero {
    min-height: 0;
    padding: 72px 0 64px;
  }
  .hero h1 {
    font-size: clamp(50px, 11vw, 72px);
  }
  .scope-note {
    margin-top: 24px;
  }
  .section-block {
    padding: 84px 0;
  }
  .host-section {
    padding: 62px 0;
  }
}
@media (max-width: 600px) {
  .docs-header {
    padding-inline: 18px;
  }
  .brand {
    font-size: 18px;
  }
  .brand img {
    width: 27px;
    height: 27px;
  }
  .docs-header nav a:first-of-type {
    display: none;
  }
  .docs-header nav {
    font-size: 11px;
  }
  .docs-sidebar nav {
    padding-inline: 10px;
  }
  .docs-content {
    padding-inline: 20px;
  }
  .hero {
    padding-top: 58px;
    gap: 34px;
  }
  .hero h1 {
    font-size: 49px;
    line-height: 1.01;
  }
  .hero-lede {
    font-size: 16px;
    margin-top: 23px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 29px;
  }
  .quick-command pre {
    font-size: 10px;
    padding-inline: 14px;
  }
  .scope-note {
    grid-template-columns: 1fr;
    padding: 21px;
  }
  .scope-icon {
    width: 60px;
  }
  .section-block {
    padding: 72px 0;
  }
  .section-heading {
    margin-bottom: 38px;
  }
  .section-heading h2 {
    font-size: 39px;
  }
  .section-heading > p:last-child {
    font-size: 14px;
  }
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .capability-grid article {
    min-height: 0;
    padding: 23px;
  }
  .capability-number {
    margin-bottom: 25px;
  }
  .connection-map {
    padding: 24px 18px 22px;
    margin-top: 46px;
  }
  .map-agents {
    height: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 12px;
  }
  .map-agents:before,
  .map-agents:after {
    display: none;
  }
  .map-agent,
  .map-hub {
    width: 100%;
    min-height: 76px;
  }
  .map-agent:nth-child(1),
  .map-agent:nth-child(2),
  .map-agent:nth-child(4),
  .map-agent:nth-child(5),
  .map-hub {
    grid-column: auto;
    grid-row: auto;
  }
  .map-hub {
    grid-column: 1/-1;
    grid-row: 1;
  }
  .connection-map figcaption {
    margin-top: 20px;
  }
  .requirements {
    grid-template-columns: 1fr;
  }
  .requirements > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .requirements > div:last-child {
    border-bottom: 0;
  }
  .instruction-step {
    grid-template-columns: 37px 1fr;
    gap: 12px;
  }
  .step-marker span {
    width: 29px;
    height: 29px;
  }
  .step-content > h3 {
    font-size: 19px;
  }
  .code-block pre {
    font-size: 9px;
    padding-inline: 13px;
  }
  .host-title {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .support-badge {
    margin-left: 59px;
    margin-top: -9px;
  }
  .host-details,
  .verify-grid,
  .tool-grid,
  .workflow-list,
  .workflow-panels,
  .skill-grid {
    grid-template-columns: 1fr;
  }
  .host-details {
    gap: 10px;
  }
  .config-table > div {
    grid-template-columns: 110px 1fr;
  }
  .config-table dt,
  .config-table dd {
    padding-inline: 12px;
  }
  .starter-prompt {
    padding: 23px 20px;
  }
  .starter-prompt p {
    font-size: 16px;
  }
  .workflow-list {
    gap: 0;
  }
  .turn-flow {
    grid-template-columns: 1fr;
    padding: 25px 20px;
  }
  .turn-flow > i {
    transform: rotate(90deg);
    justify-self: center;
  }
  .turn-flow figcaption {
    grid-column: 1;
  }
  .tool-grid article {
    min-height: 0;
  }
  .tool-grid article > span {
    margin-bottom: 24px;
  }
  .workflow-panels article {
    padding: 23px 20px;
  }
  .upgrade-card {
    grid-template-columns: 1fr;
    padding: 23px 20px;
  }
  .upgrade-card .code-block {
    margin-top: 3px;
  }
  .more-help {
    align-items: flex-start;
    flex-direction: column;
  }
  .docs-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 38px;
  }
  .docs-footer nav {
    flex-wrap: wrap;
    gap: 17px 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .copy-status,
  .troubleshooting summary span {
    transition: none;
  }
}
