:root {
  color-scheme: light;
  --bg: #f4f7f1;
  --bg-accent: #e7f1eb;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-tint: rgba(225, 243, 238, 0.56);
  --ink: #10221d;
  --ink-soft: #1d3a31;
  --muted: #5d6d67;
  --line: rgba(16, 34, 29, 0.12);
  --line-strong: rgba(16, 34, 29, 0.2);
  --accent: #0d7a66;
  --accent-deep: #0b5c4e;
  --accent-soft: #d8efe8;
  --gold: #cf9a35;
  --gold-soft: rgba(207, 154, 53, 0.16);
  --danger: #b34233;
  --shadow-lg: 0 28px 70px rgba(10, 37, 31, 0.1);
  --shadow-md: 0 16px 40px rgba(10, 37, 31, 0.08);
  --shadow-sm: 0 10px 24px rgba(10, 37, 31, 0.06);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --duration-fast: 160ms;
  --duration-smooth: 240ms;
  --max-width: 1240px;
  --header-height: 88px;
  --code-bg: #0f1d19;
  --code-ink: #edf8f4;
  --search-backdrop: rgba(10, 19, 17, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(13, 122, 102, 0.2), transparent 22rem),
    radial-gradient(circle at top right, rgba(207, 154, 53, 0.13), transparent 20rem),
    linear-gradient(180deg, var(--bg-accent) 0%, var(--bg) 24rem);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.68;
}

a {
  color: var(--accent-deep);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 50;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--surface-strong);
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform var(--duration-fast) ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

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

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: rgba(244, 247, 241, 0.8);
  border-bottom: 1px solid rgba(16, 34, 29, 0.08);
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.18rem;
  color: var(--ink);
  text-decoration: none;
}

.brand__eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--accent);
}

.brand__title {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.site-header__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  isolation: isolate;
}

.top-nav a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-pill);
  color: var(--muted);
  text-decoration: none;
  transition: background var(--duration-fast) ease, color var(--duration-fast) ease, transform var(--duration-fast) ease;
}

.top-nav a:hover,
.top-nav a.is-active {
  color: var(--accent-deep);
  background: var(--accent-soft);
}

.top-nav--animated a:hover,
.top-nav--animated a.is-active {
  background: transparent;
}

.top-nav a.is-active {
  box-shadow: inset 0 0 0 1px rgba(13, 122, 102, 0.12);
}

.top-nav--animated a.is-active {
  box-shadow: none;
}

.top-nav__indicator {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: var(--radius-pill);
  background:
    linear-gradient(135deg, rgba(216, 239, 232, 0.96), rgba(207, 154, 53, 0.12));
  box-shadow:
    inset 0 0 0 1px rgba(13, 122, 102, 0.12),
    0 12px 24px rgba(10, 37, 31, 0.08);
  opacity: 0;
  pointer-events: none;
  transition:
    transform var(--duration-smooth) cubic-bezier(0.22, 1, 0.36, 1),
    width var(--duration-smooth) cubic-bezier(0.22, 1, 0.36, 1),
    height var(--duration-smooth) cubic-bezier(0.22, 1, 0.36, 1),
    opacity var(--duration-fast) ease;
}

.search-button,
.nav-toggle,
.mobile-nav__close,
.search-dialog__close,
.chatbot-overlay__close {
  appearance: none;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(16, 34, 29, 0.1);
  color: var(--ink-soft);
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  transition: transform var(--duration-fast) ease, box-shadow var(--duration-fast) ease, background var(--duration-fast) ease;
}

.search-button:hover,
.nav-toggle:hover,
.mobile-nav__close:hover,
.search-dialog__close:hover,
.chatbot-overlay__close:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(13, 122, 102, 0.18), 0 10px 20px rgba(10, 37, 31, 0.08);
}

.search-button,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.65rem 0.95rem;
}

.search-button__hint {
  padding: 0.14rem 0.42rem;
  border-radius: var(--radius-pill);
  background: rgba(13, 122, 102, 0.08);
  color: var(--accent-deep);
  font-size: 0.82rem;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
}

.theme-toggle svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.theme-toggle__moon {
  display: block;
}

.theme-toggle__sun {
  display: none;
}

[data-theme="dark"] .theme-toggle__moon {
  display: none;
}

[data-theme="dark"] .theme-toggle__sun {
  display: block;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle__moon {
    display: none;
  }

  :root:not([data-theme="light"]) .theme-toggle__sun {
    display: block;
  }
}

.nav-toggle {
  display: none;
}

