/* src/globals/highlight.css */
:root {
  --hljs-comment: rgba(250, 248, 244, 0.52);
  --hljs-keyword: #f6c945;
  --hljs-string: #88d4a7;
  --hljs-number: #ffb17b;
  --hljs-built-in: #c9b4ff;
}
pre code.hljs,
code.hljs {
  display: block;
  color: var(--color-code-fg);
  background: transparent;
}
.hljs-comment {
  color: var(--hljs-comment);
}
.hljs-doctag,
.hljs-meta {
  color: rgba(250, 248, 244, 0.68);
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-tag {
  color: var(--hljs-keyword);
}
.hljs-string {
  color: var(--hljs-string);
}
.hljs-regexp {
  color: var(--hljs-string);
}
.hljs-number {
  color: var(--hljs-number);
}
.hljs-escape {
  color: var(--hljs-number);
}
.hljs-built_in,
.hljs-attribute {
  color: var(--hljs-built-in);
}
.hljs-namespace {
  color: var(--hljs-built-in);
}
.hljs-title,
.hljs-section {
  color: rgba(250, 248, 244, 0.96);
  font-weight: 650;
}
.hljs-literal {
  color: #ffd76b;
}
.hljs-name,
.hljs-attr,
.hljs-variable,
.hljs-symbol,
.hljs-bullet {
  color: rgba(250, 248, 244, 0.9);
}
.hljs-emphasis {
  font-style: italic;
}
.hljs-strong {
  font-weight: 650;
}

/* src/globals/global.css */
:root {
  --color-gold: #f6c945;
  --color-purple: #5b3ba2;
  --color-green: #3e9b65;
  --color-orange: #f47a28;
  --color-bg: #faf8f4;
  --color-fg: #1f1f1f;
  --color-muted: rgba(31, 31, 31, 0.72);
  --color-border: rgba(31, 31, 31, 0.12);
  --color-border-strong: rgba(31, 31, 31, 0.18);
  --color-surface: rgba(255, 255, 255, 0.72);
  --color-surface-2: rgba(255, 255, 255, 0.84);
  --color-surface-3: rgba(255, 255, 255, 0.94);
  --color-code-bg: #171513;
  --color-code-bg-2: #241d31;
  --color-code-fg: rgba(250, 248, 244, 0.94);
  --color-code-border: rgba(246, 201, 69, 0.2);
  --shadow: 0 10px 28px rgba(91, 59, 162, 0.08);
  --shadow-elevated: 0 24px 60px rgba(91, 59, 162, 0.14);
  --font-display:
    "Aeonik",
    "Satoshi",
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  --font-body:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  --font-mono:
    "JetBrains Mono",
    "Fira Code",
    "SFMono-Regular",
    Menlo,
    Consolas,
    monospace;
  --radius: 6px;
  --container: 1320px;
  --container-wide: 1720px;
  --text-max: 80ch;
  --gutter: 24px;
  --section-y: 96px;
  --section-y-mobile: 48px;
  --site-top-offset: 80px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  background:
    linear-gradient(
      180deg,
      #fffdf9 0%,
      var(--color-bg) 28%,
      #f4ede0 100%);
  color: var(--color-fg);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
body > main {
  flex: 1 0 auto;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      70% 60% at 18% 0%,
      rgba(246, 201, 69, 0.12),
      transparent 55%),
    radial-gradient(
      55% 45% at 100% 10%,
      rgba(91, 59, 162, 0.12),
      transparent 50%),
    radial-gradient(
      45% 55% at 70% 100%,
      rgba(62, 155, 101, 0.08),
      transparent 60%);
  opacity: 0.9;
  z-index: -1;
}
a {
  color: var(--color-fg);
  text-decoration: underline;
  text-decoration-color: var(--color-border-strong);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
a:hover,
a:focus-visible {
  text-decoration-color: var(--color-gold);
}
img {
  max-width: 100%;
  height: auto;
}
code,
pre {
  font-family: var(--font-mono);
}
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 0.65rem 0.9rem;
  background: var(--color-fg);
  color: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transform: translateY(-150%);
  transition: transform 160ms ease;
  z-index: 999;
}
.skip-link:focus-visible {
  transform: translateY(0);
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.site-top {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(17, 16, 15, 0.9);
  border-bottom: 1px solid rgba(250, 248, 244, 0.1);
  box-shadow: none;
  backdrop-filter: blur(16px);
}
.site-top .container,
.site-top .container-wide {
  max-width: 1120px;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.25rem, 6.5vw, 5.75rem) 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      70% 60% at 10% 0%,
      rgba(246, 201, 69, 0.22),
      transparent 60%),
    radial-gradient(
      60% 60% at 95% 0%,
      rgba(91, 59, 162, 0.22),
      transparent 60%),
    radial-gradient(
      55% 60% at 70% 100%,
      rgba(62, 155, 101, 0.12),
      transparent 65%);
  pointer-events: none;
}
.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 2rem;
  flex-wrap: wrap;
  min-height: 68px;
  padding: 0;
}
.site-header:has(.site-subnav) {
  min-height: 0;
  padding-top: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  min-width: 0;
  color: rgba(250, 248, 244, 0.94);
  text-decoration: none;
}
.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(250, 248, 244, 0.14);
  background: rgba(250, 248, 244, 0.08);
  box-shadow: none;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1;
  text-transform: lowercase;
}
.nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-left: auto;
  color: rgba(247, 243, 234, 0.6);
  font-size: 0.82rem;
  font-weight: 650;
  align-items: center;
}
.nav a {
  position: relative;
  text-decoration: none;
  color: inherit;
  padding: 0.35rem 0;
  border: 0;
  border-radius: 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.2rem;
  height: 1px;
  background: transparent;
  transform: scaleX(0.72);
  transition: background-color 160ms ease, transform 160ms ease;
}
.nav a:hover,
.nav a:focus-visible {
  color: rgba(250, 248, 244, 0.94);
}
.nav a[aria-current=page] {
  color: rgba(250, 248, 244, 0.94);
}
.nav a:hover::after,
.nav a:focus-visible::after,
.nav a[aria-current=page]::after {
  background: rgba(246, 201, 69, 0.86);
  transform: scaleX(1);
}
.site-subnav {
  display: flex;
  flex: 1 0 100%;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  width: 100%;
  padding: 0.5rem 0 0.45rem;
  border-top: 1px solid rgba(31, 31, 31, 0.08);
}
.site-subnav-parent {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 31, 31, 0.16);
  background:
    linear-gradient(
      135deg,
      rgba(246, 201, 69, 0.14),
      rgba(91, 59, 162, 0.14));
  color: var(--color-fg);
  font-family: var(--font-display);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.site-subnav-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(31, 31, 31, 0.7);
}
.site-subnav-links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.site-subnav-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(31, 31, 31, 0.04);
  color: var(--color-muted);
  text-decoration: none;
}
.site-subnav-links a:hover,
.site-subnav-links a:focus-visible {
  color: var(--color-fg);
  border-color: rgba(31, 31, 31, 0.12);
  background: rgba(31, 31, 31, 0.08);
}
.site-subnav-links a[aria-current=page] {
  color: var(--color-fg);
  border-color: rgba(246, 201, 69, 0.38);
  background:
    linear-gradient(
      135deg,
      rgba(246, 201, 69, 0.14),
      rgba(91, 59, 162, 0.12));
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-fg);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.1;
  transition:
    transform 140ms ease,
    background 140ms ease,
    border-color 140ms ease;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.button:hover,
.button:focus-visible {
  background: var(--color-surface-2);
  border-color: rgba(31, 31, 31, 0.18);
  transform: translateY(-1px);
}
.button-primary {
  border-color: rgba(246, 201, 69, 0.7);
  background:
    linear-gradient(
      135deg,
      rgba(246, 201, 69, 0.58),
      rgba(244, 122, 40, 0.38),
      rgba(91, 59, 162, 0.22));
  box-shadow: 0 14px 36px rgba(246, 201, 69, 0.18);
}
.button-primary:hover,
.button-primary:focus-visible {
  border-color: rgba(246, 201, 69, 0.82);
  background:
    linear-gradient(
      135deg,
      rgba(246, 201, 69, 0.68),
      rgba(244, 122, 40, 0.44),
      rgba(91, 59, 162, 0.26));
}
.button-quiet {
  border-color: transparent;
  background: transparent;
}
.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: rgba(31, 31, 31, 0.14);
  background: var(--color-surface);
}
.menu {
  position: relative;
}
.menu summary,
.menu .menu-trigger {
  list-style: none;
}
.menu summary::-webkit-details-marker {
  display: none;
}
.menu summary::after,
.menu .menu-trigger::after {
  content: "";
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.34rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  opacity: 0.68;
  transform: rotate(45deg) translateY(-0.12em);
  transition: transform 140ms ease;
}
.menu[open] summary::after,
.menu .menu-trigger[aria-expanded=true]::after {
  transform: rotate(225deg) translateY(-0.02em);
}
.menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 220;
  min-width: 224px;
  padding: 0.35rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface-3);
  box-shadow: var(--shadow-elevated);
}
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  min-height: 40px;
  padding: 0.54rem 0.62rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: rgba(31, 31, 31, 0.82);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 650;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.menu-item:hover,
