:root {
  color-scheme: dark;
  --ink: #0b0d0f;
  --paper: #f4f1e9;
  --paper-deep: #101316;
  --muted: #a7a6a0;
  --line: #2a2d30;
  --signal: #ff6842;
  --signal-soft: #2a1712;
  --code: #101316;
  --code-line: #343936;
  --code-text: #e7e8e3;
  --home-ink: #f5f3ef;
  --home-muted: #96989d;
  --home-sans: ui-rounded, -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "SF Pro Display", sans-serif;
  --docs-sans: ui-rounded, -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "SF Pro Display", "Avenir Next", sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell-max: 52rem;
  --shell-gutter: 2.5rem;
  --shell-gutter-mobile: 2rem;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  min-width: 320px;
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
a:focus-visible, button:focus-visible, pre:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: .7rem;
  left: .7rem;
  z-index: 20;
  padding: .65rem .9rem;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }

.site-header {
  background: var(--ink);
}
.site-header a:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 4px;
}
.header-inner {
  width: min(calc(100% - var(--shell-gutter)), var(--shell-max));
  min-height: 5.5rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -.04em;
  text-decoration: none;
}
.brand-mark {
  color: var(--signal);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.site-nav a {
  position: relative;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  transition: color 160ms ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--paper);
}
.site-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: .35rem;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--signal);
  content: "";
}

main {
  width: min(calc(100% - var(--shell-gutter)), var(--shell-max));
  min-height: calc(100vh - 5.5rem);
  margin: auto;
  padding: clamp(3.5rem, 8vw, 6rem) 0 2.5rem;
}
article {
  font-family: var(--docs-sans);
}
.heading-row:first-child h1 {
  max-width: 42rem;
  margin: 0 0 1.35rem;
  font: 750 clamp(2rem, 5vw, 3.65rem)/1.08 var(--docs-sans);
  letter-spacing: -.025em;
  text-wrap: balance;
}
h2 {
  margin: 2.75rem 0 .85rem;
  font: 750 clamp(1.1rem, 2vw, 1.25rem)/1.34 var(--docs-sans);
  letter-spacing: -.01em;
}
h3 {
  margin: 2.25rem 0 .7rem;
  font: 750 1rem/1.4 var(--docs-sans);
  letter-spacing: 0;
}
.heading-row { position: relative; }
.heading-anchor {
  position: absolute;
  top: 50%;
  right: calc(100% + .55rem);
  transform: translateY(-50%);
  color: var(--line);
  font: 500 .8em var(--mono);
  text-decoration: none;
  opacity: 0;
}
.heading-row:hover .heading-anchor,
.heading-anchor:focus-visible { opacity: 1; color: var(--signal); }

p, li {
  color: #b6b8c0;
  font-size: 1rem;
  line-height: 1.55;
}
p { margin: 1rem 0; }
li + li { margin-top: .35rem; }
blockquote {
  margin: 1.5rem 0 2rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--signal);
  background: var(--signal-soft);
}
blockquote p {
  margin: 0;
  color: #d0d1d5;
}
article > p:first-of-type {
  max-width: 42rem;
  color: #b6b8c0;
  font-size: 1rem;
  line-height: 1.55;
}
article a { color: var(--signal); text-decoration-thickness: 1px; text-underline-offset: .18em; }
article a:hover { text-decoration-thickness: 2px; }
strong { color: var(--paper); }
code {
  padding: .08rem .33rem;
  border: .5px solid #454548;
  border-radius: .375rem;
  background: #242428;
  color: #b6b8c0;
  font: .82em/1.34 var(--mono);
  overflow-wrap: anywhere;
}