.page-shell {
  padding: 2rem 1.25rem 3rem;
}

.page-frame {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 1.5rem;
  align-items: start;
}

.page-content-column {
  min-width: 0;
}

.page-rail {
  position: relative;
}

.breadcrumbs {
  margin-bottom: 1rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
  color: rgba(16, 34, 29, 0.28);
}

.breadcrumbs a {
  text-decoration: none;
}

.section-nav {
  margin-bottom: 0.75rem;
}

.page-toc__eyebrow,
.search-dialog__eyebrow,
.mobile-nav__eyebrow,
.doc-callout__eyebrow,
.chatbot-overlay__eyebrow {
  margin: 0 0 0.3rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-nav__links {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  isolation: isolate;
}

.section-nav__links a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-pill);
  color: var(--muted);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

.section-nav__links a:hover {
  color: var(--ink-soft);
}

.section-nav__links a.is-active {
  color: var(--surface-strong);
  background: var(--ink);
}

.section-nav--animated .section-nav__links a:not(.is-active) {
  background: transparent;
}

.section-nav--animated .section-nav__links a:hover {
  color: var(--surface-strong);
}

.section-nav__indicator {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: var(--radius-pill);
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition:
    transform var(--duration-smooth) cubic-bezier(0.22, 1, 0.36, 1),
    width var(--duration-smooth) cubic-bezier(0.22, 1, 0.36, 1),
    height var(--duration-smooth) cubic-bezier(0.22, 1, 0.36, 1),
    opacity var(--duration-fast) ease;
}

.page-header {
  margin-bottom: 1.5rem;
  padding: 1.7rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(13, 122, 102, 0.14), rgba(207, 154, 53, 0.12)),
    var(--surface-strong);
  border: 1px solid rgba(13, 122, 102, 0.08);
}

.page-kicker {
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
}