.menu-item:focus-visible {
  border-color: rgba(31, 31, 31, 0.12);
  background: rgba(31, 31, 31, 0.06);
  color: var(--color-fg);
}
.menu-item small {
  flex: 0 0 auto;
  color: rgba(31, 31, 31, 0.55);
  font-size: 0.72rem;
  font-weight: 650;
}
.menu-sep {
  height: 1px;
  margin: 0.3rem 0.25rem;
  background: var(--color-border);
}
.menu-hint {
  max-width: 240px;
  padding: 0.45rem 0.62rem 0.52rem;
  color: rgba(31, 31, 31, 0.58);
  font-size: 0.74rem;
  line-height: 1.35;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 2.25rem;
  align-items: center;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 31, 31, 0.14);
  background: var(--color-surface);
  color: rgba(31, 31, 31, 0.75);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-copy p {
  max-width: 60ch;
  font-size: 1.12rem;
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.hero-search {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
  padding: 0.55rem 0.65rem;
  border-radius: calc(var(--radius) + 999px);
  border: 1px solid rgba(31, 31, 31, 0.14);
  background: var(--color-surface);
}
.hero-search-input {
  flex: 1;
  min-width: 12rem;
  padding: 0.55rem 0.65rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--color-fg);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
}
.hero-search-input::placeholder {
  color: rgba(31, 31, 31, 0.52);
}
.hero-search-actions {
  display: inline-flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.tabs {
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  overflow: hidden;
}
.tabs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0.45rem;
  border-bottom: 1px solid rgba(31, 31, 31, 0.12);
  background: rgba(255, 255, 255, 0.62);
}
.tabs-tab {
  border: 1px solid transparent;
  background: transparent;
  color: rgba(31, 31, 31, 0.7);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.92rem;
  line-height: 1.1;
}
.tabs-tab:hover,
.tabs-tab:focus-visible {
  color: var(--color-fg);
  background: rgba(31, 31, 31, 0.06);
  border-color: rgba(31, 31, 31, 0.12);
}
.tabs-tab[aria-selected=true] {
  color: var(--color-fg);
  background: rgba(31, 31, 31, 0.08);
  border-color: rgba(31, 31, 31, 0.18);
}
.tabs-panel {
  padding: 0.9rem 1rem;
}
.tabs-panel > * + * {
  margin-top: 0.9rem;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
}
.col-span-12 {
  grid-column: span 12;
}
.col-span-6 {
  grid-column: span 6;
}
.col-span-4 {
  grid-column: span 4;
}
.card {
  position: relative;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--color-border);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.84),
      rgba(255, 255, 255, 0.68));
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(
      120% 120% at 0% 0%,
      rgba(246, 201, 69, 0.22),
      transparent 50%),
    radial-gradient(
      120% 120% at 100% 10%,
      rgba(91, 59, 162, 0.22),
      transparent 55%),
    radial-gradient(
      100% 120% at 70% 100%,
      rgba(62, 155, 101, 0.14),
      transparent 60%);
  opacity: 0.65;
  pointer-events: none;
}
.card > * {
  position: relative;
}
.card-body {
  padding: 1.15rem 1.2rem;
}
.card-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}
.card-meta {
  margin-top: 0.45rem;
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}
.card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}
.card-links a {
  text-decoration: none;
}
.card:hover {
  border-color: rgba(31, 31, 31, 0.2);
  transform: translateY(-2px);
}
.card:focus-within {
  border-color: rgba(246, 201, 69, 0.55);
}
.panel {
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--color-border);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.84),
      rgba(255, 255, 255, 0.7));
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
}
.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(31, 31, 31, 0.14);
  background: rgba(255, 255, 255, 0.62);
}
.panel-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}
.panel-body {
  padding: 1rem;
}
.panel-body > * + * {
  margin-top: 0.9rem;
}
.hero-code-panel {
  align-self: center;
}
.hero-code-panel .panel-body {
  max-height: min(32rem, 54vh);
  max-height: clamp(20rem, 54svh, 32rem);
  overflow: auto;
  scrollbar-gutter: stable;
  scrollbar-color: rgba(250, 248, 244, 0.32) rgba(250, 248, 244, 0.06);
  scrollbar-width: thin;
  overscroll-behavior: contain;
}
.hero-code-panel pre {
  font-size: 0.76rem;
}
.hero-code-panel pre code {
  line-height: 1.38;
}
.hero-code-panel .panel-body::-webkit-scrollbar,
.site-dark pre::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.hero-code-panel .panel-body::-webkit-scrollbar-track,
.site-dark pre::-webkit-scrollbar-track {
  background: rgba(250, 248, 244, 0.06);
}
.hero-code-panel .panel-body::-webkit-scrollbar-thumb,
.site-dark pre::-webkit-scrollbar-thumb {
  border: 2px solid rgba(17, 16, 15, 0.86);
  border-radius: 999px;
  background: rgba(250, 248, 244, 0.28);
}
.mt-md {
  margin-top: 1rem;
}
.mt-lg {
  margin-top: 1.75rem;
}
.list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.74),
      rgba(255, 255, 255, 0.62));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.list-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(31, 31, 31, 0.12);
  text-decoration: none;
  color: inherit;
}
.list-row:first-child {
  border-top: 0;
}
.list-row:hover,
.list-row:focus-visible {
  background: rgba(31, 31, 31, 0.05);
}
.list-title {
  color: var(--color-fg);
  font-weight: 650;
  line-height: 1.25;
}
.list-desc {
  margin-top: 0.2rem;
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}
.list-meta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  color: rgba(31, 31, 31, 0.58);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  white-space: nowrap;
  margin-top: 0.1rem;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
}
h1 {
  font-size: 3.4rem;
  line-height: 1.1;
}
h2 {
  font-size: 1.8rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.4rem;
  line-height: 1.25;
}
h4 {
  font-size: 1.15rem;
  line-height: 1.35;
}
p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}
@media (max-width: 820px) {
  h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 2.4rem;
  }
}
.lede {
  font-size: 1.15rem;
}
.section {
  padding: var(--section-y) 0;
}
.prose {
  max-width: var(--text-max);
  line-height: 1.75;
}
.prose > * + * {
  margin-top: 1.15rem;
}
.prose h2 {
  margin-top: 2.5rem;
}
.prose h3 {
  margin-top: 2rem;
}
.prose h4 {
  margin-top: 1.4rem;
}
.prose h2,
.prose h3,
.prose h4 {
  scroll-margin-top: calc(1.25rem + var(--site-top-offset));
}
.prose ul,
.prose ol {
  margin: 0;
  padding-left: 1.25rem;
}
.prose li + li {
  margin-top: 0.5rem;
}
.prose dl {
  margin: 0;
}
.prose dt {
  margin-top: 1rem;
  font-weight: 650;
}
.prose dt:first-child {
  margin-top: 0;
}
.prose dd {
  margin: 0.25rem 0 0;
  color: var(--color-muted);
}
.prose dd + dt {
  margin-top: 1.5rem;
}
code {
  padding: 0.12em 0.32em;
  border-radius: 6px;
  border: 0;
  background: rgba(91, 59, 162, 0.08);
}
.prose a code {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-gold);
  font-weight: 650;
}
.prose h1 code,
.prose h2 code,
.prose h3 code,
.prose h4 code {
  font-family: inherit;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-gold);
  font-weight: 650;
}
pre {
  margin: 0;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-code-border);
  background:
    linear-gradient(
      180deg,
      var(--color-code-bg) 0%,
      var(--color-code-bg-2) 100%);
  color: var(--color-code-fg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 44px rgba(31, 31, 31, 0.16);
  overflow: auto;
}
pre code {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  line-height: 1.48;
}
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-border);
  background: transparent;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: rgba(31, 31, 31, 0.62);
  font-size: 0.95rem;
}
.footer-inner strong {
  color: var(--color-fg);
}
.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem 1rem;
}
.site-footer .page-edit {
  margin-inline-start: auto;
  color: inherit;
  white-space: nowrap;
}
.site-footer .page-edit:hover,
.site-footer .page-edit:focus-visible {
  color: var(--color-fg);
  text-decoration: underline;
}
.docs-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}
.docs-layout[data-has-toc=true] {
  grid-template-columns: 300px minmax(0, 1fr) 240px;
}
.spec-layout {
  grid-template-columns: 336px minmax(0, 1fr);
}
.spec-toc-wrap {
  padding: 1rem 0;
}
.spec-toc-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(31, 31, 31, 0.62);
  margin-bottom: 0.75rem;
}
.spec-toc {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.spec-toc a {
  display: block;
  padding: 0.45rem 0.55rem;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  color: rgba(31, 31, 31, 0.78);
  font-size: 0.93rem;
  line-height: 1.25;
}
.spec-toc a:hover,
.spec-toc a:focus-visible {
  border-color: var(--color-border);
  background: rgba(31, 31, 31, 0.06);
  color: var(--color-fg);
}
.spec-toc a[data-active=true] {
  border-color: var(--color-border);
  background: rgba(31, 31, 31, 0.08);
  color: var(--color-fg);
}
.spec-toc a[data-level=h2] {
  font-weight: 650;
}
.spec-toc a[data-level=h3] {
  padding-left: 1.05rem;
}
.spec-toc a[data-level=h4] {
  padding-left: 1.7rem;
  color: rgba(31, 31, 31, 0.7);
  font-size: 0.9rem;
}
.spec-toc a[data-level=h5] {
  padding-left: 2.35rem;
  color: rgba(31, 31, 31, 0.66);
  font-size: 0.88rem;
}
.spec-prose {
  max-width: 100ch;
}
.spec-prose h2,
.spec-prose h3,
.spec-prose h4,
.spec-prose h5 {
  scroll-margin-top: calc(1.5rem + var(--site-top-offset));
}
.docs-sidebar {
  position: sticky;
  top: calc(1.25rem + var(--site-top-offset));
  align-self: start;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.78),
      rgba(255, 255, 255, 0.68));
  box-shadow: var(--shadow-elevated);
  max-height: calc(100vh - 2.5rem);
  overflow: auto;
}
.docs-sidebar-header {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}
.docs-sidebar-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-fg);
  margin-bottom: 0.75rem;
}
.docs-search {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.76);
  color: var(--color-fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.docs-search::placeholder {
  color: rgba(31, 31, 31, 0.52);
}
.docs-nav {
  padding: 1rem 0;
}
.docs-results {
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
}
.docs-search-empty {
  color: rgba(31, 31, 31, 0.62);
  font-size: 0.95rem;
}
.docs-search-results {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.docs-search-result {
  display: block;
  padding: 0.55rem 0.6rem;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
}
.docs-search-result:hover,
.docs-search-result:focus-visible {
  border-color: var(--color-border);
  background: rgba(31, 31, 31, 0.06);
}
.docs-search-result[data-active=true] {
  border-color: var(--color-border);
  background: rgba(31, 31, 31, 0.08);
}
.docs-search-result-title {
  color: var(--color-fg);
  font-weight: 650;
  line-height: 1.25;
}
.docs-search-result-meta {
  margin-top: 0.15rem;
  color: rgba(31, 31, 31, 0.55);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.docs-search-result-summary {
  margin-top: 0.35rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.docs-nav-section {
  margin-top: 1rem;
  color: rgba(31, 31, 31, 0.55);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.docs-nav-section:first-child {
  margin-top: 0;
}
.docs-nav-list {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
}
.docs-nav-list li + li {
  margin-top: 0.15rem;
}
.docs-nav a {
  display: block;
  padding: 0.3rem 0.45rem;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(31, 31, 31, 0.72);
}
.docs-nav a:hover,
.docs-nav a:focus-visible {
  color: var(--color-fg);
  background: rgba(31, 31, 31, 0.06);
}
.docs-nav a[data-active=true] {
  color: var(--color-fg);
  background: rgba(31, 31, 31, 0.08);
}
.docs-content {
  max-width: none;
  min-width: 0;
}
.docs-breadcrumb {
  color: rgba(31, 31, 31, 0.58);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.docs-toc {
  position: sticky;
  top: calc(1.25rem + var(--site-top-offset));
  align-self: start;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.78),
      rgba(255, 255, 255, 0.68));
  box-shadow: var(--shadow-elevated);
  max-height: calc(100vh - 2.5rem);
  overflow: auto;
}
.docs-toc-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-fg);
}
.docs-toc-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}
.docs-toc-list li + li {
  margin-top: 0.35rem;
}
.docs-toc-list li[data-level=h3] {
  padding-left: 0.9rem;
}
.docs-toc-list a {
  color: rgba(31, 31, 31, 0.72);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.35;
}
.docs-toc-list a:hover,
.docs-toc-list a:focus-visible {
  color: var(--color-fg);
}
.docs-heading-anchor {
  margin-left: 0.5rem;
  font-size: 0.9em;
  opacity: 0;
  text-decoration: none;
  color: rgba(31, 31, 31, 0.55);
}
.prose h2:hover .docs-heading-anchor,
.prose h3:hover .docs-heading-anchor,
.prose h4:hover .docs-heading-anchor,
.docs-heading-anchor:focus-visible {
  opacity: 1;
}
.docs-inline-ref {
  color: var(--color-fg);
  text-decoration: underline;
  text-decoration-color: rgba(31, 31, 31, 0.35);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.docs-inline-ref code {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-gold);
  font-weight: 650;
}
.docs-inline-code {
  font-family: var(--font-mono);
  padding: 0.12em 0.32em;
  border-radius: 6px;
  border: 0;
  background: rgba(91, 59, 162, 0.08);
  color: var(--color-fg);
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.docs-inline-code:hover,
.docs-inline-code:focus-visible {
  background: rgba(246, 201, 69, 0.09);
  color: var(--color-fg);
}
.docs-hash-target {
  outline: 2px solid rgba(246, 201, 69, 0.55);
  outline-offset: 3px;
  border-radius: 8px;
  background: rgba(246, 201, 69, 0.08);
}
.prose h1 .docs-inline-code,
.prose h2 .docs-inline-code,
.prose h3 .docs-inline-code,
.prose h4 .docs-inline-code {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-gold);
}
.docs-inline-ref:hover,
.docs-inline-ref:focus-visible {
  text-decoration-color: rgba(246, 201, 69, 0.9);
}
.docs-prevnext {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.docs-prevnext-item {
  min-width: 0;
}
.docs-prevnext-link {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.74),
      rgba(255, 255, 255, 0.62));
  text-decoration: none;
  color: inherit;
}
.docs-prevnext-link:hover,
.docs-prevnext-link:focus-visible {
  background: rgba(31, 31, 31, 0.06);
}
.docs-prevnext-label {
  display: block;
  color: rgba(31, 31, 31, 0.55);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.docs-prevnext-title {
  display: block;
  margin-top: 0.25rem;
  color: var(--color-fg);
  font-weight: 650;
  line-height: 1.3;
}
.docs-nav code,
.docs-breadcrumb code,
.docs-search-result-title code,
.docs-prevnext-title code {
  font-family: inherit;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-gold);
  font-weight: 650;
}
.prose table {
  width: 100%;
  margin: 1.25rem 0 1.6rem;
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background:
    linear-gradient(
      180deg,
      rgba(91, 59, 162, 0.1),
      rgba(255, 255, 255, 0.76));
}
.prose th,
.prose td {
  padding: 0.7rem 0.85rem;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}
