@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@600;700;800&display=swap";

/* src/css/custom.css */
:root {
  --bg-0: #0f1115;
  --bg-1: #14171c;
  --bg-2: #1a1f26;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --line-accent: rgba(255, 120, 0, 0.24);
  --surface-1: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.02);
  --shadow: rgba(0, 0, 0, 0.5);
  --brand-0: #ff7800;
  --brand-1: #f7074e;
  --radius: 18px;
  --site-max-width: 1100px;
  --ifm-navbar-height: 96px;
  --ifm-font-family-base:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  --ifm-heading-font-family:
    "Montserrat",
    "Inter",
    system-ui,
    sans-serif;
  --ifm-background-color: transparent;
  --ifm-background-surface-color: rgba(18, 21, 29, 0.7);
  --ifm-font-color-base: var(--text);
  --ifm-color-primary: #36aeea;
  --ifm-color-primary-dark: #1f97d4;
  --ifm-color-primary-darker: #178fc9;
  --ifm-color-primary-darkest: #1078a9;
  --ifm-color-primary-light: #55bcf0;
  --ifm-color-primary-lighter: #6ec6f3;
  --ifm-color-primary-lightest: #9ad9f8;
  --ifm-link-color: #9ad9f8;
  --ifm-code-font-size: 95%;
  --site-highlighted-code-line-bg: rgba(156, 232, 255, 0.08);
}
[data-theme=light],
[data-theme=dark] {
  --ifm-background-color: transparent;
  --ifm-font-color-base: var(--text);
}
* {
  box-sizing: border-box;
}
html,
body,
#root {
  min-height: 100%;
}
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(
      100vw 100vh at 82% -10%,
      rgba(255, 120, 0, 0.17) 0%,
      transparent 52%),
    radial-gradient(
      90vw 90vh at -10% 0%,
      rgba(247, 7, 78, 0.12) 0%,
      transparent 48%),
    linear-gradient(
      160deg,
      var(--bg-1),
      var(--bg-0) 55%,
      var(--bg-2));
  font-family: var(--ifm-font-family-base);
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
.site-shell {
  position: relative;
  z-index: 3;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.site-shell > .main-wrapper {
  position: relative;
  z-index: 3;
  flex: 1;
}
.main-wrapper {
  position: relative;
  z-index: 3;
}
h1,
h2,
h3,
h4,
h5,
h6,
.xlink-hero__title {
  font-family: var(--ifm-heading-font-family);
}
a {
  color: inherit;
}
.site-background,
.fx,
.fx::before,
.fx::after,
.fx-canvas,
.grain,
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
.site-background {
  z-index: 0;
}
.fx {
  z-index: 0;
  filter: saturate(110%);
}
.fx::before,
.fx::after {
  content: "";
  background:
    radial-gradient(
      50% 50% at 50% 50%,
      rgba(255, 120, 0, 0.16),
      transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.6;
  filter: blur(40px);
  animation: blob-move 22s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}
.fx::after {
  background:
    radial-gradient(
      50% 50% at 50% 50%,
      rgba(247, 7, 78, 0.14),
      transparent 60%);
  animation-duration: 30s;
  animation-direction: reverse;
}
.fx-canvas {
  z-index: 1;
}
.fx-canvas--sparks {
  mix-blend-mode: screen;
}
.grain {
  z-index: 0;
  opacity: 0.08;
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(255, 255, 255, 0.04) 0deg 0.5deg,
      transparent 0.5deg 1deg),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.025) 0 2px,
      transparent 2px 4px);
  mix-blend-mode: overlay;
}
.vignette {
  z-index: 2;
  background:
    radial-gradient(
      100vw 100vh at 50% 28%,
      transparent 0%,
      rgba(0, 0, 0, 0.14) 70%,
      rgba(0, 0, 0, 0.26) 100%);
}
.site-header,
.site-footer {
  position: relative;
  z-index: 4;
  border-block: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: saturate(120%) blur(6px);
}
.site-header {
  position: sticky;
  top: 0;
}
.bar {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 11px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.site-header__start {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.site-brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.site-brand__logo {
  width: clamp(156px, 18vw, 232px);
  height: auto;
  display: block;
  filter: drop-shadow(0 0 18px rgba(255, 120, 0, 0.1));
  transition: transform 0.22s ease, filter 0.22s ease;
}
.site-brand:hover .site-brand__logo,
.site-brand:focus-visible .site-brand__logo {
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 0 14px rgba(255, 120, 0, 0.16)) drop-shadow(0 0 20px rgba(247, 7, 78, 0.12));
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-nav--social {
  margin-left: auto;
}
.site-header__menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.015);
  color: #ffffff;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}
.site-header__menu-button:hover,
.site-header__menu-button:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}
.site-header__menu-icon {
  display: inline-grid;
  gap: 4px;
}
.site-header__menu-icon span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.site-mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 48;
  display: flex;
  justify-content: flex-end;
  background: rgba(4, 6, 12, 0.66);
  backdrop-filter: blur(4px);
}
.site-mobile-drawer {
  width: min(360px, 88vw);
  height: 100dvh;
  padding: 18px 16px 20px 14px;
  border-left: 1px solid var(--line);
  border-radius: 22px 0 0 22px;
  background: rgba(18, 21, 29, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}
.site-mobile-drawer__header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 14px;
}
.site-header__menu-button--close {
  display: inline-flex;
}
.site-mobile-drawer__nav {
  display: grid;
  gap: 10px;
}
.site-mobile-drawer__slot {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-mobile-drawer__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-mobile-drawer__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}
.site-mobile-drawer__link--active,
.site-mobile-drawer__link:hover,
.site-mobile-drawer__link:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
}
.site-mobile-drawer__link--external {
  padding-right: 12px;
}
.site-mobile-drawer__link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.7);
  flex: 0 0 auto;
}
.site-mobile-drawer__link-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.015);
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}
.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link--active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(255, 120, 0, 0.08);
  transform: translateY(-1px);
}
.site-nav__link--docs {
  white-space: nowrap;
}
.site-nav__link--external {
  justify-content: space-between;
  min-width: 168px;
  padding-right: 14px;
}
.site-nav__link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.68);
  flex: 0 0 auto;
}
.site-nav__link-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.site-nav__link:hover .site-nav__link-icon,
.site-nav__link:focus-visible .site-nav__link-icon,
.site-nav__link--active .site-nav__link-icon {
  color: rgba(255, 255, 255, 0.86);
}
.site-footer__bar--split {
  position: relative;
}
.site-footer__slot {
  display: flex;
  align-items: center;
  min-width: 0;
}
.site-footer__slot--left {
  justify-content: flex-start;
}
.site-footer__slot--right {
  justify-content: flex-end;
}
.site-footer__separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.34);
  pointer-events: none;
}
.site-footer a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(132, 214, 255, 0.48);
  text-underline-offset: 0.22em;
  transition:
    color 0.2s ease,
    text-decoration-color 0.2s ease,
    text-shadow 0.2s ease;
}
.site-footer a:hover,
.site-footer a:focus-visible {
  color: #d9f4ff;
  text-decoration-color: rgba(132, 214, 255, 0.9);
  text-shadow: 0 0 16px rgba(70, 174, 255, 0.18);
}
.xlink-page--home {
  display: flex;
  flex-direction: column;
}
.landing-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 32px);
}
.xlink-hero {
  width: 100%;
  max-width: 940px;
  margin: 24px auto;
  padding: clamp(16px, 4vw, 28px);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02)),
    radial-gradient(
      120% 120% at 20% 0%,
      rgba(255, 120, 0, 0.06),
      transparent 50%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px var(--shadow);
  will-change: transform, opacity;
  animation: fadein 0.9s ease both;
}
.xlink-hero__panel {
  perspective: 1000px;
  transform-style: preserve-3d;
}
.xlink-hero__content {
  display: grid;
  gap: 18px;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: 10px;
  width: 100%;
}
.xlink-logo {
  width: clamp(60px, 15vw, 88px);
  height: clamp(60px, 15vw, 88px);
  border-radius: 16px;
  border: 1px solid var(--line);
  background:
    linear-gradient(
      135deg,
      rgba(255, 120, 0, 0.1),
      rgba(247, 7, 78, 0.08) 55%,
      #1a1f26);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 8px 24px rgba(0, 0, 0, 0.35);
  display: grid;
  place-items: center;
  transform: translateZ(24px);
  outline: none;
}
.xlink-logo__image {
  width: clamp(40px, 10vw, 64px);
  height: clamp(40px, 10vw, 64px);
  display: block;
  transition: transform 0.22s ease, filter 0.22s ease;
}
.xlink-logo:hover .xlink-logo__image,
.xlink-logo:focus .xlink-logo__image {
  transform: scale(1.12);
  filter: drop-shadow(0 0 8px rgba(255, 120, 0, 0.28)) drop-shadow(0 0 14px rgba(247, 7, 78, 0.22));
}
.xlink-hero__title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(24px, 5vw, 36px);
  line-height: 1.1;
  letter-spacing: 0.2px;
}
.xlink-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 6px;
}
.xlink-benefit {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.025),
      rgba(0, 0, 0, 0.15));
  font-size: clamp(14px, 3.5vw, 16px);
}
.xlink-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 120, 0, 0.22);
  background:
    linear-gradient(
      180deg,
      rgba(255, 120, 0, 0.16),
      rgba(247, 7, 78, 0.1));
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 20px rgba(255, 120, 0, 0.08);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
}
.xlink-cta--telegram {
  border-color: rgba(132, 214, 255, 0.75);
  background:
    linear-gradient(
      180deg,
      #36aeea,
      #1f97d4);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 26px rgba(48, 166, 255, 0.26);
}
.xlink-cta:hover,
.xlink-cta:focus-visible {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 26px rgba(247, 7, 78, 0.16);
}
.xlink-cta--telegram:hover,
.xlink-cta--telegram:focus-visible {
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 36px rgba(48, 166, 255, 0.42);
}
.theme-doc-sidebar-container {
  position: sticky;
  top: var(--ifm-navbar-height) !important;
  height: calc(100dvh - var(--ifm-navbar-height));
  max-height: calc(100dvh - var(--ifm-navbar-height));
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.025),
      rgba(255, 255, 255, 0.01));
  overflow-y: auto;
  --ifm-menu-color: rgba(235, 239, 244, 0.82);
  --ifm-menu-color-active: var(--ifm-color-primary);
  --ifm-menu-color-background-active: rgba(255, 255, 255, 0.08);
  --ifm-menu-link-sublist-icon-filter: invert(86%) sepia(8%) saturate(185%) hue-rotate(181deg) brightness(90%) contrast(88%);
}
.theme-doc-sidebar-menu {
  padding: 16px 12px 20px;
}
.theme-doc-sidebar-menu .menu__link,
.theme-doc-sidebar-menu .menu__caret,
.theme-doc-sidebar-menu .menu__list-item-collapsible {
  border-radius: 8px;
}
.theme-doc-sidebar-menu .menu__list-item {
  margin-top: 2px;
}
.theme-doc-sidebar-menu .menu__link {
  font-weight: 600;
}
.theme-doc-sidebar-menu .menu__list-item-collapsible {
  align-items: center;
}
.theme-doc-sidebar-menu .menu__list-item-collapsible .menu__link {
  background: transparent !important;
}
.theme-doc-sidebar-menu .menu__list .menu__list {
  margin-top: 4px;
  padding-left: 18px;
}
.theme-doc-sidebar-menu .menu__list .menu__list .menu__link {
  font-weight: 500;
}
.theme-doc-sidebar-menu .menu__link--active:not(.menu__link--sublist) {
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.04));
}
.theme-doc-sidebar-menu .menu__list-item-collapsible--active,
.theme-doc-sidebar-menu .menu__list-item-collapsible:hover,
.theme-doc-sidebar-menu .menu__link:hover,
.theme-doc-sidebar-menu .menu__caret:hover {
  background: rgba(255, 255, 255, 0.05);
}
.theme-doc-sidebar-menu .menu__caret::before,
.theme-doc-sidebar-menu .menu__link--sublist-caret::after {
  opacity: 0.9;
}
.theme-doc-markdown,
.markdown,
.table-of-contents,
.pagination-nav__link,
.theme-doc-toc-desktop,
.breadcrumbs,
.card,
.alert {
  color: var(--text);
}
.theme-doc-markdown article,
.pagination-nav__link,
.table-of-contents,
.breadcrumbs,
.theme-doc-toc-desktop {
  border: 1px solid var(--line);
  background: rgba(18, 21, 29, 0.7);
  backdrop-filter: blur(2px);
}
.theme-doc-markdown article {
  padding: clamp(20px, 3vw, 28px);
  border-radius: 20px;
}
.table-of-contents,
.theme-doc-toc-desktop {
  border-radius: 16px;
  padding: 12px;
}
.pagination-nav__link {
  border-radius: 14px;
}
.breadcrumbs {
  border-radius: 999px;
  padding: 10px 14px;
  margin-bottom: 1rem;
}
.theme-doc-markdown a,
.theme-doc-toc-desktop a,
.table-of-contents a {
  color: #d9f4ff;
}
.theme-doc-markdown a:hover,
.theme-doc-toc-desktop a:hover,
.table-of-contents a:hover {
  color: #ffffff;
}
.doc-figure {
  margin: 1.5rem 0;
}
.doc-figure__image {
  display: block;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}