.page-header h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.page-summary {
  max-width: 50rem;
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.doc-content {
  min-width: 0;
}

.doc-content > :first-child {
  margin-top: 0;
}

.doc-content h2,
.doc-content h3,
.doc-content h4 {
  scroll-margin-top: calc(var(--header-height) + 1rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.doc-content h2 {
  margin: 2.5rem 0 0.5em;
  font-size: clamp(1.55rem, 2.3vw, 2rem);
}

.doc-content h3 {
  margin: 1.85rem 0 0.5em;
  font-size: 1.25rem;
}

.doc-content h4 {
  margin: 1.4rem 0 0.5em;
  font-size: 1.02rem;
}

.doc-content p,
.doc-content ul,
.doc-content ol,
.doc-content table,
.doc-content pre,
.doc-content blockquote,
.doc-content .highlight,
.doc-content .table-wrap,
.doc-content hr {
  margin-top: 0;
  margin-bottom: 1rem;
}

.doc-content ul,
.doc-content ol {
  padding-left: 1.3rem;
}

.doc-content li + li {
  margin-top: 0.35rem;
}

.doc-content code {
  background: rgba(13, 122, 102, 0.08);
  color: var(--accent-deep);
  border-radius: 0.45rem;
  padding: 0.16rem 0.35rem;
  font-size: 0.93em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.doc-content pre,
.doc-content .highlight pre {
  overflow-x: auto;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: var(--code-bg);
  color: var(--code-ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.doc-content pre code,
.doc-content .highlight pre code {
  background: transparent;
  color: inherit;
  padding: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.doc-content .highlight {
  border-radius: var(--radius-md);
}

.doc-content .highlight pre {
  margin: 0;
}

.doc-content pre code span {
  white-space: inherit;
}

.chatbot-inline-open {
  appearance: none;
  min-height: 2.9rem;
  padding: 0 1rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--surface-strong);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.chatbot-shell {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 60;
}

.chatbot-launcher {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(145deg, rgba(16, 34, 29, 0.96), rgba(13, 122, 102, 0.94));
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(10, 37, 31, 0.28);
  cursor: pointer;
  transition: transform var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
}

.chatbot-launcher:hover,
.chatbot-launcher:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(10, 37, 31, 0.32);
}

.chatbot-launcher__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.chatbot-launcher__icon svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: currentColor;
}

.chatbot-open .chatbot-launcher {
  pointer-events: none;
  opacity: 0;
  transition: opacity 120ms ease;
}

.chatbot-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.chatbot-overlay {
  opacity: 0;
  transition: opacity var(--duration-smooth) ease;
}

.chatbot-overlay.is-visible {
  opacity: 1;
}

.chatbot-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 19, 17, 0.42);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.chatbot-overlay__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(42rem, calc(100vw - 2rem));
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 1rem;
  padding: 1.25rem 1.2rem 1.2rem;
  background: rgba(255, 255, 255, 0.96);
  border-left: 1px solid rgba(13, 122, 102, 0.12);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateX(2rem);
  transition: transform var(--duration-smooth) cubic-bezier(0.22, 1, 0.36, 1);
}

.chatbot-overlay.is-visible .chatbot-overlay__panel {
  transform: translateX(0);
}

.chatbot-overlay__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.chatbot-overlay__eyebrow {
  margin: 0 0 0.2rem;
}

.chatbot-overlay__header h2 {
  margin: 0;
  font-size: 1.5rem;
}

.chatbot-overlay__summary {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.chatbot-overlay__close {
  background: rgba(16, 34, 29, 0.08);
  color: var(--ink);
  font-weight: 700;
  min-height: 2.6rem;
  padding: 0 0.9rem;
}

.chatbot-overlay__prompts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.chatbot-demo__prompt {
  appearance: none;
  display: grid;
  gap: 0.25rem;
  width: 100%;
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid rgba(13, 122, 102, 0.14);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(216, 239, 232, 0.68));
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  cursor: pointer;
  transition: transform var(--duration-fast) ease, box-shadow var(--duration-fast) ease, border-color var(--duration-fast) ease;
}

.chatbot-demo__prompt:hover,
.chatbot-demo__prompt:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(13, 122, 102, 0.28);
  box-shadow: var(--shadow-md);
}

.chatbot-demo__thread {
  min-height: 0;
  overflow-y: auto;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(231, 241, 235, 0.72), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(16, 34, 29, 0.08);
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.chatbot-demo__message {
  display: flex;
}

.chatbot-demo__message--user {
  justify-content: flex-end;
}

.chatbot-demo__bubble {
  max-width: min(44rem, 100%);
  padding: 0.75rem 1rem;
  border-radius: 1.15rem;
  box-shadow: var(--shadow-sm);
  line-height: 1.55;
}

.chatbot-demo__message--assistant .chatbot-demo__bubble {
  background: rgba(255, 255, 255, 0.96);
  border-top-left-radius: 0.45rem;
}

.chatbot-demo__message--user .chatbot-demo__bubble {
  background: linear-gradient(145deg, rgba(13, 122, 102, 0.96), rgba(11, 92, 78, 0.92));
  color: #ffffff;
  border-top-right-radius: 0.45rem;
}

.chatbot-demo__message--error .chatbot-demo__bubble {
  border: 1px solid rgba(179, 66, 51, 0.2);
  background: rgba(255, 245, 243, 0.94);
}

.chatbot-demo__bubble :last-child {
  margin-bottom: 0;
}

.chatbot-demo__bubble p,
.chatbot-demo__bubble ul,
.chatbot-demo__bubble ol,
.chatbot-demo__bubble pre,
.chatbot-demo__bubble table {
  margin: 0 0 0.75rem;
}

.chatbot-demo__bubble h2,
.chatbot-demo__bubble h3,
.chatbot-demo__bubble h4,
.chatbot-demo__bubble h5,
.chatbot-demo__bubble h6 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  line-height: 1.3;
}

.chatbot-demo__bubble ul,
.chatbot-demo__bubble ol {
  padding-left: 1.2rem;
}

.chatbot-demo__bubble li + li {
  margin-top: 0.25rem;
}

.chatbot-demo__bubble a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.14em;
}

.chatbot-demo__bubble code {
  padding: 0.1rem 0.3rem;
  border-radius: 0.35rem;
  background: rgba(16, 34, 29, 0.08);
  font-size: 0.95em;
}

.chatbot-demo__bubble pre {
  overflow-x: auto;
  padding: 0.8rem 0.9rem;
  border-radius: 0.8rem;
  background: rgba(16, 34, 29, 0.92);
  color: #f5fbf7;
}

.chatbot-demo__bubble pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}

.chatbot-demo__bubble table {
  margin-bottom: 0;
}

.chatbot-demo__message--user .chatbot-demo__bubble code {
  background: rgba(255, 255, 255, 0.18);
}

.chatbot-demo__message--assistant .chatbot-demo__bubble a {
  color: var(--accent-deep);
}

.chatbot-demo__composer {
  margin: 0;
}

.chatbot-demo__composer-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.chatbot-demo__composer-row {
  display: flex;
  gap: 0.75rem;
  align-items: end;
}