.prose th:last-child,
.prose td:last-child {
  border-right: 0;
}
.prose th {
  color: var(--color-fg);
  background: rgba(246, 201, 69, 0.09);
  font-weight: 650;
  text-align: left;
}
.prose tbody tr:nth-child(even) td {
  background: rgba(31, 31, 31, 0.02);
}
.prose tbody tr:hover td {
  background: rgba(246, 201, 69, 0.05);
}
.prose tr:last-child td {
  border-bottom: 0;
}
.prose th code,
.prose td code {
  white-space: nowrap;
}
.prose blockquote {
  margin: 0;
  padding: 0.2rem 1rem;
  border-left: 2px solid var(--color-border);
  color: var(--color-muted);
}
.prose details {
  margin: 0.8rem 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background:
    linear-gradient(
      180deg,
      var(--color-surface),
      rgba(255, 255, 255, 0.54));
  overflow: hidden;
}
.prose summary {
  cursor: pointer;
  padding: 0.78rem 0.95rem;
  color: var(--color-fg);
  font-weight: 700;
}
.prose summary:hover,
.prose summary:focus-visible {
  background: rgba(246, 201, 69, 0.07);
}
.prose details > :not(summary) {
  margin-left: 0.95rem;
  margin-right: 0.95rem;
}
.prose details > :last-child {
  margin-bottom: 0.95rem;
}
@media (max-width: 720px) {
  .container {
    padding: 0 18px;
  }
  .site-header {
    gap: 0.85rem 1.25rem;
    min-height: auto;
    padding: 0.9rem 0;
  }
  .site-header:has(.site-subnav) {
    padding-top: 1rem;
  }
  .brand-mark {
    width: 24px;
    height: 24px;
  }
  .brand-name {
    font-size: 1.25rem;
  }
  .nav {
    flex: 1 0 100%;
    gap: 1.15rem;
    margin-left: 0;
    font-size: 0.8rem;
  }
  .nav a::after {
    bottom: -0.35rem;
  }
  .site-subnav {
    gap: 0.65rem;
    padding: 0.55rem 0 0.35rem;
  }
  .site-subnav-parent {
    font-size: 0.88rem;
  }
  .site-subnav-links {
    gap: 0.4rem;
  }
  .section {
    padding: var(--section-y-mobile) 0;
  }
  .prose table {
    font-size: 0.94rem;
  }
  .prose th,
  .prose td {
    padding: 0.65rem 0.7rem;
  }
  .hero {
    padding: 3rem 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .col-span-6,
  .col-span-4 {
    grid-column: span 12;
  }
  .docs-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .docs-sidebar {
    position: relative;
    top: auto;
    max-height: none;
    padding: 0.95rem;
  }
  .docs-toc {
    display: none;
  }
  .docs-prevnext {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1180px) and (min-width: 721px) {
  .docs-layout,
  .docs-layout[data-has-toc=true] {
    grid-template-columns: 300px minmax(0, 1fr);
  }
  .col-span-4 {
    grid-column: span 6;
  }
  .docs-toc {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
.container-wide {
  max-width: var(--container-wide);
}
.site-dark {
  --color-bg: #11100f;
  --color-fg: #f7f3ea;
  --color-muted: rgba(247, 243, 234, 0.66);
  --color-border: rgba(250, 248, 244, 0.12);
  --color-border-strong: rgba(250, 248, 244, 0.22);
  --color-surface: rgba(250, 248, 244, 0.055);
  --color-surface-2: rgba(250, 248, 244, 0.085);
  --color-surface-3: rgba(250, 248, 244, 0.12);
  --color-code-bg: #151414;
  --color-code-bg-2: #1f1928;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  --shadow-elevated: 0 30px 80px rgba(0, 0, 0, 0.34);
  background: #11100f;
  color: var(--color-fg);
}
.site-dark::before {
  background:
    linear-gradient(rgba(250, 248, 244, 0.035) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(250, 248, 244, 0.035) 1px,
      transparent 1px),
    linear-gradient(
      180deg,
      rgba(91, 59, 162, 0.12),
      transparent 42%),
    linear-gradient(
      140deg,
      rgba(62, 155, 101, 0.08),
      transparent 46%);
  background-size:
    72px 72px,
    72px 72px,
    auto,
    auto;
  opacity: 1;
}
.site-dark .site-top {
  background: rgba(17, 16, 15, 0.9);
  border-bottom-color: rgba(250, 248, 244, 0.1);
  box-shadow: none;
}
.site-dark .brand,
.site-dark .footer-inner strong {
  color: var(--color-fg);
}
.site-dark .brand-mark {
  border-color: rgba(250, 248, 244, 0.18);
  background: rgba(250, 248, 244, 0.08);
  box-shadow: 0 0 0 1px rgba(246, 201, 69, 0.08);
}
.site-dark .nav {
  color: rgba(247, 243, 234, 0.64);
}
.site-dark .nav a {
  padding: 0.35rem 0;
}
.site-dark .nav a:hover,
.site-dark .nav a:focus-visible {
  color: var(--color-fg);
}
.site-dark .nav a[aria-current=page] {
  color: var(--color-fg);
}
.site-dark .button {
  border-color: rgba(250, 248, 244, 0.14);
  background: rgba(250, 248, 244, 0.06);
  color: var(--color-fg);
}
.site-dark .button:hover,
.site-dark .button:focus-visible {
  border-color: rgba(246, 201, 69, 0.42);
  background: rgba(250, 248, 244, 0.1);
}
.site-dark .button-primary {
  border-color: rgba(246, 201, 69, 0.68);
  background:
    linear-gradient(
      135deg,
      rgba(246, 201, 69, 0.92),
      rgba(244, 122, 40, 0.72));
  color: #1f1f1f;
  box-shadow: 0 16px 40px rgba(246, 201, 69, 0.12);
}
.site-dark .button-primary:hover,
.site-dark .button-primary:focus-visible {
  background:
    linear-gradient(
      135deg,
      #f6c945,
      #f47a28);
  color: #1f1f1f;
}
.site-dark .menu-panel {
  border-color: rgba(250, 248, 244, 0.12);
  background: rgba(20, 18, 23, 0.96);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}
.site-dark .menu-item {
  color: rgba(247, 243, 234, 0.82);
}
.site-dark .menu-item:hover,
.site-dark .menu-item:focus-visible {
  border-color: rgba(246, 201, 69, 0.24);
  background: rgba(250, 248, 244, 0.08);
  color: var(--color-fg);
}
.site-dark .menu-item small,
.site-dark .menu-hint {
  color: rgba(247, 243, 234, 0.54);
}
.site-dark .menu-sep {
  background: rgba(250, 248, 244, 0.1);
}
.site-dark .site-subnav {
  border-top-color: rgba(250, 248, 244, 0.08);
}
.site-dark .site-subnav-label {
  color: rgba(247, 243, 234, 0.52);
}
.site-dark .site-subnav-parent {
  border-color: rgba(250, 248, 244, 0.16);
  background: rgba(250, 248, 244, 0.07);
  color: var(--color-fg);
}
.site-dark .site-subnav-links a {
  color: rgba(247, 243, 234, 0.62);
  background: rgba(250, 248, 244, 0.04);
}
.site-dark .site-subnav-links a:hover,
.site-dark .site-subnav-links a:focus-visible,
.site-dark .site-subnav-links a[aria-current=page] {
  color: var(--color-fg);
  border-color: rgba(246, 201, 69, 0.28);
  background: rgba(250, 248, 244, 0.08);
}
.site-dark .hero::before {
  background:
    linear-gradient(rgba(250, 248, 244, 0.035) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(250, 248, 244, 0.035) 1px,
      transparent 1px),
    linear-gradient(
      120deg,
      rgba(91, 59, 162, 0.14),
      transparent 52%);
  background-size:
    84px 84px,
    84px 84px,
    auto;
}
.site-dark .hero-kicker {
  border-color: rgba(250, 248, 244, 0.14);
  background: rgba(250, 248, 244, 0.06);
  color: rgba(247, 243, 234, 0.74);
}
.site-dark .panel,
.site-dark .card,
.site-dark .list {
  border-color: rgba(250, 248, 244, 0.12);
  background: rgba(250, 248, 244, 0.045);
  box-shadow: var(--shadow);
}
.site-dark .card::before {
  background:
    linear-gradient(
      135deg,
      rgba(246, 201, 69, 0.14),
      transparent 48%),
    linear-gradient(
      210deg,
      rgba(91, 59, 162, 0.18),
      transparent 56%);
  opacity: 1;
}
.site-dark .panel-header {
  border-bottom-color: rgba(250, 248, 244, 0.1);
  background: rgba(250, 248, 244, 0.045);
}
.site-dark .card-title,
.site-dark .list-title,
.site-dark .panel-title {
  color: var(--color-fg);
}
.site-dark .card-meta,
.site-dark .list-desc,
.site-dark p {
  color: var(--color-muted);
}
.site-dark .list-row {
  border-top-color: rgba(250, 248, 244, 0.1);
}
.site-dark .list-row:hover,
.site-dark .list-row:focus-visible {
  background: rgba(250, 248, 244, 0.06);
}
.site-dark .list-meta,
.site-dark .footer-inner {
  color: rgba(247, 243, 234, 0.54);
}
.site-dark code {
  background: rgba(246, 201, 69, 0.1);
  color: rgba(247, 243, 234, 0.92);
}
.site-dark pre code {
  background: transparent;
  color: inherit;
}
.site-dark pre {
  border-color: rgba(250, 248, 244, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 44px rgba(0, 0, 0, 0.24);
}
.site-dark .site-footer {
  border-top-color: rgba(250, 248, 244, 0.1);
}
.section-heading {
  max-width: 760px;
}
.section-heading h2,
.docs-hub-tech-copy h2,
.coming-soon-copy h1,
.docs-hub-copy h1,
.tech-hero-copy h1 {
  letter-spacing: 0;
}
.section-kicker {
  margin-bottom: 0.8rem;
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tech-hero,
.docs-hub-hero,
.coming-soon {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(250, 248, 244, 0.08);
}
.tech-hero-grid,
.docs-hub-grid,
.coming-soon-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(250, 248, 244, 0.05) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(250, 248, 244, 0.05) 1px,
      transparent 1px);
  background-size: 88px 88px;
  opacity: 0.4;
  mask-image:
    linear-gradient(
      to bottom,
      black 0%,
      black 72%,
      transparent 100%);
}
.tech-system-map {
  position: absolute;
  inset: 8rem max(5vw, calc((100vw - var(--container)) / 2)) 6rem auto;
  width: min(390px, 28vw);
  pointer-events: none;
}
.system-map-frame {
  position: relative;
  height: 100%;
  min-height: 460px;
}
.system-map-line {
  position: absolute;
  background: rgba(250, 248, 244, 0.16);
}
.system-map-line-main {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(246, 201, 69, 0.34),
      rgba(62, 155, 101, 0.24),
      transparent);
}
.system-map-line-runtime,
.system-map-line-silk,
.system-map-line-virtnosis {
  left: 21%;
  width: 58%;
  height: 1px;
}
.system-map-line-runtime {
  top: 22%;
}
.system-map-line-silk {
  top: 50%;
}
.system-map-line-virtnosis {
  top: 78%;
}
.system-node {
  position: absolute;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 0.1rem;
  width: min(245px, 100%);
  padding: 0.95rem 0 0.95rem 1rem;
  border-left: 1px solid rgba(250, 248, 244, 0.22);
  background:
    linear-gradient(
      90deg,
      rgba(250, 248, 244, 0.07),
      transparent 82%);
  color: rgba(247, 243, 234, 0.9);
}
.system-node strong {
  font-size: 1rem;
}
.system-node small {
  color: rgba(247, 243, 234, 0.52);
  font-size: 0.82rem;
}
.node-runtime {
  left: 0;
  top: 16%;
}
.node-silk {
  right: 0;
  top: 44%;
  border-left-color: rgba(91, 59, 162, 0.5);
}
.node-virtnosis {
  left: 10%;
  top: 72%;
  border-left-color: rgba(62, 155, 101, 0.46);
}
.tech-hero-copy,
.docs-hub-copy,
.coming-soon-copy {
  position: relative;
  z-index: 2;
  padding: 7rem 0;
}
.tech-hero-copy {
  max-width: 720px;
}
.docs-hub-copy,
.coming-soon-copy {
  max-width: 820px;
}
.tech-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--color-fg);
  font-size: 4.75rem;
  line-height: 1;
}
.docs-hub-copy h1,
.coming-soon-copy h1 {
  max-width: 820px;
  margin: 0;
  color: var(--color-fg);
  font-size: 5.1rem;
  line-height: 0.98;
}
.tech-hero-copy p,
.docs-hub-copy p,
.coming-soon-copy p {
  max-width: 680px;
  margin-top: 1.25rem;
  font-size: 1.16rem;
  line-height: 1.62;
}
.technology-section,
.docs-hub-section {
  padding: 5.5rem 0;
}
.technology-section {
  position: relative;
  border-top: 1px solid rgba(250, 248, 244, 0.08);
  overflow: hidden;
}
.technology-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(250, 248, 244, 0.035) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(250, 248, 244, 0.035) 1px,
      transparent 1px);
  background-size: 88px 88px;
  opacity: 0.42;
  mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      black 18%,
      black 82%,
      transparent 100%);
}
.technology-section-silk {
  background: rgba(91, 59, 162, 0.035);
}
.technology-section-virtnosis {
  background: rgba(62, 155, 101, 0.026);
}
.technology-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: 5rem;
  align-items: center;
}
.technology-layout-reverse {
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 0.95fr);
}
.technology-layout-reverse .technology-copy {
  order: 2;
}
.technology-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--color-fg);
  font-size: 3.4rem;
  line-height: 1.04;
  letter-spacing: 0;
}
.technology-copy p {
  max-width: 680px;
  margin-top: 1.15rem;
  font-size: 1.06rem;
  line-height: 1.65;
}
.technology-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 680px;
  margin-top: 1.6rem;
  padding: 0;
  list-style: none;
}
.technology-feature-list li {
  position: relative;
  min-width: 0;
  min-height: 86px;
  padding: 0.86rem 0.95rem 0.88rem;
  overflow: hidden;
  border: 1px solid rgba(250, 248, 244, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(
      135deg,
      rgba(250, 248, 244, 0.072),
      rgba(250, 248, 244, 0.022)),
    linear-gradient(
      90deg,
      rgba(246, 201, 69, 0.14),
      transparent 32%);
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}
.technology-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  bottom: 0.8rem;
  width: 2px;
  border-radius: 999px;
  background: var(--color-gold);
}
.technology-feature-list li:nth-child(2)::before {
  background: var(--color-purple);
}
.technology-feature-list li:nth-child(3)::before {
  background: var(--color-green);
}
.technology-feature-list li:nth-child(4)::before {
  background: var(--color-orange);
}
.technology-feature-list li:hover {
  border-color: rgba(246, 201, 69, 0.32);
  background-color: rgba(250, 248, 244, 0.035);
  transform: translateY(-1px);
}
.technology-feature-list strong {
  display: block;
  color: var(--color-fg);
  font-size: 0.96rem;
  line-height: 1.25;
}
.technology-feature-list small {
  display: block;
  margin-top: 0.28rem;
  color: rgba(247, 243, 234, 0.58);
  font-size: 0.82rem;
  line-height: 1.45;
}
.technology-feature-list code {
  padding: 0.08rem 0.28rem;
  font-size: 0.78em;
}
.technology-feature-list span {
  min-width: 0;
  padding: 0.62rem 0.8rem;
  border: 1px solid rgba(250, 248, 244, 0.11);
  border-radius: 999px;
  background: rgba(250, 248, 244, 0.04);
  color: rgba(247, 243, 234, 0.78);
  font-size: 0.93rem;
  font-weight: 700;
}
.technology-code pre {
  margin: 0;
  font-size: 0.9rem;
}
.technology-code {
  min-width: 0;
}
.runtime-example {
  display: grid;
  gap: 0.8rem;
}
.runtime-code-tabs {
  border-color: rgba(250, 248, 244, 0.13);
  border-radius: 8px;
  background: rgba(18, 15, 22, 0.86);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}