.doc-figure__caption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}
@media (max-width: 1220px) {
  .site-nav,
  .site-nav__link--docs {
    display: none;
  }
  .site-header__menu-button {
    display: inline-flex;
  }
}
@media (max-width: 996px) {
  :root {
    --ifm-navbar-height: 84px;
  }
  .bar {
    padding: 14px 16px;
  }
  .site-brand__logo {
    width: clamp(144px, 32vw, 208px);
  }
  .landing-main {
    min-height: 0;
    padding-inline: 16px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  .bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .site-header__start {
    width: auto;
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  .site-nav,
  .site-nav__link--docs {
    display: none;
  }
  .site-header__menu-button {
    display: inline-flex;
  }
  .site-mobile-drawer {
    width: min(88vw, 360px);
  }
  .xlink-hero {
    padding: 16px;
  }
  .xlink-hero__content {
    gap: 16px;
    padding: 4px;
  }
  .xlink-benefits {
    grid-template-columns: 1fr;
  }
  .xlink-benefit {
    text-align: center;
  }
  .xlink-cta {
    width: min(100%, 320px);
    justify-content: center;
  }
  .xlink-cta img {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 640px) {
  .site-footer__bar--split {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .site-footer__slot {
    width: 100%;
    justify-content: center;
  }
  .site-footer__separator {
    position: static;
    transform: none;
  }
  .site-footer a {
    text-align: center;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 16px;
  }
  .xlink-hero {
    margin: 12px auto;
    padding: 14px;
  }
  .xlink-hero__title {
    font-size: clamp(20px, 6vw, 28px);
  }
  .xlink-logo {
    width: clamp(48px, 12vw, 60px);
    height: clamp(48px, 12vw, 60px);
  }
  .xlink-logo__image {
    width: clamp(32px, 8vw, 40px);
    height: clamp(32px, 8vw, 40px);
  }
}
@media (hover: none) and (pointer: coarse) and (max-width: 1280px) {
  body {
    font-size: 16px;
  }
}
@keyframes blob-move {
  0% {
    transform: translate3d(-10%, -8%, 0) scale(1);
  }
  25% {
    transform: translate3d(15%, -4%, 0) scale(1.1);
  }
  50% {
    transform: translate3d(5%, 8%, 0) scale(0.95);
  }
  75% {
    transform: translate3d(-12%, 4%, 0) scale(1.08);
  }
  100% {
    transform: translate3d(-10%, -8%, 0) scale(1);
  }
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* src/css/docs.css */
.site-main {
  flex: 1;
}
.site-main--centered {
  display: grid;
  place-items: center;
  padding: 24px;
}
.docs-main {
  padding: clamp(18px, 2.6vw, 34px) 20px;
}
.docs-route {
  --docs-sticky-top: calc(var(--ifm-navbar-height) + 40px);
  --docs-sidebar-width: clamp(288px, 19vw, 360px);
  --docs-toc-rail-width: var(--docs-sidebar-width);
  --docs-layout-gap: clamp(12px, 1.1vw, 20px);
  --docs-content-max-width: var(--site-max-width);
  --docs-toc-width: var(--docs-sidebar-width);
  --docs-shell-padding: clamp(22px, 2.4vw, 30px);
  --docs-page-gap: 18px;
  --docs-title-size: clamp(32px, 4.8vw, 48px);
  --docs-title-line-height: 1.08;
  --docs-h2-size: clamp(1.46rem, 2.1vw, 1.78rem);
  --docs-h2-line-height: 1.12;
  --docs-h2-weight: 700;
  --docs-h3-size: clamp(1.18rem, 1.7vw, 1.34rem);
  --docs-h3-line-height: 1.12;
  --docs-h3-weight: 700;
  --docs-paragraph-size: clamp(1.07rem, 1.01rem + 0.2vw, 1.16rem);
  --docs-paragraph-line-height: 1.84;
  width: min(calc(var(--docs-content-max-width) + var(--docs-sidebar-width) + var(--docs-toc-rail-width) + (var(--docs-layout-gap) * 2)), calc(100vw - clamp(24px, 2vw, 40px)));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.docs-mobile-bar {
  display: none;
}
.docs-mobile-bar__actions {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.docs-mobile-bar__actions::-webkit-scrollbar {
  display: none;
}
.docs-mobile-bar__button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  min-height: 42px;
  padding: 0 14px;
  white-space: nowrap;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    color 0.18s ease;
}
.docs-mobile-bar__button:hover,
.docs-mobile-bar__button:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}
.docs-mobile-bar__menu-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 14px;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}
.docs-mobile-bar__menu-button:hover,
.docs-mobile-bar__menu-button:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}
.docs-mobile-bar__menu-icon {
  display: inline-grid;
  gap: 4px;
}
.docs-mobile-bar__menu-icon span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.docs-mobile-bar__menu-label {
  white-space: nowrap;
}
.docs-route__controls,
.docs-empty-state__actions,
.docs-sidebar__actions,
.docs-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.docs-route__controls--page {
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 22px;
}
.docs-toolbar-button,
.docs-tree-slot__button,
.docs-insert-zone__button,
.docs-edit-block__delete,
.docs-edit-block__drag,
.docs-tree-item__action,
.docs-tree-composer__kind {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  padding: 10px 16px;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    opacity 0.18s ease,
    color 0.18s ease;
}
.docs-toolbar-button:hover,
.docs-toolbar-button:focus-visible,
.docs-tree-slot__button:hover,
.docs-tree-slot__button:focus-visible,
.docs-insert-zone__button:hover,
.docs-insert-zone__button:focus-visible,
.docs-edit-block__delete:hover,
.docs-edit-block__delete:focus-visible,
.docs-edit-block__drag:hover,
.docs-edit-block__drag:focus-visible,
.docs-tree-item__action:hover,
.docs-tree-item__action:focus-visible,
.docs-tree-composer__kind:hover,
.docs-tree-composer__kind:focus-visible {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}
.docs-toolbar-button:disabled,
.docs-tree-item__action:disabled {
  cursor: not-allowed;
  opacity: 0.52;
  transform: none;
}
.docs-toolbar-button--primary {
  border-color: rgba(96, 214, 255, 0.42);
  background:
    linear-gradient(
      180deg,
      rgba(54, 174, 234, 0.22),
      rgba(54, 174, 234, 0.12));
}
.docs-toolbar-button--danger {
  border-color: rgba(255, 110, 110, 0.34);
  background:
    linear-gradient(
      180deg,
      rgba(160, 48, 48, 0.26),
      rgba(100, 20, 20, 0.16));
}
.docs-route__controls--page .docs-toolbar-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.015);
  color: var(--muted);
  box-shadow: none;
  font-size: 0.88rem;
  font-weight: 600;
  transform: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}
.docs-route__controls--page .docs-toolbar-button:hover,
.docs-route__controls--page .docs-toolbar-button:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}
.docs-route__controls--page .docs-toolbar-button--share {
  color: rgba(236, 248, 252, 0.96);
  background: rgba(60, 101, 120, 0.18);
  border-color: rgba(108, 214, 244, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(197, 242, 255, 0.03),
    0 0 0 1px rgba(108, 214, 244, 0.06),
    0 0 18px rgba(72, 180, 212, 0.14);
}
.docs-route__controls--page .docs-toolbar-button--share:hover,
.docs-route__controls--page .docs-toolbar-button--share:focus-visible {
  background: rgba(60, 101, 120, 0.24);
  border-color: rgba(132, 226, 252, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(210, 246, 255, 0.04),
    0 0 0 1px rgba(108, 214, 244, 0.08),
    0 0 22px rgba(72, 180, 212, 0.18);
}
.docs-route__controls--page .docs-toolbar-button--preview {
  color: #ffffff;
  background: rgba(58, 87, 136, 0.2);
  border-color: rgba(112, 176, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(199, 224, 255, 0.03),
    0 0 0 1px rgba(112, 176, 255, 0.05),
    0 0 18px rgba(76, 126, 236, 0.14);
}
.docs-route__controls--page .docs-toolbar-button--preview:hover,
.docs-route__controls--page .docs-toolbar-button--preview:focus-visible {
  background: rgba(58, 87, 136, 0.26);
  border-color: rgba(132, 191, 255, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(211, 231, 255, 0.04),
    0 0 0 1px rgba(112, 176, 255, 0.07),
    0 0 22px rgba(76, 126, 236, 0.18);
}
.docs-route__controls--page .docs-toolbar-button--save.docs-toolbar-button--pending {
  color: #fff6d8;
  background: rgba(160, 106, 14, 0.36);
  border-color: rgba(255, 202, 88, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 240, 194, 0.04),
    0 0 0 1px rgba(255, 202, 88, 0.08),
    0 0 22px rgba(255, 187, 48, 0.2);
}
.docs-route__controls--page .docs-toolbar-button--save.docs-toolbar-button--pending:hover,
.docs-route__controls--page .docs-toolbar-button--save.docs-toolbar-button--pending:focus-visible {
  background: rgba(178, 119, 18, 0.42);
  border-color: rgba(255, 214, 108, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 205, 0.05),
    0 0 0 1px rgba(255, 202, 88, 0.1),
    0 0 26px rgba(255, 187, 48, 0.24);
}
.docs-route__controls--page .docs-toolbar-button--success {
  border-color: rgba(111, 230, 166, 0.26);
  background: rgba(46, 160, 96, 0.12);
  color: rgba(226, 255, 240, 0.96);
}
.docs-route__controls--page .docs-toolbar-button--share.docs-toolbar-button--danger {
  background: rgba(122, 34, 34, 0.16);
}
.docs-route__controls--page .docs-toolbar-button:disabled {
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.015);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  transform: none;
}
.docs-toolbar-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.docs-toolbar-button__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.docs-layout {
  display: grid;
  grid-template-columns: var(--docs-sidebar-width) minmax(0, var(--docs-content-max-width)) var(--docs-toc-rail-width);
  gap: var(--docs-layout-gap);
  align-items: start;
  width: 100%;
  justify-content: center;
}
.docs-sidebar {
  position: sticky;
  top: var(--docs-sticky-top);
  justify-self: start;
  width: 100%;
}
.docs-layout__toc-slot {
  min-width: 0;
  width: 100%;
  display: block;
  position: sticky;
  top: var(--docs-sticky-top);
  align-self: start;
  justify-self: start;
}
.docs-layout__toc-slot:empty {
  display: none;
}
.docs-side-panel {
  position: static;
  display: grid;
  gap: 14px;
  width: 100%;
  align-self: start;
}
.docs-toc {
  position: static;
  align-self: start;
  justify-self: start;
  width: 100%;
  margin-top: 0;
}
.docs-sidebar__card,
.docs-content-shell,
.docs-notice,
.docs-empty-state,
.docs-loading,
.docs-error,
.docs-modal,
.docs-toc__card {
  border: 1px solid var(--line);
  background: rgba(18, 21, 29, 0.72);
  backdrop-filter: blur(4px);
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}
.docs-sidebar__card {
  padding: 18px 16px;
}
.docs-sidebar__card--tree {
  overflow: hidden;
}
.docs-sidebar--embedded {
  position: static;
  width: 100%;
}
.docs-sidebar__card--embedded,
.docs-toc__card--embedded {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}
.docs-sidebar__eyebrow,
.docs-page__eyebrow,
.docs-empty-state__eyebrow,
.docs-modal__eyebrow {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}
.docs-tree-scope {
  display: grid;
  gap: 4px;
}
.docs-tree-scope--root-empty {
  min-height: 104px;
  align-content: center;
}
.docs-tree-node {
  position: relative;
  display: grid;
  gap: 4px;
  min-width: 0;
  transform-origin: top left;
  backface-visibility: hidden;
  transition: filter 0.28s ease, opacity 0.28s ease;
}
.docs-tree-node--nested > .docs-tree-item::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  width: 14px;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-50%);
}
.docs-tree-children {
  position: relative;
  display: grid;
  gap: 4px;
  margin-left: 14px;
  padding-left: 30px;
}
.docs-tree-children::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -6px;
  bottom: 12px;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}