.chatbot-demo__composer textarea {
  flex: 1;
  min-width: 0;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 34, 29, 0.14);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.chatbot-demo__send {
  appearance: none;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(145deg, rgba(16, 34, 29, 0.96), rgba(13, 122, 102, 0.94));
  color: #ffffff;
  font: inherit;
  font-size: 0;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(10, 37, 31, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chatbot-demo__send svg {
  width: 1.6rem;
  height: 1.6rem;
}

.chatbot-demo__send:disabled,
.chatbot-demo__prompt:disabled,
.chatbot-demo__composer textarea:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.chatbot-demo__fallback,
.chatbot-demo__fallback-noscript {
  margin: 0;
  color: var(--muted);
}

.chatbot-demo__fallback[hidden] {
  display: none;
}

.chatbot-demo__loading {
  display: inline-flex;
  gap: 0.3rem;
  align-items: center;
}

.chatbot-demo__loading span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: var(--radius-pill);
  background: rgba(13, 122, 102, 0.72);
  animation: chatbot-loading 0.9s infinite ease-in-out;
}

.chatbot-demo__loading span:nth-child(2) {
  animation-delay: 0.12s;
}

.chatbot-demo__loading span:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes chatbot-loading {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }

  40% {
    transform: translateY(-0.2rem);
    opacity: 1;
  }
}

.code-block {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--code-bg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.code-block pre,
.doc-content .highlight .code-block pre {
  margin-bottom: 0;
  padding-right: 7.5rem;
  box-shadow: none;
  overflow-x: auto;
}

.code-block__lang {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(237, 248, 244, 0.48);
  pointer-events: none;
  user-select: none;
}

.copy-button {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(216, 239, 232, 0.14);
  color: rgba(237, 248, 244, 0.82);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.3rem 0.64rem;
  cursor: pointer;
}

.copy-button:hover {
  background: rgba(216, 239, 232, 0.22);
  color: #ffffff;
}

.copy-button:focus-visible,
.search-button:focus-visible,
.nav-toggle:focus-visible,
.mobile-nav__close:focus-visible,
.search-dialog__close:focus-visible,
.search-dialog__input:focus-visible,
.section-nav__links a:focus-visible,
.top-nav a:focus-visible,
.prev-next__link:focus-visible,
.search-result:focus-visible,
.mobile-page-toc summary:focus-visible,
.page-toc a:focus-visible,
.mobile-page-toc a:focus-visible,
.chatbot-launcher:focus-visible,
.chatbot-overlay__close:focus-visible,
.chatbot-demo__prompt:focus-visible,
.chatbot-demo__send:focus-visible,
.chatbot-demo__composer textarea:focus-visible,
.chatbot-inline-open:focus-visible,
.theme-toggle:focus-visible,
.card:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: inset 0 0 0 1px var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(16, 34, 29, 0.05)),
    var(--surface-strong);
}

.table-wrap table {
  margin-bottom: 0;
}

.doc-content table {
  width: 100%;
  border-collapse: collapse;
  border-style: hidden;
}

.doc-content th,
.doc-content td {
  padding: 0.95rem 1rem;
  text-align: left;
  vertical-align: top;
  border: 1px solid var(--line);
}

.doc-content th {
  background: rgba(13, 122, 102, 0.08);
}

.doc-content blockquote {
  margin-left: 0;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--gold-soft);
}

.doc-content hr {
  border: 0;
  border-top: 1px solid var(--line);
}

.hero-grid,
.card-grid {
  display: grid;
  gap: 1rem;
}

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

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-panel,
.card,
.doc-callout {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-sm);
}

.hero-panel {
  padding: 1.25rem;
}

.hero-panel--accent {
  background:
    linear-gradient(155deg, rgba(13, 122, 102, 0.12), rgba(207, 154, 53, 0.12)),
    var(--surface-strong);
}

.hero-panel h2,
.hero-panel h3 {
  margin-bottom: 0.5em;
}

.hero-panel > :first-child,
.card > :first-child,
.doc-callout > :first-child {
  margin-top: 0;
}

.hero-panel > :last-child,
.card > :last-child,
.doc-callout > :last-child {
  margin-bottom: 0;
}

.hero-panel h2,
.hero-panel h3,
.hero-panel h4,
.doc-callout h2,
.doc-callout h3,
.doc-callout h4 {
  margin-top: 0;
}