.runtime-code-tabs .tabs-list {
  gap: 0.35rem;
  padding: 0.42rem;
  border-bottom-color: rgba(250, 248, 244, 0.1);
  background: rgba(250, 248, 244, 0.035);
}
.runtime-code-tabs .tabs-tab {
  min-height: 34px;
  padding: 0.42rem 0.72rem;
  color: rgba(247, 243, 234, 0.58);
  font-size: 0.82rem;
}
.runtime-code-tabs .tabs-tab:hover,
.runtime-code-tabs .tabs-tab:focus-visible {
  border-color: rgba(246, 201, 69, 0.32);
  background: rgba(250, 248, 244, 0.07);
  color: var(--color-fg);
}
.runtime-code-tabs .tabs-tab[aria-selected=true] {
  border-color: rgba(246, 201, 69, 0.42);
  background: rgba(246, 201, 69, 0.12);
  color: var(--color-fg);
}
.runtime-code-tabs .tabs-panel {
  padding: 0;
}
.runtime-code-tabs pre {
  max-height: 360px;
  overflow: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.technology-section-silk .technology-code pre {
  max-height: 560px;
  overflow: auto;
}
.technology-section-virtnosis .technology-code pre {
  max-height: 520px;
  overflow: auto;
}
.runtime-command {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  padding: 0.62rem 0.75rem;
  border: 1px solid rgba(250, 248, 244, 0.12);
  border-radius: 8px;
  background: rgba(250, 248, 244, 0.045);
}
.runtime-command span {
  color: rgba(247, 243, 234, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.runtime-command pre {
  padding: 0.35rem 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.technology-links,
.docs-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.technology-links {
  margin-top: 1.55rem;
}
.technology-links a,
.docs-selector a,
.docs-link-group a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.58rem 0.75rem;
  border: 1px solid rgba(250, 248, 244, 0.12);
  border-radius: 999px;
  background: rgba(250, 248, 244, 0.045);
  color: var(--color-fg);
  text-decoration: none;
  font-weight: 700;
}
.technology-links a:hover,
.technology-links a:focus-visible,
.docs-selector a:hover,
.docs-selector a:focus-visible,
.docs-link-group a:hover,
.docs-link-group a:focus-visible {
  border-color: rgba(246, 201, 69, 0.4);
  background: rgba(250, 248, 244, 0.08);
}
.coming-soon {
  min-height: 840px;
}
.blog-lanes {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.blog-lanes article,
.blog-placeholder,
.docs-link-group {
  border: 1px solid rgba(250, 248, 244, 0.12);
  border-radius: 8px;
  background: rgba(250, 248, 244, 0.045);
}
.blog-lanes article {
  padding: 1rem;
}
.blog-lanes span {
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.blog-lanes h2 {
  margin-top: 0.6rem;
  font-size: 1.35rem;
}
.blog-lanes p {
  margin-top: 0.55rem;
  font-size: 0.98rem;
}
.blog-placeholder {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  margin-top: 1rem;
  padding: 1.2rem;
}
.blog-placeholder h2 {
  font-size: 1.7rem;
}
.docs-hub-hero {
  min-height: 600px;
}
.docs-selector {
  position: relative;
  z-index: 2;
  margin-top: 1.8rem;
}
.docs-hub-tech {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: start;
}
.docs-hub-tech-copy h2 {
  max-width: 680px;
  font-size: 3rem;
  line-height: 1.04;
}
.docs-hub-tech-copy p {
  max-width: 620px;
  margin-top: 1rem;
}
.docs-link-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.docs-link-group {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
  padding: 0.95rem;
}
.docs-link-group h3 {
  color: var(--color-fg);
  font-size: 1.1rem;
  letter-spacing: 0;
}
.docs-link-group a {
  justify-content: flex-start;
  border-radius: 8px;
}
.docs-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr) 44px minmax(0, 1fr) 44px minmax(0, 1fr);
  gap: 0.35rem;
  align-items: center;
  margin-top: 2rem;
}
.docs-flow div {
  display: grid;
  min-height: 74px;
  place-items: center;
  border: 1px solid rgba(250, 248, 244, 0.12);
  border-radius: 8px;
  background: rgba(250, 248, 244, 0.045);
  color: var(--color-fg);
  font-weight: 800;
}
.docs-flow span {
  height: 1px;
  background: rgba(246, 201, 69, 0.5);
}
.docs-flow-silk span {
  background: rgba(62, 155, 101, 0.5);
}
.docs-landing-page {
  background: #11100f;
}
.docs-landing-main {
  position: relative;
  border-top: 1px solid rgba(250, 248, 244, 0.08);
  background:
    linear-gradient(rgba(250, 248, 244, 0.035) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(250, 248, 244, 0.035) 1px,
      transparent 1px),
    radial-gradient(
      circle at 22% 12%,
      rgba(246, 201, 69, 0.08),
      transparent 32%),
    radial-gradient(
      circle at 88% 18%,
      rgba(91, 59, 162, 0.12),
      transparent 34%),
    #11100f;
  background-size:
    48px 48px,
    48px 48px,
    auto,
    auto,
    auto;
}
.docs-landing-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 280px minmax(0, 920px) 220px;
  gap: 2.75rem;
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 3rem var(--gutter) 5rem;
}
.docs-landing-sidebar,
.docs-landing-toc {
  position: sticky;
  top: 112px;
  align-self: start;
}
.docs-landing-sidebar {
  max-height: calc(100vh - 140px);
  overflow: auto;
  padding-right: 1.25rem;
  border-right: 1px solid rgba(250, 248, 244, 0.1);
}
.docs-sidebar-home {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  color: var(--color-fg);
  font-weight: 800;
  text-decoration: none;
}
.docs-sidebar-nav {
  display: grid;
  gap: 1.8rem;
  margin-top: 1.5rem;
}
.docs-sidebar-nav section {
  display: grid;
  gap: 0.22rem;
}
.docs-sidebar-nav h2,
.docs-landing-toc p,
.docs-landing-kicker {
  color: rgba(250, 248, 244, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.docs-sidebar-nav a,
.docs-landing-toc a {
  display: flex;
  min-height: 34px;
  align-items: center;
  border-radius: 8px;
  color: rgba(250, 248, 244, 0.74);
  text-decoration: none;
}
.docs-sidebar-nav a {
  padding: 0.28rem 0.55rem;
}
.docs-sidebar-nav a:hover,
.docs-sidebar-nav a:focus-visible,
.docs-landing-toc a:hover,
.docs-landing-toc a:focus-visible {
  background: rgba(250, 248, 244, 0.06);
  color: var(--color-fg);
}
.docs-landing-content {
  min-width: 0;
}
.docs-landing-intro {
  padding: 1.2rem 0 2.5rem;
  border-bottom: 1px solid rgba(250, 248, 244, 0.1);
}
.docs-landing-content h1 {
  max-width: 760px;
  margin-top: 0.85rem;
  color: var(--color-fg);
  font-size: 3.45rem;
  line-height: 1.03;
}
.docs-landing-content h2 {
  max-width: 700px;
  color: var(--color-fg);
  font-size: 2.3rem;
  line-height: 1.08;
}
.docs-landing-content p {
  color: rgba(250, 248, 244, 0.7);
  line-height: 1.65;
}
.docs-landing-intro > p:not(.docs-landing-kicker) {
  max-width: 760px;
  margin-top: 1rem;
  font-size: 1.05rem;
}
.docs-quick-select {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}
.docs-quick-select a {
  display: grid;
  gap: 0.35rem;
  min-height: 112px;
  align-content: center;
  padding: 1rem;
  border: 1px solid rgba(250, 248, 244, 0.12);
  border-radius: 8px;
  background: rgba(250, 248, 244, 0.045);
  color: var(--color-fg);
  text-decoration: none;
}
.docs-quick-select a:first-child {
  border-color: rgba(246, 201, 69, 0.26);
}
.docs-quick-select a:last-child {
  border-color: rgba(91, 59, 162, 0.34);
}
.docs-quick-select a:hover,
.docs-quick-select a:focus-visible,
.docs-section-action:hover,
.docs-section-action:focus-visible,
.docs-link-block a:hover,
.docs-link-block a:focus-visible {
  border-color: rgba(246, 201, 69, 0.5);
  background: rgba(250, 248, 244, 0.075);
}
.docs-quick-select span {
  font-weight: 900;
}
.docs-quick-select small,
.docs-link-block small {
  color: rgba(250, 248, 244, 0.58);
  line-height: 1.45;
}
.docs-tech-section {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(250, 248, 244, 0.1);
}
.docs-tech-heading {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.docs-tech-heading h2 {
  margin-top: 0.7rem;
}
.docs-section-action {
  display: inline-flex;
  flex-shrink: 0;
  min-width: 150px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(246, 201, 69, 0.34);
  border-radius: 999px;
  background: rgba(246, 201, 69, 0.08);
  color: var(--color-fg);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.docs-tech-summary {
  max-width: 780px;
  margin-top: 1rem;
}
.docs-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 2rem;
}
.docs-link-block {
  min-width: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(250, 248, 244, 0.12);
}
.docs-link-block h3 {
  color: var(--color-fg);
  font-size: 1rem;
}
.docs-link-block a {
  display: grid;
  gap: 0.18rem;
  margin-top: 0.7rem;
  min-height: 72px;
  padding: 0.82rem 0.9rem;
  border: 1px solid rgba(250, 248, 244, 0.1);
  border-radius: 8px;
  background: rgba(250, 248, 244, 0.035);
  color: var(--color-fg);
  text-decoration: none;
}
.docs-link-block span {
  font-weight: 800;
}
.docs-link-block code {
  background: rgba(246, 201, 69, 0.12);
  color: var(--color-gold);
}
.docs-landing-toc {
  display: grid;
  gap: 0.18rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(250, 248, 244, 0.1);
}
.docs-landing-toc p {
  margin-bottom: 0.35rem;
  color: var(--color-fg);
}
.docs-landing-toc a {
  padding: 0.25rem 0.5rem;
  font-size: 0.92rem;
}
.product-page .hero h1 {
  max-width: 760px;
  font-size: 4.4rem;
  line-height: 1;
  letter-spacing: 0;
}
.product-page .hero {
  padding: 5.25rem 0;
  border-bottom: 1px solid rgba(250, 248, 244, 0.08);
}
.product-page .section {
  border-top: 1px solid rgba(250, 248, 244, 0.06);
}
.learn-copy {
  position: relative;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(250, 248, 244, 0.28);
  border-radius: 6px;
  background: rgba(250, 248, 244, 0.08);
  color: rgba(250, 248, 244, 0.92);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.learn-copy::before,
.learn-copy::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 2px;
}
.learn-copy::before {
  left: 10px;
  top: 8px;
  opacity: 0.72;
}
.learn-copy::after {
  left: 14px;
  top: 12px;
  background: rgba(6, 5, 7, 0.92);
}
.learn-copy:hover,
.learn-copy:focus-visible {
  border-color: rgba(246, 201, 69, 0.62);
  background: rgba(250, 248, 244, 0.14);
  color: #fffdf9;
}
.learn-copy[data-copy-state=copied] {
  border-color: rgba(62, 155, 101, 0.58);
  color: #8fd4aa;
}
.learn-copy[data-copy-state=failed] {
  border-color: rgba(244, 122, 40, 0.58);
  color: #ffb17f;
}
.docs-page .section {
  padding: 2.2rem 0 4.5rem;
}
.docs-page .docs-layout {
  gap: 2.75rem;
}
.docs-page .docs-layout[data-has-toc=true] {
  grid-template-columns: 300px minmax(0, 900px) 260px;
}
.docs-page .docs-sidebar,
.docs-page .docs-toc {
  border-color: rgba(250, 248, 244, 0.12);
  background: rgba(250, 248, 244, 0.035);
  box-shadow: none;
}
.docs-page .docs-sidebar {
  border-radius: 0;
  border-width: 0 1px 0 0;
  padding-right: 1.2rem;
}
.docs-page .docs-toc {
  border-radius: 0;
  border-width: 0 0 0 1px;
  padding-left: 1.2rem;
}
.docs-page .docs-sidebar-header {
  border-bottom-color: rgba(250, 248, 244, 0.1);
}
.docs-page .docs-sidebar-title,
.docs-page .docs-toc-title,
.docs-page .docs-search-result-title,
.docs-page .docs-prevnext-title,
.docs-page .docs-content h1,
.docs-page .docs-content h2,
.docs-page .docs-content h3,
.docs-page .docs-content h4 {
  color: var(--color-fg);
}
.docs-page .docs-search {
  border-color: rgba(250, 248, 244, 0.14);
  background: rgba(250, 248, 244, 0.055);
  color: var(--color-fg);
}
.docs-page .docs-search::placeholder {
  color: rgba(247, 243, 234, 0.44);
}
.docs-page .docs-nav-section,
.docs-page .docs-search-result-meta,
.docs-page .docs-breadcrumb,
.docs-page .docs-prevnext-label,
.docs-page .spec-toc-title {
  color: rgba(247, 243, 234, 0.48);
}
.docs-page .docs-nav a,
.docs-page .docs-toc-list a,
.docs-page .spec-toc a {
  color: rgba(247, 243, 234, 0.62);
}
.docs-page .docs-nav a:hover,
.docs-page .docs-nav a:focus-visible,
.docs-page .docs-nav a[data-active=true],
.docs-page .docs-toc-list a:hover,
.docs-page .docs-toc-list a:focus-visible,
.docs-page .spec-toc a:hover,
.docs-page .spec-toc a:focus-visible,
.docs-page .spec-toc a[data-active=true] {
  color: var(--color-fg);
  background: rgba(250, 248, 244, 0.07);
}
.docs-page .docs-content .prose,
.docs-page .spec-prose {
  max-width: 92ch;
}
.docs-page .docs-content .prose > h1:first-child,
.docs-page .spec-prose > h1:first-child {
  font-size: 3.05rem;
  line-height: 1.05;
  letter-spacing: 0;
}
.docs-page .docs-content p,
.docs-page .docs-content li,
.docs-page .docs-content dd,
.docs-page .spec-prose p,
.docs-page .spec-prose li,
.docs-page .spec-prose dd {
  color: rgba(247, 243, 234, 0.68);
}
.docs-layout .prose ul,
.docs-layout .prose ol,
.spec-prose ul,
.spec-prose ol {
  display: grid;
  gap: 0.55rem;
  margin: 1.1rem 0;
  padding: 0;
  list-style: none;
}
.docs-layout .prose li,
.spec-prose li {
  position: relative;
  margin: 0;
  padding: 0.72rem 0.86rem 0.72rem 1rem;
  border: 1px solid rgba(31, 31, 31, 0.1);
  border-left: 2px solid rgba(246, 201, 69, 0.44);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
}
.docs-layout .prose li + li,
.spec-prose li + li {
  margin-top: 0;
}
.docs-layout .prose ol,
.spec-prose ol {
  counter-reset: docs-ordered-list;
}
.docs-layout .prose ol > li,
.spec-prose ol > li {
  counter-increment: docs-ordered-list;
  padding-left: 2.75rem;
}
.docs-layout .prose ol > li::before,
.spec-prose ol > li::before {
  content: counter(docs-ordered-list);
  position: absolute;
  left: 0.78rem;
  top: 0.72rem;
  display: inline-grid;
  place-items: center;
  min-width: 1.32rem;
  height: 1.32rem;
  padding: 0 0.18rem;
  border: 1px solid rgba(246, 201, 69, 0.38);
  border-radius: 999px;
  background: rgba(246, 201, 69, 0.12);
  color: var(--color-gold);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
}
.docs-layout .prose li > p:first-child,
.spec-prose li > p:first-child {
  margin-top: 0;
}
.docs-layout .prose li > p:last-child,
.spec-prose li > p:last-child {
  margin-bottom: 0;
}
.docs-layout .prose li > ul,
.docs-layout .prose li > ol,
.spec-prose li > ul,
.spec-prose li > ol {
  gap: 0.42rem;
  margin: 0.64rem 0 0;
}
.docs-layout .prose li > ul > li,
.docs-layout .prose li > ol > li,
.spec-prose li > ul > li,
.spec-prose li > ol > li {
  padding-top: 0.56rem;
  padding-bottom: 0.56rem;
  background: rgba(31, 31, 31, 0.035);
}
.site-dark .docs-layout .prose li,
.site-dark .spec-prose li,
.docs-page .docs-layout .prose li,
.docs-page .spec-prose li {
  border-color: rgba(250, 248, 244, 0.1);
  border-left-color: rgba(246, 201, 69, 0.46);
  background: rgba(250, 248, 244, 0.045);
}
.site-dark .docs-layout .prose li > ul > li,
.site-dark .docs-layout .prose li > ol > li,
.site-dark .spec-prose li > ul > li,
.site-dark .spec-prose li > ol > li,
.docs-page .docs-layout .prose li > ul > li,
.docs-page .docs-layout .prose li > ol > li,
.docs-page .spec-prose li > ul > li,
.docs-page .spec-prose li > ol > li {
  background: rgba(250, 248, 244, 0.035);
}
.docs-page .docs-inline-ref {
  color: var(--color-fg);
  text-decoration-color: rgba(246, 201, 69, 0.35);
}
.docs-page .docs-inline-code,
.docs-page .prose code {
  background: rgba(250, 248, 244, 0.08);
  color: rgba(247, 243, 234, 0.92);
}
.docs-page .prose pre {
  padding: 0;
}
.docs-page .prose pre code,
.docs-page .prose pre code.hljs {
  display: block;
  padding: 1rem;
  background: transparent;
}
.docs-page .prose h1 code,
.docs-page .prose h2 code,
.docs-page .prose h3 code,
.docs-page .prose h4 code,
.docs-page .docs-nav code,
.docs-page .docs-breadcrumb code,
.docs-page .docs-search-result-title code,
.docs-page .docs-prevnext-title code {
  background: transparent;
  color: var(--color-gold);
}
.docs-page .prose table {
  border-color: rgba(250, 248, 244, 0.12);
  background: rgba(250, 248, 244, 0.035);
}
.docs-page .prose th,
.docs-page .prose td {
  border-color: rgba(250, 248, 244, 0.1);
}
.docs-page .prose th {
  background: rgba(246, 201, 69, 0.08);
}
.docs-page .prose tbody tr:nth-child(even) td {
  background: rgba(250, 248, 244, 0.025);
}
.docs-page .prose blockquote {
  border-left-color: rgba(246, 201, 69, 0.42);
}
.docs-page .prose details {
  border-color: rgba(250, 248, 244, 0.12);
  background: rgba(250, 248, 244, 0.045);
}
.docs-page .prose summary:hover,
.docs-page .prose summary:focus-visible {
  background: rgba(250, 248, 244, 0.07);
}
.docs-page .docs-prevnext {
  border-top-color: rgba(250, 248, 244, 0.1);
}
.docs-page .docs-prevnext-link {
  border-color: rgba(250, 248, 244, 0.12);
  background: rgba(250, 248, 244, 0.045);
}
.docs-page .docs-prevnext-link:hover,
.docs-page .docs-prevnext-link:focus-visible {
  background: rgba(250, 248, 244, 0.08);
}
@media (max-width: 1180px) {
  .tech-hero-copy h1,
  .docs-hub-copy h1,
  .coming-soon-copy h1,
  .product-page .hero h1 {
    font-size: 3.7rem;
  }
  .tech-system-map {
    opacity: 0.26;
    width: 38vw;
  }
  .technology-layout,
  .technology-layout-reverse,
  .docs-hub-tech,
  .blog-placeholder {
    grid-template-columns: 1fr;
  }
  .technology-layout-reverse .technology-copy {
    order: 0;
  }
  .docs-link-groups,
  .blog-lanes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .docs-page .docs-layout,
  .docs-page .docs-layout[data-has-toc=true] {
    grid-template-columns: 300px minmax(0, 1fr);
  }
  .docs-page .docs-toc {
    display: none;
  }
  .docs-landing-shell {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 2rem;
  }
  .docs-landing-toc {
    display: none;
  }
}
@media (max-width: 820px) {
  .tech-hero,
  .docs-hub-hero,
  .coming-soon {
    min-height: auto;
  }
  .tech-hero-copy,
  .docs-hub-copy,
  .coming-soon-copy {
    padding: 4.25rem 0 3rem;
  }
  .tech-hero-copy h1,
  .docs-hub-copy h1,
  .coming-soon-copy h1,
  .product-page .hero h1,
  .docs-page .docs-content .prose > h1:first-child,
  .docs-page .spec-prose > h1:first-child {
    font-size: 2.75rem;
    line-height: 1.04;
  }
  .tech-system-map {
    display: none;
  }
  .technology-section,
  .docs-hub-section {
    padding: 3.5rem 0;
  }
  .technology-copy h2,
  .docs-hub-tech-copy h2 {
    font-size: 2.25rem;
  }
  .technology-feature-list,
  .docs-link-groups,
  .blog-lanes,
  .docs-flow {
    grid-template-columns: 1fr;
  }
  .docs-flow span {
    width: 1px;
    height: 28px;
    justify-self: center;
  }
  .docs-page .docs-sidebar,
  .docs-page .docs-toc {
    border-width: 1px;
    border-radius: 8px;
  }
  .docs-page .docs-layout,
  .docs-page .docs-layout[data-has-toc=true] {
    grid-template-columns: minmax(0, 1fr);
  }
  .docs-landing-shell {
    display: block;
    padding: 2rem var(--gutter) 3.5rem;
  }
  .docs-landing-sidebar {
    display: none;
  }
  .docs-landing-content h1 {
    font-size: 2.65rem;
  }
  .docs-landing-content h2 {
    font-size: 2rem;
  }
  .docs-quick-select,
  .docs-link-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .docs-tech-heading {
    display: block;
  }
  .docs-section-action {
    margin-top: 1rem;
  }
}
@media (max-width: 520px) {
  .tech-hero-copy h1,
  .docs-hub-copy h1,
  .coming-soon-copy h1,
  .product-page .hero h1 {
    font-size: 2.35rem;
  }
  .technology-feature-list li,
  .technology-feature-list span,
  .blog-placeholder,
  .docs-link-group {
    padding: 0.9rem;
  }
  .runtime-command {
    grid-template-columns: minmax(0, 1fr);
  }
  .runtime-code-tabs pre {
    max-height: 300px;
  }
  .docs-sidebar-nav {
    grid-template-columns: minmax(0, 1fr);
  }
  .docs-landing-content h1 {
    font-size: 2.25rem;
  }
  .docs-landing-content h2 {
    font-size: 1.8rem;
  }
}
body:not(.editorial-layout) {
  background:
    linear-gradient(
      180deg,
      #fffdf9 0%,
      var(--color-bg) 54%,
      #f5eee1 100%);
  color: var(--color-fg);
}
body.site-dark {
  --color-bg: #faf8f4;
  --color-fg: #1f1f1f;
  --color-muted: rgba(31, 31, 31, 0.66);
  --color-border: rgba(31, 31, 31, 0.12);
  --color-border-strong: rgba(31, 31, 31, 0.2);
  --color-surface: rgba(255, 255, 255, 0.54);
  --color-surface-2: rgba(255, 255, 255, 0.74);
  --color-surface-3: rgba(255, 255, 255, 0.9);
  --color-code-bg: #171513;
  --color-code-bg-2: #241d31;
  --color-code-fg: rgba(250, 248, 244, 0.94);
  --shadow: none;
  --shadow-elevated: none;
  background:
    linear-gradient(
      180deg,
      #fffdf9 0%,
      var(--color-bg) 54%,
      #f5eee1 100%);
  color: var(--color-fg);
}
body:not(.editorial-layout)::before,
body.site-dark::before {
  content: none;
}
body:not(.editorial-layout) .site-top {
  background: rgba(250, 248, 244, 0.92);
  border-bottom: 1px solid rgba(31, 31, 31, 0.08);
  box-shadow: none;
  backdrop-filter: blur(16px);
}
body:not(.editorial-layout) .site-top .container,
body:not(.editorial-layout) .site-top .container-wide {
  max-width: 1180px;
}
body:not(.editorial-layout) .site-header {
  min-height: 72px;
  gap: 0.9rem 1.5rem;
}
body:not(.editorial-layout) .brand,
body:not(.editorial-layout) .nav a,
body:not(.editorial-layout) .footer-inner strong {
  color: var(--color-fg);
}
body:not(.editorial-layout) .brand-mark {
  border-color: rgba(31, 31, 31, 0.14);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}
body:not(.editorial-layout) .nav {
  gap: 1.35rem;
  color: rgba(31, 31, 31, 0.54);
}
body:not(.editorial-layout) .nav a {
  color: inherit;
}
body:not(.editorial-layout) .nav a::after {
  bottom: -1.05rem;
}
body:not(.editorial-layout) .nav a:hover,
body:not(.editorial-layout) .nav a:focus-visible,
body:not(.editorial-layout) .nav a[aria-current=page] {
  color: var(--color-fg);
}
body:not(.editorial-layout) .site-subnav {
  border-top-color: rgba(31, 31, 31, 0.08);
}
body:not(.editorial-layout) .site-subnav-label {
  color: rgba(31, 31, 31, 0.54);
}
body:not(.editorial-layout) .site-subnav-parent {
  border-color: rgba(31, 31, 31, 0.14);
  background: rgba(255, 255, 255, 0.58);
  color: var(--color-fg);
}
body:not(.editorial-layout) .site-subnav-links a {
  background: rgba(255, 255, 255, 0.42);
  color: rgba(31, 31, 31, 0.62);
}
body:not(.editorial-layout) .site-subnav-links a:hover,
body:not(.editorial-layout) .site-subnav-links a:focus-visible,
body:not(.editorial-layout) .site-subnav-links a[aria-current=page] {
  border-color: rgba(91, 59, 162, 0.28);
  background: rgba(255, 255, 255, 0.76);
  color: var(--color-fg);
}
body:not(.editorial-layout) .hero,
body:not(.editorial-layout) .coming-soon {
  min-height: auto;
  padding: 6rem 0 4rem;
  overflow: visible;
}
body:not(.editorial-layout) .hero::before,
body:not(.editorial-layout) .coming-soon-grid {
  content: none;
  display: none;
}
body:not(.editorial-layout) .hero-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.7fr);
  gap: 4rem;
  align-items: start;
}
body:not(.editorial-layout) .hero-copy,
body:not(.editorial-layout) .coming-soon-copy {
  max-width: 840px;
  padding: 0;
}
body:not(.editorial-layout) .hero-kicker,
body:not(.editorial-layout) .section-kicker,
body:not(.editorial-layout) .docs-landing-kicker {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-purple);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body:not(.editorial-layout) .hero h1,
body:not(.editorial-layout) .coming-soon-copy h1,
body:not(.editorial-layout) .docs-landing-content h1 {
  max-width: 940px;
  margin-top: 0.9rem;
  color: var(--color-fg);
  font-size: 4.2rem;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
}
body:not(.editorial-layout) .hero-copy p,
body:not(.editorial-layout) .docs-landing-intro > p:not(.docs-landing-kicker),
body:not(.editorial-layout) .docs-tech-summary {
  max-width: 680px;
  margin-top: 1.25rem;
  color: var(--color-muted);
  font-size: 1.08rem;
  line-height: 1.65;
}
body:not(.editorial-layout) .button {
  min-height: 42px;
  border-radius: 999px;
  border-color: rgba(31, 31, 31, 0.14);
  background: rgba(255, 255, 255, 0.54);
  color: var(--color-fg);
  box-shadow: none;
}
body:not(.editorial-layout) .button:hover,
body:not(.editorial-layout) .button:focus-visible {
  border-color: rgba(31, 31, 31, 0.24);
  background: rgba(255, 255, 255, 0.86);
}
body:not(.editorial-layout) .button-primary {
  border-color: rgba(31, 31, 31, 0.9);
  background: var(--color-fg);
  color: var(--color-bg);
  box-shadow: 0 14px 32px rgba(31, 31, 31, 0.12);
}
body:not(.editorial-layout) .button-primary:hover,
body:not(.editorial-layout) .button-primary:focus-visible {
  border-color: rgba(31, 31, 31, 0.9);
  background: #000;
  color: var(--color-bg);
}
body:not(.editorial-layout) .button-quiet {
  border-color: transparent;
  background: transparent;
  color: rgba(31, 31, 31, 0.66);
}
body:not(.editorial-layout) .button-quiet:hover,
body:not(.editorial-layout) .button-quiet:focus-visible {
  border-color: rgba(31, 31, 31, 0.14);
  background: rgba(255, 255, 255, 0.58);
  color: var(--color-fg);
}
body:not(.editorial-layout) .section {
  padding: 5rem 0;
}
body:not(.editorial-layout) .section + .section,
body:not(.editorial-layout) .hero + .section {
  border-top: 1px solid rgba(31, 31, 31, 0.1);
}
body:not(.editorial-layout) .docs-sidebar,
body:not(.editorial-layout) .docs-toc {
  border-color: var(--color-border);
  background: transparent;
  box-shadow: none;
}
body:not(.editorial-layout) .panel,
body:not(.editorial-layout) .docs-prevnext-link,
body:not(.editorial-layout) .docs-quick-select a {
  border-color: rgba(31, 31, 31, 0.12);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}
body:not(.editorial-layout) .panel-header {
  border-bottom-color: rgba(31, 31, 31, 0.1);
  background: rgba(255, 255, 255, 0.42);
}
body:not(.editorial-layout) .card-grid {
  gap: 0;
  border-top: 1px solid rgba(31, 31, 31, 0.12);
}
body:not(.editorial-layout) .card {
  border: 0;
  border-bottom: 1px solid rgba(31, 31, 31, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
body:not(.editorial-layout) .card::before {
  content: none;
}
body:not(.editorial-layout) .card-body {
  padding: 1.35rem 1.35rem 1.35rem 0;
}
body:not(.editorial-layout) .card:hover {
  border-color: rgba(31, 31, 31, 0.16);
  transform: none;
}
body:not(.editorial-layout) .list {
  border: 0;
  border-top: 1px solid rgba(31, 31, 31, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body:not(.editorial-layout) .list-row {
  padding: 1.15rem 0;
  border-top-color: rgba(31, 31, 31, 0.12);
}
body:not(.editorial-layout) .list-row:first-child {
  border-top: 0;
}
body:not(.editorial-layout) .list-row:hover,
body:not(.editorial-layout) .list-row:focus-visible {
  background: transparent;
}
body:not(.editorial-layout) .site-footer {
  border-top-color: rgba(31, 31, 31, 0.12);
}
body:not(.editorial-layout) .footer-inner {
  color: rgba(31, 31, 31, 0.58);
}
body:not(.editorial-layout) .docs-landing-main {
  padding: 0;
  border-top: 0;
  background: transparent;
}
body:not(.editorial-layout) .docs-landing-shell {
  max-width: 1280px;
  padding-top: 5rem;
}
body:not(.editorial-layout) .docs-landing-sidebar,
body:not(.editorial-layout) .docs-landing-toc {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body:not(.editorial-layout) .docs-sidebar-home {
  color: var(--color-fg);
}
body:not(.editorial-layout) .docs-sidebar-nav h2,
body:not(.editorial-layout) .docs-landing-toc p {
  color: rgba(31, 31, 31, 0.58);
}
body:not(.editorial-layout) .docs-sidebar-nav a,
body:not(.editorial-layout) .docs-landing-toc a {
  color: rgba(31, 31, 31, 0.68);
}
body:not(.editorial-layout) .docs-sidebar-nav a:hover,
body:not(.editorial-layout) .docs-sidebar-nav a:focus-visible,
body:not(.editorial-layout) .docs-landing-toc a:hover,
body:not(.editorial-layout) .docs-landing-toc a:focus-visible {
  background: rgba(31, 31, 31, 0.05);
  color: var(--color-fg);
}
body:not(.editorial-layout) .docs-landing-content p {
  color: var(--color-muted);
}
body:not(.editorial-layout) .docs-quick-select a,
body:not(.editorial-layout) .docs-link-block a {
  border-color: rgba(31, 31, 31, 0.12);
  background: var(--color-bg);
  color: var(--color-fg);
}
body:not(.editorial-layout) .docs-quick-select a:first-child,
body:not(.editorial-layout) .docs-quick-select a:last-child {
  border-color: rgba(31, 31, 31, 0.12);
}
body:not(.editorial-layout) .docs-quick-select small,
body:not(.editorial-layout) .docs-link-block small {
  color: rgba(31, 31, 31, 0.58);
}
body:not(.editorial-layout) .docs-quick-select a:hover,
body:not(.editorial-layout) .docs-quick-select a:focus-visible,
body:not(.editorial-layout) .docs-link-block a:hover,
body:not(.editorial-layout) .docs-link-block a:focus-visible {
  border-color: var(--color-border-strong);
  background: linear-gradient(rgba(31, 31, 31, 0.05), rgba(31, 31, 31, 0.05)), var(--color-bg);
}
body:not(.editorial-layout) .docs-landing-content h2,
body:not(.editorial-layout) .docs-tech-heading h2 {
  color: var(--color-fg);
  font-size: 2.45rem;
  line-height: 1.08;
  letter-spacing: 0;
}
body:not(.editorial-layout) .docs-section-action {
  border-color: rgba(31, 31, 31, 0.14);
  background: rgba(255, 255, 255, 0.54);
  color: var(--color-fg);
  box-shadow: none;
}
body:not(.editorial-layout) .docs-tech-section {
  border-top-color: rgba(31, 31, 31, 0.12);
  border-bottom-color: rgba(31, 31, 31, 0.12);
}
body:not(.editorial-layout) .docs-link-block {
  border-top-color: rgba(31, 31, 31, 0.12);
  background: transparent;
}
body:not(.editorial-layout) .docs-link-block code {
  background: rgba(246, 201, 69, 0.16);
  color: #8a6415;
}
body:not(.editorial-layout).docs-page .section {
  padding-top: 2.25rem;
}
body:not(.editorial-layout).docs-page .container {
  max-width: 1480px;
}
body:not(.editorial-layout).docs-page .docs-content .prose > h1:first-child,
body:not(.editorial-layout).docs-page .spec-prose > h1:first-child {
  color: var(--color-fg);
}
body:not(.editorial-layout) .button,
body:not(.editorial-layout) .site-subnav-parent,
body:not(.editorial-layout) .site-subnav-links a,
body:not(.editorial-layout) .tabs,
body:not(.editorial-layout) .tabs-tab,
body:not(.editorial-layout) .panel,
body:not(.editorial-layout) .docs-search,
body:not(.editorial-layout) .docs-search-result,
body:not(.editorial-layout) .docs-prevnext-link,
body:not(.editorial-layout) .docs-quick-select a,
body:not(.editorial-layout) .docs-link-block a,
body:not(.editorial-layout) .docs-section-action {
  border-radius: var(--radius);
}
body:not(.editorial-layout) code,
body:not(.editorial-layout).docs-page .prose code {
  border-radius: 4px;
  background: rgba(246, 201, 69, 0.16);
  color: #6d4d0e;
}
body:not(.editorial-layout) pre {
  border-color: rgba(246, 201, 69, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(
      180deg,
      #171513 0%,
      #241d31 100%);
  color: rgba(250, 248, 244, 0.94);
  box-shadow: none;
}
body:not(.editorial-layout) pre code,
body:not(.editorial-layout) pre code.hljs,
body:not(.editorial-layout).docs-page .prose pre code,
body:not(.editorial-layout).docs-page .prose pre code.hljs {
  background: transparent;
  color: inherit;
}
body:not(.editorial-layout).docs-page .prose pre {
  border-radius: var(--radius);
  background:
    linear-gradient(
      180deg,
      #171513 0%,
      #241d31 100%);
  color: rgba(250, 248, 244, 0.94);
}
@media (max-width: 980px) {
  body:not(.editorial-layout) .site-top .container,
  body:not(.editorial-layout) .site-top .container-wide {
    max-width: none;
  }
  body:not(.editorial-layout) .nav {
    flex: 1 1 100%;
    flex-wrap: nowrap;
    gap: 0.72rem;
    width: 100%;
    padding-bottom: 0.75rem;
    overflow-x: auto;
    font-size: 0.82rem;
    white-space: nowrap;
    scrollbar-width: none;
  }
  body:not(.editorial-layout) .nav::-webkit-scrollbar {
    display: none;
  }
  body:not(.editorial-layout) .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
  body:not(.editorial-layout) .hero h1,
  body:not(.editorial-layout) .coming-soon-copy h1,
  body:not(.editorial-layout) .docs-landing-content h1 {
    font-size: 3.15rem;
  }
  body:not(.editorial-layout) .docs-landing-shell {
    padding-top: 3.25rem;
  }
}
@media (max-width: 560px) {
  body:not(.editorial-layout) .hero,
  body:not(.editorial-layout) .coming-soon {
    padding: 3rem 0 3.5rem;
  }
  body:not(.editorial-layout) .hero h1,
  body:not(.editorial-layout) .coming-soon-copy h1,
  body:not(.editorial-layout) .docs-landing-content h1 {
    font-size: 2.55rem;
    line-height: 1.02;
  }
  body:not(.editorial-layout) .hero-actions .button {
    width: 100%;
  }
  body:not(.editorial-layout) .section {
    padding: 3.5rem 0;
  }
}
body:not(.editorial-layout) .card-title,
body:not(.editorial-layout) .list-title,
body:not(.editorial-layout) .panel-title,
body:not(.editorial-layout) .docs-hub-tech-copy h2,
body:not(.editorial-layout) .docs-link-group h3,
body:not(.editorial-layout) .docs-flow div,
body:not(.editorial-layout) .runtime-command,
body:not(.editorial-layout) .docs-landing-content h1,
body:not(.editorial-layout) .docs-landing-content h2,
body:not(.editorial-layout) .docs-tech-heading h2,
body:not(.editorial-layout) .docs-quick-select span,
body:not(.editorial-layout) .docs-link-block h3,
body:not(.editorial-layout) .docs-link-block span,
body:not(.editorial-layout).docs-page .docs-sidebar-title,
body:not(.editorial-layout).docs-page .docs-toc-title,
body:not(.editorial-layout).docs-page .docs-search-result-title,
body:not(.editorial-layout).docs-page .docs-prevnext-title,
body:not(.editorial-layout).docs-page .docs-content h1,
body:not(.editorial-layout).docs-page .docs-content h2,
body:not(.editorial-layout).docs-page .docs-content h3,
body:not(.editorial-layout).docs-page .docs-content h4,
body:not(.editorial-layout).docs-page .spec-prose h1,
body:not(.editorial-layout).docs-page .spec-prose h2,
body:not(.editorial-layout).docs-page .spec-prose h3,
body:not(.editorial-layout).docs-page .spec-prose h4 {
  color: var(--color-fg);
}
body:not(.editorial-layout) .card-meta,
body:not(.editorial-layout) .list-desc,
body:not(.editorial-layout) .panel-body p,
body:not(.editorial-layout) .blog-lanes p,
body:not(.editorial-layout) .blog-placeholder p,
body:not(.editorial-layout) .docs-hub-tech-copy p,
body:not(.editorial-layout) .runtime-command span,
body:not(.editorial-layout) .docs-landing-content p,
body:not(.editorial-layout) .docs-tech-summary,
body:not(.editorial-layout) .docs-quick-select small,
body:not(.editorial-layout) .docs-link-block small,
body:not(.editorial-layout).docs-page .docs-content p,
body:not(.editorial-layout).docs-page .docs-content li,
body:not(.editorial-layout).docs-page .docs-content dd,
body:not(.editorial-layout).docs-page .spec-prose p,
body:not(.editorial-layout).docs-page .spec-prose li,
body:not(.editorial-layout).docs-page .spec-prose dd,
body:not(.editorial-layout).docs-page .docs-search-result-summary {
  color: var(--color-muted);
}
body:not(.editorial-layout).docs-page .docs-nav-section,
body:not(.editorial-layout).docs-page .docs-search-result-meta,
body:not(.editorial-layout).docs-page .docs-breadcrumb,
body:not(.editorial-layout).docs-page .docs-prevnext-label,
body:not(.editorial-layout).docs-page .spec-toc-title {
  color: rgba(31, 31, 31, 0.48);
}
body:not(.editorial-layout).docs-page .docs-nav a,
body:not(.editorial-layout).docs-page .docs-toc-list a,
body:not(.editorial-layout).docs-page .spec-toc a {
  color: rgba(31, 31, 31, 0.64);
}
body:not(.editorial-layout).docs-page .docs-nav a:hover,
body:not(.editorial-layout).docs-page .docs-nav a:focus-visible,
body:not(.editorial-layout).docs-page .docs-nav a[data-active=true],
body:not(.editorial-layout).docs-page .docs-toc-list a:hover,
body:not(.editorial-layout).docs-page .docs-toc-list a:focus-visible,
body:not(.editorial-layout).docs-page .spec-toc a:hover,
body:not(.editorial-layout).docs-page .spec-toc a:focus-visible,
body:not(.editorial-layout).docs-page .spec-toc a[data-active=true] {
  background: rgba(31, 31, 31, 0.05);
  color: var(--color-fg);
}
body:not(.editorial-layout).docs-page .docs-search::placeholder {
  color: rgba(31, 31, 31, 0.44);
}
body:not(.editorial-layout).product-page .hero,
body:not(.editorial-layout).product-page .section,
body:not(.editorial-layout) .docs-landing-intro,
body:not(.editorial-layout) .docs-tech-section,
body:not(.editorial-layout) .docs-link-block,
body:not(.editorial-layout).docs-page .docs-sidebar-header,
body:not(.editorial-layout).docs-page .docs-prevnext {
  border-color: rgba(31, 31, 31, 0.1);
}
body:not(.editorial-layout) .runtime-command,
body:not(.editorial-layout) .technology-links a,
body:not(.editorial-layout) .docs-selector a,
body:not(.editorial-layout) .docs-link-group,
body:not(.editorial-layout) .docs-link-group a,
body:not(.editorial-layout) .blog-lanes article,
body:not(.editorial-layout) .blog-placeholder,
body:not(.editorial-layout) .docs-flow div,
body:not(.editorial-layout).docs-page .docs-search,
body:not(.editorial-layout).docs-page .docs-search-result,
body:not(.editorial-layout).docs-page .docs-prevnext-link,
body:not(.editorial-layout).docs-page .prose details {
  border-color: rgba(31, 31, 31, 0.12);
  background: rgba(255, 255, 255, 0.5);
}
body:not(.editorial-layout) .learn-copy {
  color: rgba(250, 248, 244, 0.72);
}
body:not(.editorial-layout) .learn-copy {
  border-color: rgba(250, 248, 244, 0.28);
  background: rgba(250, 248, 244, 0.08);
}
body:not(.editorial-layout) .learn-copy::after {
  background: #171513;
}
body:not(.editorial-layout) .learn-copy:hover,
body:not(.editorial-layout) .learn-copy:focus-visible {
  background: rgba(250, 248, 244, 0.06);
  color: rgba(250, 248, 244, 0.94);
}
body:not(.editorial-layout).docs-page .docs-layout .prose li,
body:not(.editorial-layout).docs-page .spec-prose li {
  border-color: rgba(31, 31, 31, 0.1);
  border-left-color: rgba(246, 201, 69, 0.46);
  background: rgba(255, 255, 255, 0.6);
}
body:not(.editorial-layout).docs-page .docs-layout .prose li > ul > li,
body:not(.editorial-layout).docs-page .docs-layout .prose li > ol > li,
body:not(.editorial-layout).docs-page .spec-prose li > ul > li,
body:not(.editorial-layout).docs-page .spec-prose li > ol > li {
  background: rgba(31, 31, 31, 0.035);
}
body:not(.editorial-layout).docs-page .docs-inline-code,
body:not(.editorial-layout).docs-page .prose code {
  background: rgba(246, 201, 69, 0.16);
  color: #6d4d0e;
}
body:not(.editorial-layout).docs-page .prose table {
  border-color: rgba(31, 31, 31, 0.12);
  background: rgba(255, 255, 255, 0.5);
}
body:not(.editorial-layout).docs-page .prose th,
body:not(.editorial-layout).docs-page .prose td {
  border-color: rgba(31, 31, 31, 0.1);
}
body:not(.editorial-layout).docs-page .prose th {
  background: rgba(246, 201, 69, 0.12);
  color: var(--color-fg);
}
body:not(.editorial-layout).docs-page .prose tbody tr:nth-child(even) td {
  background: rgba(31, 31, 31, 0.035);
}
body:not(.editorial-layout) .site-header .menu-panel {
  border-color: rgba(31, 31, 31, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-fg);
  box-shadow: 0 18px 42px rgba(31, 31, 31, 0.12);
}
body:not(.editorial-layout) .site-header .menu-item {
  position: relative;
  padding: 0.54rem 0.62rem;
  border-radius: var(--radius);
  color: var(--color-fg);
}
body:not(.editorial-layout) .site-header .menu-item::after {
  content: none;
  display: none;
}
body:not(.editorial-layout) .site-header .menu-item:hover,
body:not(.editorial-layout) .site-header .menu-item:focus-visible {
  border-color: rgba(31, 31, 31, 0.12);
  background: rgba(31, 31, 31, 0.06);
  color: var(--color-fg);
}
body:not(.editorial-layout) .site-header .menu-item small,
body:not(.editorial-layout) .site-header .menu-hint {
  color: rgba(31, 31, 31, 0.58);
}
body:not(.editorial-layout) .site-header .menu-sep {
  background: rgba(31, 31, 31, 0.1);
}
.docs-code {
  position: relative;
}
.docs-code > .learn-copy {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
}
.docs-code pre {
  padding-right: 56px;
}
[hidden] {
  display: none !important;
}
.docs-sidebar-toggle {
  display: none;
}
@media (max-width: 820px) {
  .docs-sidebar-toggle {
    display: inline-flex;
    margin-bottom: 16px;
  }
  .docs-sidebar nav {
    max-height: 280px;
    overflow-y: auto;
  }
  .docs-sidebar[data-collapsed=true] nav,
  .docs-sidebar[data-collapsed=true] .docs-results {
    display: none;
  }
}
.markdown-alert {
  border-left: 4px solid var(--color-purple);
  padding: 8px 16px;
  margin: 16px 0;
}
.markdown-alert-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 650;
}
.markdown-alert-title svg {
  fill: currentColor;
}
.markdown-alert-tip {
  border-color: var(--color-green);
}
.markdown-alert-warning,
.markdown-alert-caution {
  border-color: var(--color-orange);
}
.docs-tab-anchor {
  display: block;
  scroll-margin-top: var(--site-top-offset, 144px);
}
.ask-ai-panel {
  font-size: 0.82rem;
  font-weight: 650;
  right: auto;
  min-width: min(224px, calc(100vw - 16px));
  max-width: calc(100vw - 16px);
  max-height: calc(100dvh - 160px);
  overflow-y: auto;
}
/*# sourceMappingURL=global-DUPTXID5.css.map */