.docs-tree-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding-left: 8px;
  padding-block: 5px;
  padding-right: 6px;
  border-radius: 12px;
  min-width: 0;
  will-change:
    transform,
    background-color,
    box-shadow,
    opacity;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease,
    opacity 0.28s ease,
    filter 0.28s ease;
}
.docs-tree-item:hover,
.docs-tree-item--section-active {
  background: rgba(255, 255, 255, 0.04);
}
.docs-tree-item--active {
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.04));
}
.docs-tree-item--drop-target {
  background: rgba(54, 174, 234, 0.14);
  box-shadow: inset 0 0 0 1px rgba(96, 214, 255, 0.26), 0 10px 24px rgba(17, 109, 148, 0.16);
  transform: translateX(2px) scale(1.01);
}
.docs-tree-item--drag-origin {
  opacity: 0.52;
  transform: scale(0.985);
  filter: saturate(0.8);
}
.docs-tree-item--inserted {
  animation: docs-block-insert 0.32s ease;
}
.docs-tree-item__toggle,
.docs-tree-item__icon,
.docs-tree-item__action,
.docs-tree-slot__button,
.docs-tree-composer__kind,
.docs-modal__tree-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.docs-tree-item__tail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  flex: 0 0 auto;
}
.docs-tree-item__main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1 1 auto;
}
.docs-tree-item__main--draggable {
  cursor: grab;
}
.docs-tree-item__main--draggable:active {
  cursor: grabbing;
}
.docs-tree-item__main--draggable .docs-tree-item__label {
  cursor: inherit;
}
.docs-tree-item__toggle {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.docs-tree-item__toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.18s ease, color 0.18s ease;
}
.docs-tree-item__toggle:hover,
.docs-tree-item__toggle:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}
.docs-tree-item__toggle--collapsed svg {
  transform: rotate(0deg);
}
.docs-tree-item:not(.docs-tree-item--page) .docs-tree-item__toggle svg {
  transform: rotate(90deg);
}
.docs-tree-item__toggle--collapsed svg {
  transform: rotate(0deg) !important;
}
.docs-tree-item__toggle--empty {
  opacity: 0.35;
}
.docs-tree-item__toggle--placeholder {
  visibility: hidden;
  pointer-events: none;
}
.docs-tree-item__icon,
.docs-modal__tree-icon {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.78);
  flex: 0 0 auto;
}
.docs-tree-item__icon svg,
.docs-tree-item__action svg,
.docs-tree-slot__button svg,
.docs-tree-composer__kind svg,
.docs-modal__tree-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.docs-tree-item__label {
  flex: 1;
  min-width: 0;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.96rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.18s ease;
}
.docs-tree-item__label--section {
  font-weight: 700;
  color: #ffffff;
}
.docs-tree-item__label--page:hover,
.docs-tree-item__label--page:focus-visible,
.docs-tree-item__label--section:hover,
.docs-tree-item__label--section:focus-visible,
.docs-tree-item__label--active {
  color: #ffffff;
}
.docs-tree-item__actions {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  opacity: 0;
  transform: translateX(4px);
  transition: opacity 0.18s ease, transform 0.22s ease;
}
.docs-tree-item:hover .docs-tree-item__actions,
.docs-tree-item--active .docs-tree-item__actions,
.docs-tree-item--section-active .docs-tree-item__actions {
  opacity: 1;
  transform: translateX(0);
}
.docs-tree-item__action {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.72);
}
.docs-tree-item__action:hover,
.docs-tree-item__action:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  transform: none;
}
.docs-tree-item__action--danger {
  color: rgba(255, 198, 198, 0.88);
}
.docs-tree-item__action--danger:hover,
.docs-tree-item__action--danger:focus-visible {
  background: rgba(154, 44, 44, 0.18);
  border-color: rgba(255, 120, 120, 0.14);
  color: #ffdede;
}
.docs-tree-item__action--share.docs-tree-item__action--copied {
  background: rgba(46, 160, 96, 0.14);
  border-color: rgba(111, 230, 166, 0.16);
  color: rgba(226, 255, 240, 0.98);
}
.docs-tree-item__action--share.docs-tree-item__action--error {
  background: rgba(122, 34, 34, 0.18);
  border-color: rgba(255, 120, 120, 0.16);
  color: #ffdede;
}
.docs-tree-slot {
  position: relative;
  min-height: 28px;
  display: grid;
  align-items: center;
  padding: 6px 0;
  transition:
    opacity 0.2s ease,
    min-height 0.32s cubic-bezier(0.22, 0.86, 0.32, 1),
    padding 0.32s cubic-bezier(0.22, 0.86, 0.32, 1);
}
.docs-tree-slot--nested {
  margin-left: 14px;
  padding-left: 30px;
}
.docs-tree-slot--always-visible {
  min-height: 72px;
  padding: 18px 0;
}
.docs-tree-slot--nested::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}
.docs-tree-slot--nested .docs-tree-slot__line::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  width: 14px;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-50%);
}
.docs-tree-slot__line {
  position: relative;
  height: 1px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  transform: scaleX(0.94);
  transform-origin: center;
  transition:
    background-color 0.2s ease,
    transform 0.28s cubic-bezier(0.22, 0.86, 0.32, 1),
    box-shadow 0.28s ease;
}
.docs-tree-slot__button {
  position: static;
  width: 32px;
  height: 30px;
  padding: 0;
  border-radius: 8px;
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(20, 23, 31, 0.92);
  box-shadow: none;
  transition:
    transform 0.24s cubic-bezier(0.22, 0.86, 0.32, 1),
    background-color 0.18s ease,
    border-color 0.18s ease;
}
.docs-tree-slot__actions {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.94);
  transition: opacity 0.2s ease, transform 0.24s cubic-bezier(0.22, 0.86, 0.32, 1);
}
.docs-tree-slot:hover .docs-tree-slot__line,
.docs-tree-slot--open .docs-tree-slot__line,
.docs-tree-slot--dragging:hover .docs-tree-slot__line,
.docs-tree-slot--drop-target .docs-tree-slot__line {
  background: rgba(255, 255, 255, 0.18);
  transform: scaleX(1);
}
.docs-tree-slot--drop-target .docs-tree-slot__line {
  background: rgba(96, 214, 255, 0.38);
  box-shadow: 0 0 0 1px rgba(96, 214, 255, 0.14);
}
.docs-tree-slot--drop-target {
  min-height: 42px;
  padding: 12px 0;
}
.docs-tree-slot:hover .docs-tree-slot__actions,
.docs-tree-slot--open .docs-tree-slot__actions,
.docs-tree-slot--drop-target .docs-tree-slot__actions {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.docs-tree-slot--always-visible .docs-tree-slot__line {
  background: rgba(255, 255, 255, 0.12);
  transform: scaleX(1);
}
.docs-tree-slot--always-visible .docs-tree-slot__actions {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.docs-tree-slot__button:hover,
.docs-tree-slot__button:focus-visible {
  transform: translateY(-1px);
}
.docs-tree-composer {
  display: grid;
  gap: 10px;
  padding: 10px 0 4px;
}
.docs-tree-composer__field {
  display: flex;
  align-items: center;
  gap: 8px;
}
.docs-tree-composer__field .docs-tree-composer__input {
  flex: 1 1 auto;
  min-width: 0;
}
.docs-tree-composer__actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}
.docs-tree-composer__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease,
    opacity 0.18s ease;
}
.docs-tree-composer__action:hover,
.docs-tree-composer__action:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  transform: translateY(-1px);
}
.docs-tree-composer__action:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}
.docs-tree-composer__action svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.docs-tree-composer__action--confirm {
  color: #d9f6ff;
  border-color: rgba(96, 214, 255, 0.24);
  background: rgba(54, 174, 234, 0.1);
}
.docs-tree-composer__action--confirm:hover,
.docs-tree-composer__action--confirm:focus-visible {
  border-color: rgba(96, 214, 255, 0.38);
  background: rgba(54, 174, 234, 0.18);
}
.docs-tree-composer__action--cancel {
  color: #ffd1d1;
}
.docs-tree-composer__input,
.docs-paragraph-editor,
.docs-input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(8, 10, 14, 0.3);
  color: #ffffff;
  font: inherit;
  font-size: 0.94rem;
  padding: 12px 14px;
  outline: none;
}
.docs-tree-composer__input:focus,
.docs-paragraph-editor:focus,
.docs-input:focus {
  border-color: rgba(96, 214, 255, 0.36);
  box-shadow: 0 0 0 3px rgba(54, 174, 234, 0.12);
}
.docs-content-shell {
  min-height: 440px;
  padding: var(--docs-shell-padding);
  min-width: 0;
  width: min(100%, var(--docs-content-max-width));
  max-width: none;
  justify-self: stretch;
}
.docs-notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  line-height: 1.55;
}
.docs-notice--warning {
  border-color: rgba(255, 196, 92, 0.2);
  background:
    linear-gradient(
      180deg,
      rgba(255, 196, 92, 0.08),
      rgba(255, 196, 92, 0.03)),
    rgba(18, 21, 29, 0.72);
  color: rgba(255, 245, 215, 0.92);
}
.docs-hidden-input {
  display: none;
}
.docs-page {
  display: grid;
  gap: var(--docs-page-gap);
}
.docs-page__header {
  display: grid;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.docs-page__title,
.docs-empty-state__title,
.docs-modal__title {
  margin: 0;
  font-family: var(--ifm-heading-font-family);
  font-size: var(--docs-title-size);
  line-height: var(--docs-title-line-height);
}
.docs-page__blocks {
  display: grid;
  gap: 0;
}
.docs-page__pagination {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}
.pagination-nav__link,
.pagination-nav__spacer {
  min-height: 100px;
}
.pagination-nav__link {
  display: grid;
  gap: 8px;
  padding: 18px;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(18, 21, 29, 0.7);
  color: #ffffff;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}
.pagination-nav__link:hover,
.pagination-nav__link:focus-visible {
  border-color: rgba(96, 214, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}
.pagination-nav__link--next {
  text-align: right;
}
.pagination-nav__sublabel {
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}
.pagination-nav__label {
  font-size: 1.02rem;
  font-weight: 700;
}
.docs-page--editor .docs-page__blocks {
  gap: 0;
}
.docs-block {
  border: 0;
  border-radius: 0;
  background: none;
  padding: 22px 0;
}
.docs-block--paragraph {
  background: none;
}
.docs-block--empty,
.docs-block--unsupported {
  color: rgba(255, 255, 255, 0.68);
}
.docs-block__heading {
  margin: 0 0 14px;
  line-height: 1.12;
  scroll-margin-top: calc(var(--ifm-navbar-height) + 44px);
}
.docs-block__heading--major {
  font-size: clamp(1.88rem, 2.7vw, 2.5rem);
}
.docs-block__heading--level-1 {
  font-size: clamp(1.88rem, 2.7vw, 2.5rem);
}
.docs-block__heading--minor {
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  color: rgba(255, 255, 255, 0.96);
}
.docs-block__heading--level-2 {
  font-size: var(--docs-h2-size);
  line-height: var(--docs-h2-line-height);
  font-weight: var(--docs-h2-weight);
  color: rgba(255, 255, 255, 0.97);
}
.docs-block__heading--level-3 {
  font-size: var(--docs-h3-size);
  line-height: var(--docs-h3-line-height);
  font-weight: var(--docs-h3-weight);
  color: rgba(255, 255, 255, 0.92);
}
.docs-block__heading--tertiary {
  font-size: clamp(0.98rem, 1.45vw, 1.16rem);
  color: rgba(255, 255, 255, 0.9);
}
.docs-block--heading .docs-paragraph {
  font-size: 1.02rem;
}
.docs-page:not(.docs-page--editor) .docs-page__blocks > .docs-block--heading:not(:first-child) {
  margin-top: 8px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.docs-edit-block {
  display: grid;
  gap: 14px;
  border: 0;
  border-radius: 0;
  background: none;
  padding: 22px 0;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease,
    filter 0.22s ease;
}
.docs-edit-block[id] {
  scroll-margin-top: calc(var(--ifm-navbar-height) + 24px);
}
.docs-edit-block--drag-origin {
  opacity: 0.34;
  transform: scale(0.968);
  filter: saturate(0.82);
}
.docs-edit-block--inserted {
  animation: docs-block-insert 0.32s ease;
}
.docs-edit-block__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.docs-edit-block__type-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.docs-edit-block__actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}
.docs-edit-block__drag-strip {
  flex: 1 1 auto;
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  padding: 10px 4px;
  cursor: grab;
}
.docs-edit-block__drag-strip:active {
  cursor: grabbing;
}
.docs-edit-block__drag-strip-line {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: background-color 0.18s ease, transform 0.18s ease;
}
.docs-edit-block__drag-strip:hover .docs-edit-block__drag-strip-line,
.docs-edit-block__drag-strip:focus-visible .docs-edit-block__drag-strip-line {
  background: rgba(255, 255, 255, 0.18);
  transform: scaleX(1.01);
}
.docs-edit-block__type {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.docs-level-dropdown {
  position: relative;
  flex: 0 0 auto;
}
.docs-level-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 68px;
  height: 38px;
  padding: 0 12px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.04)),
    rgba(18, 21, 29, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 24px rgba(0, 0, 0, 0.16);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.docs-level-dropdown__trigger:hover,
.docs-level-dropdown__trigger:focus-visible,
.docs-level-dropdown--open .docs-level-dropdown__trigger {
  border-color: rgba(96, 214, 255, 0.34);
  background:
    linear-gradient(
      180deg,
      rgba(90, 198, 247, 0.14),
      rgba(255, 255, 255, 0.05)),
    rgba(18, 21, 29, 0.98);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 10px 28px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}
.docs-level-dropdown__trigger svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0.84;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.docs-level-dropdown--open .docs-level-dropdown__trigger svg {
  transform: rotate(180deg);
  opacity: 1;
}
.docs-level-dropdown__menu {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 12;
  display: grid;
  gap: 4px;
  min-width: 100%;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)),
    rgba(12, 15, 22, 0.98);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}
.docs-level-dropdown__option {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}
.docs-level-dropdown__option:hover,
.docs-level-dropdown__option:focus-visible {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  transform: translateY(-1px);
}
.docs-level-dropdown__option--active {
  border-color: rgba(96, 214, 255, 0.28);
  background:
    linear-gradient(
      180deg,
      rgba(54, 174, 234, 0.24),
      rgba(54, 174, 234, 0.12));
  color: #ffffff;
}
.docs-edit-block__delete {
  width: 36px;
  min-width: 36px;
  height: 36px;
  padding: 0;
  font-size: 0.92rem;
  border-radius: 8px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}
.docs-edit-block__delete:hover,
.docs-edit-block__delete:focus-visible {
  background: rgba(154, 44, 44, 0.16);
  border-color: rgba(255, 120, 120, 0.14);
  transform: none;
}
.docs-edit-block__delete svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.docs-paragraph-editor {
  min-height: 160px;
  resize: none;
  overflow: hidden;
  line-height: 1.7;
}
.docs-edit-block__fields {
  display: grid;
  gap: 12px;
}
.docs-format-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.docs-format-toolbar__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  min-width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.86);
  font: inherit;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}