.card {
  display: block;
  padding: 1.25rem;
  color: inherit;
  text-decoration: none;
  transition: transform var(--duration-fast) ease, border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 122, 102, 0.2);
  box-shadow: var(--shadow-md);
}

.card__eyebrow {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.card h3 {
  margin: 0 0 0.5em;
  font-size: 1.12rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.section-intro {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 50rem;
}

.hosted-url-block {
  margin: 1.5rem 0 2rem;
}

.doc-callout {
  padding: 1.25rem;
}

.card-grid + .doc-callout,
.hero-grid + .doc-callout {
  margin-top: 1.5rem;
}

.doc-callout--hero {
  background:
    radial-gradient(circle at top right, rgba(207, 154, 53, 0.16), transparent 14rem),
    linear-gradient(140deg, rgba(13, 122, 102, 0.92), rgba(11, 92, 78, 0.94));
  border-color: rgba(13, 122, 102, 0.4);
  color: #eff8f5;
}

.doc-callout--hero a,
.doc-callout--hero p,
.doc-callout--hero h2,
.doc-callout--hero strong {
  color: inherit;
}

.doc-callout--hero .doc-callout__eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.doc-callout--hero .code-block {
  margin-top: 1rem;
  background: rgba(9, 22, 18, 0.48);
}

.doc-callout--hero pre,
.doc-callout--hero .highlight pre {
  background: transparent;
}

.release-date {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.release-link {
  font-size: 0.88rem;
  color: var(--accent);
}

.doc-callout__title-row {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: start;
}

.doc-callout__title-row h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.doc-callout__title-row p {
  margin: 0.5rem 0 0;
  max-width: 36rem;
}

.meta-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.meta-list li {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.callout {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(13, 122, 102, 0.14);
  background: rgba(13, 122, 102, 0.06);
}

.page-toc {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.page-toc__card {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.page-toc [data-page-toc],
.mobile-page-toc [data-mobile-page-toc] {
  display: grid;
  gap: 0.32rem;
}

.page-toc a,
.mobile-page-toc a {
  display: block;
  padding: 0.34rem 0.15rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
  line-height: 1.4;
}

.page-toc a[data-level="3"],
.mobile-page-toc a[data-level="3"] {
  padding-left: 1rem;
  font-size: 0.9rem;
}

.page-toc a.is-active,
.mobile-page-toc a.is-active {
  color: var(--accent-deep);
  font-weight: 700;
}

.mobile-page-toc {
  display: none;
  margin: 0 0 1rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.mobile-page-toc summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink-soft);
}

.mobile-page-toc details[open] [data-mobile-page-toc] {
  margin-top: 0.8rem;
}

.prev-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.prev-next__link {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-height: 100%;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}

.prev-next__link--next {
  text-align: right;
}

.prev-next > .prev-next__link--next:only-child {
  grid-column: 2;
}

.prev-next__direction {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.site-footer {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.site-footer__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.site-footer__summary {
  margin: 0;
  color: var(--muted);
  max-width: 48rem;
}

.site-footer__links,
.site-footer__status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  color: var(--muted);
}

.site-footer__links a,
.site-footer__status a {
  color: inherit;
}

.mobile-nav {
  display: none;
}

.search-dialog[hidden],
.mobile-nav[hidden],
.page-toc[hidden],
.mobile-page-toc[hidden] {
  display: none !important;
}

.search-dialog {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: start center;
  padding: 5.5rem 1rem 1rem;
}

.search-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: var(--search-backdrop);
}

.search-dialog__panel {
  position: relative;
  width: min(860px, 100%);
  max-height: calc(100vh - 7rem);
  overflow: auto;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 28px 80px rgba(10, 19, 17, 0.28);
}

.search-dialog__header {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
}

.search-dialog__header h2 {
  margin: 0;
  font-size: 1.45rem;
}

.search-dialog__label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.search-dialog__input {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-strong);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.search-dialog__status {
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.search-results {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
  min-height: 1.5rem;
}

.search-results[data-loading="true"]::before {
  content: "Searching...";
  color: var(--muted);
  font-weight: 600;
  animation: search-pulse 1s ease-in-out infinite;
}

.search-result {
  display: block;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.search-result__meta {
  display: inline-flex;
  margin-bottom: 0.45rem;
  padding: 0.18rem 0.46rem;
  border-radius: var(--radius-pill);
  background: rgba(13, 122, 102, 0.08);
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-result h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.search-result p {
  margin: 0;
  color: var(--muted);
}

@keyframes search-pulse {
  0%,
  100% {
    opacity: 0.52;
  }

  50% {
    opacity: 1;
  }
}

.search-result mark {
  background: rgba(207, 154, 53, 0.22);
  color: inherit;
}

.search-button--wide {
  justify-content: space-between;
  width: 100%;
}

.mobile-nav__panel .top-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.mobile-nav__panel .top-nav a {
  justify-content: center;
}

.mobile-nav__actions {
  margin-top: 1rem;
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mobile-nav__eyebrow {
  margin: 0;
}

.rouge-table {
  margin-bottom: 0;
}

.highlight .c,
.highlight .c1,
.highlight .cm,
.highlight .cp {
  color: #8da8a0;
}

.highlight .err {
  color: #f7b2a7;
}

.highlight .k,
.highlight .kd,
.highlight .kn,
.highlight .kr,
.highlight .nt {
  color: #7ed1bb;
}

.highlight .na,
.highlight .nb,
.highlight .nc,
.highlight .nf,
.highlight .nx {
  color: #a8defd;
}

.highlight .mi,
.highlight .m,
.highlight .mf {
  color: #f4d38b;
}

.highlight .s,
.highlight .s1,
.highlight .s2,
.highlight .sb {
  color: #f7cfa3;
}

.highlight .o,
.highlight .ow,
.highlight .p {
  color: #d2ece4;
}

.highlight .gh,
.highlight .gp {
  color: #c4d8d1;
}

.highlight .gi {
  color: #99e0b4;
}

.highlight .gd {
  color: #f2a39c;
}

@media (max-width: 1080px) {
  .page-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-rail {
    display: none;
  }

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

@media (max-width: 960px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-nav__links {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.15rem;
  }

  .section-nav__links a {
    flex: 0 0 auto;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 80px;
  }

  .site-header__inner {
    padding: 0.9rem 1rem;
  }

  .top-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .search-button:not(.search-button--wide) {
    padding-inline: 0.8rem;
  }

  .search-button:not(.search-button--wide) .search-button__hint {
    display: none;
  }

  .page-shell {
    padding: 1rem 0.75rem 2rem;
  }

  .page-frame {
    padding: 1rem;
    border-radius: 24px;
  }

  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .prev-next {
    grid-template-columns: minmax(0, 1fr);
  }

  .search-dialog {
    padding-top: 4.75rem;
  }

  .search-dialog__panel {
    padding: 1rem;
  }

  .mobile-nav {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(10, 19, 17, 0.32);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 5rem 1rem 1rem;
  }

  .mobile-nav__panel {
    max-width: 24rem;
    margin-left: auto;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 24px 70px rgba(10, 19, 17, 0.24);
  }
}

@media (max-width: 520px) {
  .site-header__controls {
    gap: 0.45rem;
  }

  .search-button:not(.search-button--wide),
  .nav-toggle {
    min-height: 2.5rem;
    padding-inline: 0.8rem;
  }

  .page-header {
    padding: 1.3rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .doc-callout__title-row {
    flex-direction: column;
  }

  .chatbot-shell {
    right: 1rem;
    bottom: 1rem;
  }

  .chatbot-overlay__panel {
    left: 0;
    width: auto;
    border-left: 0;
  }

  .chatbot-overlay__prompts {
    grid-template-columns: 1fr;
  }
}

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }

  .skip-link,
  .site-header,
  .section-nav,
  .page-toc,
  .mobile-page-toc,
  .prev-next,
  .site-footer,
  .search-dialog,
  .chatbot-shell {
    display: none !important;
  }

  .page-shell {
    padding: 0;
  }

  .page-frame {
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
  }

  .page-layout {
    display: block;
  }

  .page-header {
    padding: 0 0 1rem;
    background: none;
    border: 0;
  }

  a,
  a:visited {
    color: #000000;
  }

  .doc-content a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    color: #555;
    word-break: break-all;
  }
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: #0d1815;
    --bg-accent: #12221d;
    --surface: rgba(16, 28, 24, 0.9);
    --surface-strong: #11211d;
    --surface-tint: rgba(20, 37, 31, 0.92);
    --ink: #e7f0ec;
    --ink-soft: #d3e5de;
    --muted: #9bb2aa;
    --line: rgba(231, 240, 236, 0.1);
    --line-strong: rgba(231, 240, 236, 0.16);
    --accent: #6fd0b8;
    --accent-deep: #8ce5cf;
    --accent-soft: rgba(111, 208, 184, 0.16);
    --gold: #f0be60;
    --gold-soft: rgba(240, 190, 96, 0.12);
    --danger: #ef9a89;
    --shadow-lg: 0 28px 72px rgba(0, 0, 0, 0.34);
    --shadow-md: 0 18px 42px rgba(0, 0, 0, 0.24);
    --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.22);
    --code-bg: #091310;
    --code-ink: #edf8f4;
    --search-backdrop: rgba(0, 0, 0, 0.64);
  }
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0d1815;
  --bg-accent: #12221d;
  --surface: rgba(16, 28, 24, 0.9);
  --surface-strong: #11211d;
  --surface-tint: rgba(20, 37, 31, 0.92);
  --ink: #e7f0ec;
  --ink-soft: #d3e5de;
  --muted: #9bb2aa;
  --line: rgba(231, 240, 236, 0.1);
  --line-strong: rgba(231, 240, 236, 0.16);
  --accent: #6fd0b8;
  --accent-deep: #8ce5cf;
  --accent-soft: rgba(111, 208, 184, 0.16);
  --gold: #f0be60;
  --gold-soft: rgba(240, 190, 96, 0.12);
  --danger: #ef9a89;
  --shadow-lg: 0 28px 72px rgba(0, 0, 0, 0.34);
  --shadow-md: 0 18px 42px rgba(0, 0, 0, 0.24);
  --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.22);
  --code-bg: #091310;
  --code-ink: #edf8f4;
  --search-backdrop: rgba(0, 0, 0, 0.64);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) body {
    background:
      radial-gradient(circle at top left, rgba(111, 208, 184, 0.16), transparent 22rem),
      radial-gradient(circle at top right, rgba(240, 190, 96, 0.1), transparent 18rem),
      linear-gradient(180deg, var(--bg-accent) 0%, var(--bg) 24rem);
  }
}

[data-theme="dark"] body {
  background:
    radial-gradient(circle at top left, rgba(111, 208, 184, 0.16), transparent 22rem),
    radial-gradient(circle at top right, rgba(240, 190, 96, 0.1), transparent 18rem),
    linear-gradient(180deg, var(--bg-accent) 0%, var(--bg) 24rem);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .site-header {
    background: rgba(13, 24, 21, 0.78);
  }

  :root:not([data-theme="light"]) .search-button,
  :root:not([data-theme="light"]) .nav-toggle,
  :root:not([data-theme="light"]) .mobile-nav__close,
  :root:not([data-theme="light"]) .search-dialog__close,
  :root:not([data-theme="light"]) .prev-next__link,
  :root:not([data-theme="light"]) .search-result,
  :root:not([data-theme="light"]) .mobile-page-toc,
  :root:not([data-theme="light"]) .page-toc__card {
    background: rgba(18, 33, 29, 0.92);
  }

  :root:not([data-theme="light"]) .section-nav__links a.is-active {
    background: var(--ink);
    color: var(--surface-strong);
  }

  :root:not([data-theme="light"]) .section-nav--animated .section-nav__links a:not(.is-active) {
    background: transparent;
  }

  :root:not([data-theme="light"]) .section-nav__indicator {
    background: var(--ink);
  }

  :root:not([data-theme="light"]) .search-dialog__panel,
  :root:not([data-theme="light"]) .mobile-nav__panel {
    background: rgba(13, 24, 21, 0.97);
    border-color: rgba(231, 240, 236, 0.1);
  }

  :root:not([data-theme="light"]) .page-frame {
    border-color: rgba(231, 240, 236, 0.06);
  }

  :root:not([data-theme="light"]) .breadcrumbs li:not(:last-child)::after {
    color: rgba(231, 240, 236, 0.28);
  }

  :root:not([data-theme="light"]) .top-nav__indicator {
    background:
      linear-gradient(135deg, rgba(17, 33, 29, 0.96), rgba(31, 62, 54, 0.94));
    box-shadow:
      inset 0 0 0 1px rgba(111, 208, 184, 0.16),
      0 12px 24px rgba(0, 0, 0, 0.24);
  }

  :root:not([data-theme="light"]) .search-dialog__input {
    background: rgba(9, 19, 16, 0.96);
    color: var(--ink);
  }

  :root:not([data-theme="light"]) .meta-list li,
  :root:not([data-theme="light"]) .card,
  :root:not([data-theme="light"]) .hero-panel,
  :root:not([data-theme="light"]) .doc-callout,
  :root:not([data-theme="light"]) .table-wrap,
  :root:not([data-theme="light"]) .chatbot-overlay__panel,
  :root:not([data-theme="light"]) .chatbot-demo__message--assistant .chatbot-demo__bubble {
    background: rgba(17, 33, 29, 0.92);
  }

  :root:not([data-theme="light"]) .doc-callout--hero {
    background:
      radial-gradient(circle at top right, rgba(240, 190, 96, 0.2), transparent 14rem),
      linear-gradient(140deg, rgba(16, 48, 41, 0.98), rgba(10, 31, 26, 0.98));
  }

  :root:not([data-theme="light"]) .chatbot-demo__thread,
  :root:not([data-theme="light"]) .chatbot-demo__composer textarea,
  :root:not([data-theme="light"]) .chatbot-demo__prompt,
  :root:not([data-theme="light"]) .chatbot-overlay__close {
    background: rgba(13, 24, 21, 0.92);
  }

  :root:not([data-theme="light"]) .chatbot-demo__message--error .chatbot-demo__bubble {
    background: rgba(67, 29, 24, 0.92);
  }

  :root:not([data-theme="light"]) .chatbot-overlay__backdrop {
    background: rgba(0, 0, 0, 0.56);
  }

  :root:not([data-theme="light"]) .chatbot-launcher {
    background: linear-gradient(145deg, rgba(17, 33, 29, 0.98), rgba(16, 48, 41, 0.98));
  }
}

[data-theme="dark"] .site-header {
  background: rgba(13, 24, 21, 0.78);
}

[data-theme="dark"] .search-button,
[data-theme="dark"] .nav-toggle,
[data-theme="dark"] .mobile-nav__close,
[data-theme="dark"] .search-dialog__close,
[data-theme="dark"] .prev-next__link,
[data-theme="dark"] .search-result,
[data-theme="dark"] .mobile-page-toc,
[data-theme="dark"] .page-toc__card {
  background: rgba(18, 33, 29, 0.92);
}

[data-theme="dark"] .section-nav__links a.is-active {
  background: var(--ink);
  color: var(--surface-strong);
}

[data-theme="dark"] .section-nav--animated .section-nav__links a:not(.is-active) {
  background: transparent;
}

[data-theme="dark"] .section-nav__indicator {
  background: var(--ink);
}

[data-theme="dark"] .search-dialog__panel,
[data-theme="dark"] .mobile-nav__panel {
  background: rgba(13, 24, 21, 0.97);
  border-color: rgba(231, 240, 236, 0.1);
}

[data-theme="dark"] .page-frame {
  border-color: rgba(231, 240, 236, 0.06);
}

[data-theme="dark"] .breadcrumbs li:not(:last-child)::after {
  color: rgba(231, 240, 236, 0.28);
}

[data-theme="dark"] .top-nav__indicator {
  background:
    linear-gradient(135deg, rgba(17, 33, 29, 0.96), rgba(31, 62, 54, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(111, 208, 184, 0.16),
    0 12px 24px rgba(0, 0, 0, 0.24);
}

[data-theme="dark"] .search-dialog__input {
  background: rgba(9, 19, 16, 0.96);
  color: var(--ink);
}

[data-theme="dark"] .meta-list li,
[data-theme="dark"] .card,
[data-theme="dark"] .hero-panel,
[data-theme="dark"] .doc-callout,
[data-theme="dark"] .table-wrap,
[data-theme="dark"] .chatbot-overlay__panel,
[data-theme="dark"] .chatbot-demo__message--assistant .chatbot-demo__bubble {
  background: rgba(17, 33, 29, 0.92);
}

[data-theme="dark"] .doc-callout--hero {
  background:
    radial-gradient(circle at top right, rgba(240, 190, 96, 0.2), transparent 14rem),
    linear-gradient(140deg, rgba(16, 48, 41, 0.98), rgba(10, 31, 26, 0.98));
}

[data-theme="dark"] .chatbot-demo__thread,
[data-theme="dark"] .chatbot-demo__composer textarea,
[data-theme="dark"] .chatbot-demo__prompt,
[data-theme="dark"] .chatbot-overlay__close {
  background: rgba(13, 24, 21, 0.92);
}

[data-theme="dark"] .chatbot-demo__message--error .chatbot-demo__bubble {
  background: rgba(67, 29, 24, 0.92);
}

[data-theme="dark"] .chatbot-overlay__backdrop {
  background: rgba(0, 0, 0, 0.56);
}

[data-theme="dark"] .chatbot-launcher {
  background: linear-gradient(145deg, rgba(17, 33, 29, 0.98), rgba(16, 48, 41, 0.98));
}