.code-block {
  position: relative;
  margin: 1.35rem 0 1.7rem;
  overflow: hidden;
  border: 1px solid #403d42;
  border-radius: .875rem;
  background: #211f22;
  box-shadow: 0 1rem 2.5rem rgb(0 0 0 / 18%);
}
.code-toolbar {
  min-height: 2.35rem;
  padding: .42rem .5rem;
  border-bottom: 1px solid #353238;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #272429;
}
.code-toolbar span { display: none; }
.code-toolbar button {
  min-width: 3.35rem;
  padding: .3rem .55rem;
  border: 1px solid #454148;
  border-radius: .4rem;
  background: #302d32;
  color: #c4bfc2;
  font: 700 .64rem var(--docs-sans);
  cursor: pointer;
}
.code-toolbar button:hover { border-color: #5b555e; background: #39353b; color: #fff; }
pre {
  max-width: 100%;
  margin: 0;
  overflow: auto;
  overscroll-behavior-inline: contain;
  background: #211f22;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
pre code {
  display: block;
  width: max-content;
  min-width: 100%;
  padding: .9rem 1rem 1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #d5d0cb;
  font-size: .78rem;
  line-height: 1.55;
  overflow-wrap: normal;
}
.hljs-attr, .hljs-attribute, .hljs-keyword, .hljs-meta, .hljs-selector-attr, .hljs-selector-tag, .hljs-variable { color: #ff8a6a; }
.hljs-literal, .hljs-number, .hljs-string, .hljs-template-variable { color: #b8cf8a; }
.hljs-name, .hljs-title { color: #eee9e2; }
.hljs-comment { color: #9a949b; font-style: italic; }

.table-scroll {
  max-width: 100%;
  margin: 1.5rem 0 2rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}
table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  font-size: .83rem;
}
th, td {
  padding: .8rem .7rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
th {
  color: var(--muted);
  font: 750 .66rem var(--mono);
  letter-spacing: .05em;
  text-transform: uppercase;
}
td { color: #b6b8c0; line-height: 1.55; }
td:first-child { white-space: nowrap; }

main footer {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .74rem;
}
main footer span { margin-right: auto; }
main footer a { color: var(--paper); text-underline-offset: .18em; }

.docs-site {
  background: #080a0e;
  color: var(--home-ink);
  font-family: var(--home-sans);
}

.docs-site .site-header { background: #080a0e; }

.docs-site .header-inner {
  width: min(calc(100% - 3rem), 52rem);
  min-height: 4.25rem;
}

.docs-site .brand {
  font-family: var(--home-sans);
  font-size: 1.2rem;
  font-weight: 760;
  letter-spacing: -.03em;
}

.docs-site .site-nav a { color: var(--home-muted); }
.docs-site .site-nav a:hover { color: var(--home-ink); }

.docs-site .site-nav a[aria-current="page"] { color: var(--home-ink); }

@media (max-width: 780px) {
  .docs-site .header-inner {
    width: min(calc(100% - 3rem), 48rem);
  }
}

@media (max-width: 700px) {
  .header-inner {
    width: min(calc(100% - var(--shell-gutter-mobile)), var(--shell-max));
    min-height: 4.75rem;
  }
  main { width: min(calc(100% - var(--shell-gutter-mobile)), var(--shell-max)); padding-top: 3.4rem; }
  .heading-row:first-child h1 { font-size: 2rem; }
  .heading-anchor { display: none; }
  .code-block { margin-inline: -.2rem; }
  pre code { font-size: .72rem; line-height: 1.5; }
  table { min-width: 42rem; }
  main footer { align-items: flex-start; flex-wrap: wrap; }
  main footer span { flex-basis: 100%; }
}

@media (max-width: 560px) {
  .docs-site .header-inner {
    width: min(calc(100% - 2rem), 48rem);
  }

}

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

@media print {
  .site-header, .skip-link, .code-toolbar button, main footer { display: none; }
  body { background: #fff; color: #111; }
  main { width: 100%; padding: 0; }
  p, li, blockquote p, article > p:first-of-type, td { color: #333; }
  blockquote { border-color: #777; background: #f5f5f5; }
  article a, th { color: #333; }
  strong { color: #111; }
  :not(pre) > code { border-color: #ccc; background: #f2efe8; color: #7a2e1d; }
  .code-block { break-inside: avoid; box-shadow: none; }
}