.docs-format-toolbar__button:hover,
.docs-format-toolbar__button:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  transform: translateY(-1px);
}
.docs-format-toolbar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.docs-format-toolbar__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.docs-format-toolbar__button--link .docs-format-toolbar__icon,
.docs-format-toolbar__button--code .docs-format-toolbar__icon {
  width: 17px;
  height: 17px;
}
.docs-insert-zone {
  position: relative;
  padding: 18px 0;
  transition: padding 0.22s ease;
}
.docs-insert-zone__line {
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transform: scaleX(0.94);
  transform-origin: center;
  transition:
    background-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.22s ease;
}
.docs-insert-zone__actions {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(18, 21, 29, 0.88);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.docs-insert-zone__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  font-size: 0.92rem;
  background: rgba(24, 28, 37, 0.96);
}
.docs-insert-zone__button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.docs-insert-zone__letter {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
}
.docs-insert-zone__button:hover,
.docs-insert-zone__button:focus-visible {
  transform: none;
}
.docs-insert-zone:hover .docs-insert-zone__line,
.docs-insert-zone--active .docs-insert-zone__line {
  background: rgba(255, 255, 255, 0.2);
  transform: scaleX(1);
}
.docs-insert-zone:hover .docs-insert-zone__actions,
.docs-insert-zone--active .docs-insert-zone__actions {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.docs-insert-zone--dragging .docs-insert-zone__actions {
  opacity: 0;
  pointer-events: none;
}
.docs-insert-zone--drop-target {
  padding: 30px 0;
}
.docs-insert-zone--drop-target .docs-insert-zone__line {
  background: rgba(96, 214, 255, 0.42);
  transform: scaleX(1);
  box-shadow: 0 0 0 1px rgba(96, 214, 255, 0.14);
}
.docs-insert-zone__button--icon {
  position: relative;
}
.docs-insert-zone__button--icon::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 11, 16, 0.96);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.74rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  transition-delay: 1s;
}
.docs-insert-zone__button--icon:hover::after,
.docs-insert-zone__button--icon:focus-visible::after {
  opacity: 1;
}
.docs-rich-text {
  overflow-wrap: anywhere;
}
.docs-rich-text a {
  color: #8ddfff;
  text-decoration: underline;
  text-decoration-color: rgba(141, 223, 255, 0.42);
  text-underline-offset: 0.18em;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}
.docs-rich-text a:hover,
.docs-rich-text a:focus-visible {
  color: #c8f3ff;
  text-decoration-color: rgba(200, 243, 255, 0.74);
}
.docs-rich-text code {
  padding: 0.14em 0.38em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.92em;
}
.docs-paragraph {
  margin: 0;
  font-size: var(--docs-paragraph-size);
  line-height: var(--docs-paragraph-line-height);
  color: rgba(255, 255, 255, 0.92);
}
.docs-input--chapter-title {
  font-weight: 600;
}
.docs-input--chapter-title {
  font-size: 1.18rem;
}
.docs-image-frame {
  display: grid;
  gap: 10px;
  margin: 0;
}
.docs-image-frame--small {
  max-width: 320px;
}
.docs-image-frame--medium {
  max-width: 520px;
}
.docs-image-frame--large {
  max-width: 760px;
}
.docs-image-frame--full {
  max-width: 100%;
}
.docs-image-frame--editor {
  margin-bottom: 12px;
}
.docs-image-frame__link {
  display: block;
  width: 100%;
}
.docs-file-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}
.docs-file-card__icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  line-height: 1;
}
.docs-file-card__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.docs-file-card__body {
  min-width: 0;
  display: grid;
  gap: 4px;
}
.docs-file-card__title {
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.docs-file-card__meta {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}
.docs-file-card__caption {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}
.docs-image {
  display: block;
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.docs-image--placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.62);
}
.docs-image__caption,
.docs-empty-state__text,
.docs-modal__text {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.docs-empty-state,
.docs-loading,
.docs-error {
  padding: 28px;
}
.docs-empty-state--compact {
  padding-inline: 0;
  background: none;
  border: 0;
  box-shadow: none;
}
.docs-section-index {
  margin-top: 28px;
}
.docs-section-index__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.docs-section-index__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 148px;
  padding: 24px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}
.docs-section-index__card:hover,
.docs-section-index__card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(96, 214, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}
.docs-section-index__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  flex: 0 0 auto;
}
.docs-section-index__card-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.docs-section-index__card-content {
  display: grid;
  gap: 12px;
  min-width: 0;
}
.docs-section-index__card-title {
  font-family: var(--ifm-heading-font-family);
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  font-weight: 700;
  line-height: 1.12;
}
.docs-section-index__card-meta {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}
.docs-section-index__empty {
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.62);
}
.docs-error {
  color: #ffd0d0;
  border-color: rgba(255, 110, 110, 0.26);
  background: rgba(89, 18, 18, 0.34);
}
.docs-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 48;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(4, 6, 12, 0.72);
  backdrop-filter: blur(4px);
}
.docs-modal {
  width: min(680px, calc(100vw - 48px));
  padding: 24px;
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
}
.docs-modal-backdrop--drawer {
  justify-content: flex-start;
  padding: 0;
}
.docs-modal--drawer {
  width: min(420px, calc(100vw - 24px));
  max-height: 100dvh;
  height: 100dvh;
  padding: 22px 18px 22px 20px;
  border-radius: 0 24px 24px 0;
}
.docs-modal--compact {
  width: min(560px, calc(100vw - 48px));
}
.docs-toc__card {
  padding: 18px 14px;
}
.docs-side-actions {
  width: 100%;
}
.docs-side-actions__card {
  display: grid;
  gap: 10px;
}
.docs-side-actions .docs-route__controls--page {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 0;
}
.docs-side-actions .docs-route__controls--page .docs-toolbar-button {
  width: 100%;
}
.docs-mobile-panel__section {
  display: grid;
  gap: 14px;
}
.docs-mobile-panel__actions .docs-route__controls--page {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 0;
}
.docs-mobile-panel__actions .docs-toolbar-button {
  width: 100%;
}
.docs-site-drawer {
  display: grid;
  gap: 18px;
}
.docs-site-drawer__section {
  display: grid;
  gap: 10px;
}
.docs-site-drawer__section--actions .docs-route__controls--page,
.docs-route__controls--mobile-drawer {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 0;
}
.docs-site-drawer__section--actions .docs-toolbar-button,
.docs-route__controls--mobile-drawer .docs-toolbar-button {
  width: 100%;
}
.docs-toc__eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.docs-toc__nav {
  display: grid;
  gap: 2px;
}
.docs-toc__link {
  display: block;
  padding: 7px 10px;
  border-left: 2px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  line-height: 1.45;
  transition:
    border-color 0.18s ease,
    color 0.18s ease,
    background-color 0.18s ease;
}
.docs-toc__link:hover,
.docs-toc__link:focus-visible {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(96, 214, 255, 0.32);
  background: rgba(255, 255, 255, 0.03);
}
.docs-toc__link--active {
  color: #ffffff;
  border-color: rgba(96, 214, 255, 0.88);
  background: rgba(54, 174, 234, 0.08);
}
.docs-toc__link--level-2 {
  margin-left: 12px;
  font-size: 0.95rem;
}
.docs-toc__link--level-3 {
  margin-left: 24px;
  font-size: 0.92rem;
}
.docs-modal__header,
.docs-modal__body {
  display: grid;
  gap: 12px;
}
.docs-modal__field {
  display: grid;
  gap: 8px;
}
.docs-modal__label {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.docs-modal__input {
  min-height: 46px;
}
.docs-modal__summary {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}
.docs-modal__summary-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.docs-modal__summary-value {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.5;
  word-break: break-word;
}
.docs-modal__tree {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  max-height: 320px;
  overflow: auto;
}
.docs-modal__tree-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
}
.docs-modal__actions {
  justify-content: flex-end;
  margin-top: 18px;
}
@keyframes docs-block-insert {
  0% {
    opacity: 0.4;
    transform: translateY(8px) scale(0.986);
  }
  60% {
    opacity: 1;
    transform: translateY(-2px) scale(1.006);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 1220px) {
  .docs-main {
    padding: 16px;
  }
  .docs-route {
    width: 100%;
    gap: 0;
  }
  .docs-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .docs-layout > .docs-sidebar,
  .docs-layout > .docs-layout__toc-slot {
    display: none;
  }
  .docs-content-shell {
    width: 100%;
    min-width: 0;
    max-width: none;
  }
}
@media (max-width: 996px) {
  .docs-main {
    padding: 12px;
  }
  .docs-route {
    width: 100%;
    gap: 14px;
    --docs-shell-padding: 18px 16px;
    --docs-page-gap: 16px;
    --docs-title-size: clamp(30px, 8.8vw, 38px);
    --docs-title-line-height: 1.06;
    --docs-h2-size: 20px;
    --docs-h2-line-height: 1.1;
    --docs-h2-weight: 800;
    --docs-h3-size: 15px;
    --docs-h3-line-height: 1.14;
    --docs-h3-weight: 700;
    --docs-paragraph-size: 0.96rem;
    --docs-paragraph-line-height: 1.74;
  }
  .docs-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .docs-layout > .docs-sidebar,
  .docs-layout > .docs-layout__toc-slot {
    display: none;
  }
  .docs-mobile-bar {
    position: sticky;
    top: calc(var(--ifm-navbar-height) + 10px);
    z-index: 6;
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
  }
  .docs-mobile-bar__actions {
    overflow: visible;
  }
  .docs-mobile-bar__menu-button {
    width: 100%;
    justify-content: flex-start;
  }
  .docs-tree-item__label {
    font-size: 0.92rem;
  }
  .docs-mobile-bar__menu-button {
    font-size: 0.94rem;
  }
  .docs-empty-state,
  .docs-loading,
  .docs-error {
    padding: 20px 18px;
    border-radius: 18px;
  }
  .docs-section-index {
    margin-top: 18px;
  }
  .docs-section-index__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .docs-section-index__card-title {
    font-size: clamp(1.14rem, 4.8vw, 1.38rem);
  }
  .docs-modal-backdrop {
    align-items: flex-end;
    padding: 10px;
  }
  .docs-modal-backdrop--drawer {
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
  }
  .docs-modal,
  .docs-modal--compact {
    width: 100%;
    max-height: calc(100dvh - 20px);
    padding: 18px;
    border-radius: 20px;
  }
  .docs-modal--drawer {
    width: min(88vw, 380px);
    height: 100dvh;
    max-height: 100dvh;
    padding: 18px 14px 18px 16px;
    border-radius: 0 20px 20px 0;
  }
}
@media (max-width: 640px) {
  .docs-route__controls,
  .docs-empty-state__actions,
  .docs-edit-block__toolbar,
  .docs-modal__actions,
  .docs-tree-composer__kind-switch {
    flex-direction: column;
    align-items: stretch;
  }
  .docs-page__pagination {
    grid-template-columns: 1fr;
  }
  .docs-route {
    --docs-shell-padding: 20px 18px;
    --docs-page-gap: 18px;
    --docs-title-size: clamp(34px, 9.8vw, 39px);
    --docs-title-line-height: 1.04;
    --docs-h2-size: 26px;
    --docs-h2-line-height: 1.1;
    --docs-h3-size: 20px;
    --docs-h3-line-height: 1.14;
    --docs-paragraph-size: 16px;
    --docs-paragraph-line-height: 1.76;
  }
  .docs-tree-item__actions {
    opacity: 1;
  }
}
@media (hover: none) and (pointer: coarse) and (max-width: 1280px) {
  .docs-route {
    --docs-shell-padding: 20px 18px;
    --docs-page-gap: 18px;
    --docs-title-size: clamp(31px, 7vw, 34px);
    --docs-title-line-height: 1.05;
    --docs-h2-size: 24px;
    --docs-h2-line-height: 1.1;
    --docs-h2-weight: 800;
    --docs-h3-size: 19px;
    --docs-h3-line-height: 1.14;
    --docs-h3-weight: 700;
    --docs-paragraph-size: 16px;
    --docs-paragraph-line-height: 1.76;
  }
  .docs-tree-item__label {
    font-size: 0.98rem;
  }
}
