:root {
    color-scheme: light;
    --docs-bg: #f4f4f2;
    --docs-surface: #ffffff;
    --docs-surface-soft: #f7f7f6;
    --docs-surface-raised: #fbfbfa;
    --docs-text: #041818;
    --docs-text-soft: #5f6f6f;
    --docs-text-faint: #788686;
    --docs-border: #e4e4e0;
    --docs-border-strong: #d4d4cf;
    --docs-active: #e5e5e2;
    --docs-code: #f2f2f0;
    --docs-accent: #0c2c4e;
    --docs-accent-soft: #eaf0f5;
    --docs-brand-dark: #041818;
    --docs-brand-primary: #0c2c4e;
    --docs-info-bg: #eef5ff;
    --docs-info-border: #bad4ff;
    --docs-info-text: #234c95;
    --docs-tip-bg: #effaf3;
    --docs-tip-border: #b8e7c6;
    --docs-tip-text: #236b3d;
    --docs-warning-bg: #fff8e8;
    --docs-warning-border: #efd39a;
    --docs-warning-text: #765118;
    --docs-shadow: 0 18px 48px rgba(21, 21, 21, 0.12);
    --docs-sidebar-width: 320px;
    --docs-topbar-height: 72px;
    --docs-radius: 18px;
    --docs-control-height: 40px;
    --docs-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --docs-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    --docs-font-size-base: 1rem;
    --docs-font-size-small: 0.9rem;
    --docs-font-size-large: 1.1rem;
}

:root[data-theme="dark"] {
    color-scheme: dark;
    --docs-bg: #111210;
    --docs-surface: #181917;
    --docs-surface-soft: #20211f;
    --docs-surface-raised: #1c1d1b;
    --docs-text: #f3f3ef;
    --docs-text-soft: #b7b8b2;
    --docs-text-faint: #8e8f89;
    --docs-border: #30312e;
    --docs-border-strong: #41423d;
    --docs-active: #2c2d2a;
    --docs-code: #242522;
    --docs-accent: #b9f56f;
    --docs-accent-soft: #263321;
    --docs-brand-dark: #f3f3ef;
    --docs-brand-primary: #b9f56f;
    --docs-info-bg: #17243a;
    --docs-info-border: #345681;
    --docs-info-text: #b7d1ff;
    --docs-tip-bg: #172c1e;
    --docs-tip-border: #356a45;
    --docs-tip-text: #b8e7c6;
    --docs-warning-bg: #302719;
    --docs-warning-border: #6f552d;
    --docs-warning-text: #efd59e;
    --docs-shadow: 0 20px 60px rgba(0, 0, 0, 0.44);
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        color-scheme: dark;
        --docs-bg: #111210;
        --docs-surface: #181917;
        --docs-surface-soft: #20211f;
        --docs-surface-raised: #1c1d1b;
        --docs-text: #f3f3ef;
        --docs-text-soft: #b7b8b2;
        --docs-text-faint: #8e8f89;
        --docs-border: #30312e;
        --docs-border-strong: #41423d;
        --docs-active: #2c2d2a;
        --docs-code: #242522;
        --docs-accent: #b9f56f;
        --docs-accent-soft: #263321;
        --docs-brand-dark: #f3f3ef;
        --docs-brand-primary: #b9f56f;
        --docs-info-bg: #17243a;
        --docs-info-border: #345681;
        --docs-info-text: #b7d1ff;
        --docs-tip-bg: #172c1e;
        --docs-tip-border: #356a45;
        --docs-tip-text: #b8e7c6;
        --docs-warning-bg: #302719;
        --docs-warning-border: #6f552d;
        --docs-warning-text: #efd59e;
        --docs-shadow: 0 20px 60px rgba(0, 0, 0, 0.44);
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--docs-topbar-height) + 30px);
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--docs-bg);
    color: var(--docs-text);
    font-family: var(--docs-font);
    font-size: var(--docs-font-size-base);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.docs-no-scroll {
    overflow: hidden;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--docs-accent) 65%, transparent);
    outline-offset: 3px;
}

.visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.docs-skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 9px 14px;
    border-radius: 10px;
    background: var(--docs-text);
    color: var(--docs-surface);
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

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

.docs-topbar {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: var(--docs-topbar-height);
    display: grid;
    grid-template-columns: calc(var(--docs-sidebar-width) - 30px) 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 0 24px 0 30px;
    background: color-mix(in srgb, var(--docs-bg) 94%, transparent);
    backdrop-filter: blur(16px);
}

.docs-topbar__brand-row,
.docs-topbar__actions,
.docs-topnav {
    display: flex;
    align-items: center;
}

.docs-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--docs-brand-dark);
    text-decoration: none;
}

.docs-brand__name {
    font-family: monospace;
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1;
}

.docs-brand__section {
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--docs-accent-soft);
    color: var(--docs-brand-primary);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.docs-topnav {
    gap: 8px;
}

.docs-topnav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: var(--docs-control-height);
    padding: 0 13px;
    border-radius: 10px;
    color: var(--docs-text-soft);
    font-size: var(--docs-font-size-base);
    font-weight: 600;
    text-decoration: none;
}

.docs-topnav a:hover,
.docs-topnav a.is-active {
    color: var(--docs-text);
    background: var(--docs-surface-soft);
}

.docs-topbar__actions {
    justify-content: flex-end;
    gap: 10px;
}

.docs-icon-button {
    width: var(--docs-control-height);
    height: var(--docs-control-height);
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--docs-border);
    border-radius: 11px;
    background: var(--docs-surface);
    cursor: pointer;
}

.docs-icon-button:hover {
    border-color: var(--docs-border-strong);
    background: var(--docs-surface-soft);
}

.docs-product-link {
    min-height: var(--docs-control-height);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid var(--docs-brand-dark);
    border-radius: 11px;
    background: var(--docs-brand-dark);
    color: var(--docs-surface);
    font-size: var(--docs-font-size-base);
    font-weight: 700;
    text-decoration: none;
}

.docs-product-link:hover {
    border-color: var(--docs-brand-primary);
    background: var(--docs-brand-primary);
}

.docs-mobile-menu {
    display: none;
    margin-right: 10px;
}

.docs-layout {
    min-height: 100vh;
    padding-top: var(--docs-topbar-height);
}

.docs-sidebar {
    position: fixed;
    z-index: 80;
    top: var(--docs-topbar-height);
    bottom: 0;
    left: 0;
    width: var(--docs-sidebar-width);
    display: flex;
    flex-direction: column;
    padding: 16px 18px 20px;
    background: var(--docs-bg);
}

.docs-sidebar__top {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.docs-search-trigger {
    flex: 1;
    min-width: 0;
    height: var(--docs-control-height);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    border: 1px solid var(--docs-border-strong);
    border-radius: 13px;
    background: var(--docs-surface);
    color: var(--docs-text-soft);
    text-align: left;
    cursor: pointer;
}

.docs-search-trigger:hover {
    border-color: var(--docs-text-faint);
}

.docs-search-trigger__icon {
    color: var(--docs-text);
    font-size: var(--docs-font-size-large);
    line-height: 1;
}

.docs-search-trigger kbd,
.docs-search__panel kbd {
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: var(--docs-text-faint);
    font-family: var(--docs-font);
    font-size: var(--docs-font-size-small);
}

.docs-sidebar__close {
    display: none;
}

.docs-sidenav {
    min-height: 0;
    overflow: auto;
    overscroll-behavior: contain;
    padding: 0 1px 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--docs-border-strong) transparent;
}

.docs-sidenav section + section {
    margin-top: 24px;
}

.docs-sidenav h2 {
    margin: 0 0 7px;
    padding: 0 10px;
    font-size: var(--docs-font-size-small);
    font-weight: 750;
    letter-spacing: 0.01em;
}

.docs-sidenav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.docs-sidenav li + li {
    margin-top: 1px;
}

.docs-sidenav a {
    display: flex;
    min-height: var(--docs-control-height);
    align-items: center;
    padding: 7px 11px;
    border-radius: 11px;
    color: var(--docs-text-soft);
    font-size: var(--docs-font-size-base);
    line-height: 1.3;
    text-decoration: none;
}

.docs-sidenav a:hover {
    color: var(--docs-text);
    background: color-mix(in srgb, var(--docs-active) 60%, transparent);
}

.docs-sidenav a.is-active {
    color: var(--docs-text);
    background: var(--docs-active);
    font-weight: 650;
}

.docs-sidebar__footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 10px 0;
    border-top: 1px solid var(--docs-border);
    color: var(--docs-text-faint);
    font-size: var(--docs-font-size-small);
}

.docs-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #37a95b;
    box-shadow: 0 0 0 3px color-mix(in srgb, #37a95b 18%, transparent);
}

.docs-sidebar-backdrop {
    display: none;
}

.docs-main {
    min-height: calc(100vh - var(--docs-topbar-height));
    margin-left: var(--docs-sidebar-width);
    display: grid;
    grid-template-columns: minmax(0, 800px) 210px;
    justify-content: center;
    align-items: start;
    gap: clamp(42px, 5vw, 84px);
    padding: 62px clamp(30px, 4.5vw, 74px) 80px;
    border-radius: var(--docs-radius) 0 0 0;
    background: var(--docs-surface);
}

.docs-article {
    min-width: 0;
}

.docs-article__header {
    padding-bottom: 34px;
}

.docs-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--docs-text-faint);
    font-size: var(--docs-font-size-base);
    font-weight: 500;
    line-height: 1.4;
}

.docs-breadcrumb__separator {
    width: 7px;
    height: 7px;
    margin: 0 2px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.72;
}

.docs-breadcrumb [aria-current="page"] {
    color: var(--docs-text-soft);
}

.docs-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
}

.docs-title-row h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(26px, 3.7vw, 38px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.docs-copy-page {
    flex: none;
    width: var(--docs-control-height);
    height: var(--docs-control-height);
    min-height: var(--docs-control-height);
    display: inline-grid;
    place-items: center;
    margin-top: 5px;
    padding: 0;
    border: 1px solid var(--docs-border);
    border-radius: 11px;
    background: var(--docs-surface);
    color: var(--docs-text-soft);
    cursor: pointer;
}

.docs-copy-page:hover {
    color: var(--docs-text);
    border-color: var(--docs-border-strong);
}

.docs-copy-page__icon {
    position: relative;
    width: 15px;
    height: 16px;
}

.docs-copy-page__icon::before,
.docs-copy-page__icon::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 12px;
    border: 1.5px solid currentColor;
    border-radius: 2px;
}

.docs-copy-page__icon::before {
    top: 0;
    left: 0;
    opacity: 0.7;
}

.docs-copy-page__icon::after {
    right: 0;
    bottom: 0;
    background: var(--docs-surface);
}

.docs-lede {
    max-width: 700px;
    margin: 20px 0 0;
    color: var(--docs-text-soft);
    font-size: var(--docs-font-size-large);
    line-height: 1.55;
    letter-spacing: -0.015em;
}

.docs-prose {
    color: var(--docs-text-soft);
    font-size: var(--docs-font-size-base);
}

.docs-prose > :first-child {
    margin-top: 0;
}

.docs-prose p,
.docs-prose ul,
.docs-prose ol {
    margin-top: 0;
    margin-bottom: 22px;
}

.docs-prose h2 {
    margin: 58px 0 20px;
    color: var(--docs-text);
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.docs-prose h3 {
    margin: 0 0 8px;
    color: var(--docs-text);
    font-size: var(--docs-font-size-large);
    line-height: 1.35;
    letter-spacing: -0.015em;
}

.docs-prose ul,
.docs-prose ol:not(.docs-steps) {
    padding-left: 25px;
}

.docs-prose li + li {
    margin-top: 9px;
}

.docs-prose strong {
    color: var(--docs-text);
}

.docs-prose em {
    color: var(--docs-text);
}

.docs-prose a:not(.docs-card):not(.docs-link-list a) {
    color: var(--docs-text);
    text-decoration-color: var(--docs-text-faint);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

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

.docs-prose code {
    padding: 0.16em 0.4em;
    border-radius: 6px;
    background: var(--docs-code);
    color: var(--docs-text);
    font-family: var(--docs-mono);
    font-size: var(--docs-font-size-small);
    overflow-wrap: anywhere;
}

.docs-card-grid {
    display: grid;
    gap: 16px;
    margin: 28px 0 36px;
}

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

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

.docs-card {
    min-width: 0;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--docs-border);
    border-radius: 16px;
    background: var(--docs-surface-raised);
    text-decoration: none;
    transition: border-color 160ms ease;
}

.docs-card:hover {
    border-color: var(--docs-text);
}

.docs-card__mark {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 30px;
    border: 1px solid var(--docs-border);
    border-radius: 10px;
    background: var(--docs-surface);
    color: var(--docs-text);
    font-family: var(--docs-mono);
    font-size: var(--docs-font-size-small);
    font-style: normal;
    font-weight: 700;
}

.docs-card h3 {
    font-size: var(--docs-font-size-large);
}

.docs-card p {
    margin: 0;
    color: var(--docs-text-soft);
    font-size: var(--docs-font-size-base);
    line-height: 1.55;
}

.docs-link-list {
    margin: 28px 0;
    border-top: 1px solid var(--docs-border);
}

.docs-link-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 19px 4px;
    border-bottom: 1px solid var(--docs-border);
    text-decoration: none;
}

.docs-link-list a:hover {
    color: var(--docs-accent);
}

.docs-link-list strong,
.docs-link-list small {
    display: block;
}

.docs-link-list small {
    margin-top: 3px;
    color: var(--docs-text-soft);
    font-size: var(--docs-font-size-small);
    font-weight: 400;
}

.docs-steps {
    margin: 28px 0 36px !important;
    padding: 0 !important;
    counter-reset: docs-step;
    list-style: none;
}

.docs-steps[start="3"] {
    counter-reset: docs-step 2;
}

.docs-steps li {
    position: relative;
    min-height: 62px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
    counter-increment: docs-step;
}

.docs-steps li + li {
    margin-top: 18px;
}

.docs-steps li::before {
    content: counter(docs-step);
    position: relative;
    z-index: 1;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--docs-border);
    border-radius: 999px;
    background: var(--docs-surface-soft);
    color: var(--docs-text);
    font-family: var(--docs-mono);
    font-size: var(--docs-font-size-small);
}

.docs-steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 42px;
    bottom: -14px;
    left: 18px;
    width: 1px;
    background: var(--docs-border);
}

.docs-steps strong {
    display: block;
    margin: 5px 0 4px;
}

.docs-steps p {
    margin-bottom: 0;
    color: var(--docs-text-soft);
    font-size: var(--docs-font-size-base);
}

.docs-callout {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 14px;
    margin: 30px 0;
    padding: 19px 21px;
    border: 1px solid;
    border-radius: 15px;
    font-size: var(--docs-font-size-base);
    line-height: 1.55;
}

.docs-callout__icon {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-family: var(--docs-mono);
    font-size: var(--docs-font-size-small);
    font-weight: 700;
}

.docs-callout--info {
    border-color: var(--docs-info-border);
    background: var(--docs-info-bg);
    color: var(--docs-info-text);
}

.docs-callout--tip {
    border-color: var(--docs-tip-border);
    background: var(--docs-tip-bg);
    color: var(--docs-tip-text);
}

.docs-callout--warning {
    border-color: var(--docs-warning-border);
    background: var(--docs-warning-bg);
    color: var(--docs-warning-text);
}

.docs-callout strong,
.docs-callout code {
    color: inherit;
}

.docs-code {
    margin: 28px 0 34px;
    overflow: hidden;
    border: 1px solid var(--docs-border);
    border-radius: 16px;
    background: var(--docs-code);
}

.docs-code__bar {
    min-height: var(--docs-control-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 14px 0 19px;
    border-bottom: 1px solid var(--docs-border);
    color: var(--docs-text-faint);
    font-family: var(--docs-mono);
    font-size: var(--docs-font-size-small);
}

.docs-code__bar button {
    min-height: 30px;
    padding: 0 9px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    color: var(--docs-text-soft);
    font-family: var(--docs-font);
    font-size: var(--docs-font-size-small);
    cursor: pointer;
}

.docs-code__bar button:hover {
    border-color: var(--docs-border);
    background: var(--docs-surface);
    color: var(--docs-text);
}

.docs-code pre {
    margin: 0;
    padding: 19px 22px 22px;
    overflow: auto;
    color: var(--docs-text);
    font-family: var(--docs-mono);
    font-size: var(--docs-font-size-base);
    line-height: 1.7;
    tab-size: 4;
}

.docs-code code {
    padding: 0;
    background: transparent;
    font-size: inherit;
    white-space: pre;
}

.docs-table-wrap {
    margin: 28px 0 36px;
    overflow-x: auto;
    border: 1px solid var(--docs-border);
    border-radius: 15px;
}

.docs-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    background: var(--docs-surface-raised);
    font-size: var(--docs-font-size-base);
    line-height: 1.5;
}

.docs-table-wrap th,
.docs-table-wrap td {
    min-width: 130px;
    padding: 15px 17px;
    border-bottom: 1px solid var(--docs-border);
    text-align: left;
    vertical-align: top;
}

.docs-table-wrap th {
    background: var(--docs-surface-soft);
    color: var(--docs-text);
    font-size: var(--docs-font-size-small);
    letter-spacing: 0.025em;
}

.docs-table-wrap td:first-child {
    color: var(--docs-text);
    font-weight: 600;
}

.docs-table-wrap tr:last-child td {
    border-bottom: 0;
}

.docs-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0 36px;
}

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

.docs-stat-grid > div {
    min-height: 118px;
    padding: 18px;
    border: 1px solid var(--docs-border);
    border-radius: 14px;
    background: var(--docs-surface-raised);
}

.docs-stat-grid strong,
.docs-stat-grid span {
    display: block;
}

.docs-stat-grid strong {
    margin-bottom: 9px;
    color: var(--docs-text);
    font-size: var(--docs-font-size-base);
}

.docs-stat-grid span {
    color: var(--docs-text-soft);
    font-size: var(--docs-font-size-small);
    line-height: 1.5;
}

.docs-checklist {
    padding-left: 0 !important;
    list-style: none;
}

.docs-checklist li {
    position: relative;
    padding-left: 28px;
}

.docs-checklist li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 2px;
    color: #29924c;
    font-weight: 800;
}

.docs-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0;
}

.docs-chip-list span {
    padding: 7px 11px;
    border: 1px solid var(--docs-border);
    border-radius: 999px;
    background: var(--docs-surface-soft);
    color: var(--docs-text);
    font-size: var(--docs-font-size-small);
}

.docs-feedback {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 22px;
    margin-top: 72px;
    padding: 24px 0;
    border-top: 1px solid var(--docs-border);
    border-bottom: 1px solid var(--docs-border);
}

.docs-feedback h2 {
    margin: 0 0 2px;
    font-size: var(--docs-font-size-base);
}

.docs-feedback p {
    margin: 0;
    color: var(--docs-text-faint);
    font-size: var(--docs-font-size-small);
}

.docs-feedback__buttons {
    display: flex;
    gap: 9px;
}

.docs-feedback__buttons button {
    min-width: 78px;
    min-height: var(--docs-control-height);
    padding: 0 13px;
    border: 1px solid var(--docs-border);
    border-radius: 10px;
    background: var(--docs-surface);
    cursor: pointer;
}

.docs-feedback__buttons button:hover,
.docs-feedback__buttons button.is-selected {
    border-color: var(--docs-border-strong);
    background: var(--docs-active);
}

.docs-feedback__message {
    position: absolute;
    right: 0;
    bottom: -24px;
}

.docs-page-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 54px;
}

.docs-page-nav a {
    min-height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 17px 19px;
    border: 1px solid var(--docs-border);
    border-radius: 14px;
    text-decoration: none;
}

.docs-page-nav a:hover {
    border-color: var(--docs-border-strong);
    background: var(--docs-surface-soft);
}

.docs-page-nav span {
    margin-bottom: 4px;
    color: var(--docs-text-faint);
    font-size: var(--docs-font-size-small);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.docs-page-nav strong {
    font-size: var(--docs-font-size-base);
}

.docs-page-nav i {
    font-style: normal;
}

.docs-page-nav__next {
    align-items: flex-end;
    text-align: right;
}

.docs-toc {
    position: sticky;
    top: calc(var(--docs-topbar-height) + 40px);
    max-height: calc(100vh - var(--docs-topbar-height) - 70px);
    overflow: auto;
    color: var(--docs-text-soft);
    font-size: var(--docs-font-size-small);
}

.docs-toc__title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 11px;
    color: var(--docs-text);
    font-weight: 700;
}

.docs-toc nav {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

.docs-toc nav::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 1px;
    background: var(--docs-border);
}

.docs-toc a {
    position: relative;
    padding: 7px 0;
    color: var(--docs-text-soft);
    line-height: 1.35;
    text-decoration: none;
}

.docs-toc a::before {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: -15px;
    width: 1px;
    background: transparent;
}

.docs-toc a:hover,
.docs-toc a.is-active {
    color: var(--docs-text);
}

.docs-toc a.is-active {
    font-weight: 650;
}

.docs-toc a.is-active::before {
    background: var(--docs-text);
}

.docs-search[hidden] {
    display: none;
}

.docs-search {
    position: fixed;
    z-index: 500;
    inset: 0;
    display: grid;
    place-items: start center;
    padding: max(12vh, 70px) 20px 40px;
}

.docs-search__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.46);
    backdrop-filter: blur(5px);
}

.docs-search__panel {
    position: relative;
    width: min(680px, 100%);
    max-height: min(680px, 78vh);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--docs-border-strong);
    border-radius: 18px;
    background: var(--docs-surface);
    box-shadow: var(--docs-shadow);
}

.docs-search__input-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 13px 14px 13px 20px;
    border-bottom: 1px solid var(--docs-border);
}

.docs-search__input-row > span {
    color: var(--docs-text-faint);
    font-size: var(--docs-font-size-large);
}

.docs-search__input-row input {
    min-width: 0;
    height: var(--docs-control-height);
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--docs-text);
    font-size: var(--docs-font-size-base);
}

.docs-search__input-row input::placeholder {
    color: var(--docs-text-faint);
}

.docs-search__input-row button {
    min-height: 30px;
    padding: 0 8px;
    border: 1px solid var(--docs-border);
    border-radius: 7px;
    background: var(--docs-surface-soft);
    color: var(--docs-text-faint);
    font-size: var(--docs-font-size-small);
    cursor: pointer;
}

.docs-search__results {
    min-height: 130px;
    overflow: auto;
    padding: 8px;
}

.docs-search__results a {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 13px 14px;
    border-radius: 11px;
    text-decoration: none;
}

.docs-search__results a:hover,
.docs-search__results a.is-focused {
    background: var(--docs-active);
}

.docs-search__results small,
.docs-search__results strong,
.docs-search__results em {
    display: block;
}

.docs-search__results small {
    margin-bottom: 2px;
    color: var(--docs-accent);
    font-size: var(--docs-font-size-small);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.docs-search__results strong {
    font-size: var(--docs-font-size-base);
}

.docs-search__results em {
    margin-top: 2px;
    overflow: hidden;
    color: var(--docs-text-soft);
    font-size: var(--docs-font-size-small);
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.docs-search__empty {
    margin: 0;
    padding: 40px 20px;
    color: var(--docs-text-faint);
    text-align: center;
}

.docs-search__panel footer {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    padding: 10px 15px;
    border-top: 1px solid var(--docs-border);
    color: var(--docs-text-faint);
    font-size: var(--docs-font-size-small);
}

.docs-search__panel footer kbd {
    min-width: 20px;
    display: inline-grid;
    place-items: center;
    margin-right: 3px;
    padding: 2px 5px;
    border: 1px solid var(--docs-border);
    background: var(--docs-surface-soft);
}

@media (max-width: 1220px) {
    :root {
        --docs-sidebar-width: 286px;
    }

    .docs-main {
        grid-template-columns: minmax(0, 820px);
    }

    .docs-toc {
        display: none;
    }

    .docs-topbar {
        grid-template-columns: calc(var(--docs-sidebar-width) - 30px) 1fr auto;
    }

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

@media (max-width: 900px) {
    :root {
        --docs-topbar-height: 64px;
    }

    .docs-topbar {
        grid-template-columns: 1fr auto;
        padding: 0 14px;
    }

    .docs-topnav {
        display: none;
    }

    .docs-mobile-menu {
        display: inline-grid;
    }

    .docs-sidebar {
        z-index: 240;
        top: 0;
        width: min(340px, calc(100vw - 42px));
        padding-top: 14px;
        transform: translateX(-105%);
        transition: transform 200ms ease;
        box-shadow: var(--docs-shadow);
    }

    body.docs-sidebar-open .docs-sidebar {
        transform: translateX(0);
    }

    .docs-sidebar-backdrop {
        position: fixed;
        z-index: 220;
        inset: 0;
        display: block;
        visibility: hidden;
        background: rgba(0, 0, 0, 0.42);
        opacity: 0;
        transition: opacity 200ms ease, visibility 200ms ease;
    }

    body.docs-sidebar-open .docs-sidebar-backdrop {
        visibility: visible;
        opacity: 1;
    }

    .docs-sidebar__close {
        display: inline-grid;
    }

    .docs-main {
        min-height: calc(100vh - var(--docs-topbar-height));
        margin-left: 0;
        padding: 48px clamp(22px, 7vw, 58px) 66px;
        border-radius: 0;
    }

    .docs-brand {
        gap: 8px;
    }
}

@media (max-width: 680px) {
    .docs-product-link {
        width: var(--docs-control-height);
        padding: 0;
        justify-content: center;
        font-size: 0;
    }

    .docs-product-link span {
        font-size: var(--docs-font-size-base);
    }

    .docs-topbar__actions {
        gap: 7px;
    }

    .docs-main {
        padding: 35px 20px 56px;
    }

    .docs-breadcrumb {
        display: none;
    }

    .docs-title-row {
        display: block;
    }

    .docs-copy-page {
        margin-top: 14px;
    }

    .docs-lede {
        margin-top: 16px;
        font-size: var(--docs-font-size-large);
    }

    .docs-prose {
        font-size: var(--docs-font-size-base);
    }

    .docs-prose h2 {
        margin-top: 46px;
        font-size: 25px;
    }

    .docs-card-grid--three,
    .docs-card-grid--two,
    .docs-stat-grid,
    .docs-stat-grid--two,
    .docs-page-nav {
        grid-template-columns: 1fr;
    }

    .docs-card {
        min-height: 154px;
    }

    .docs-card__mark {
        margin-bottom: 23px;
    }

    .docs-callout {
        grid-template-columns: 24px minmax(0, 1fr);
        padding: 16px;
    }

    .docs-feedback {
        grid-template-columns: 1fr;
    }

    .docs-feedback__buttons button {
        flex: 1;
    }

    .docs-feedback__message {
        position: static;
    }

    .docs-page-nav > span:empty {
        display: none;
    }

    .docs-search {
        place-items: start center;
        padding: 10px;
    }

    .docs-search__panel {
        max-height: calc(100vh - 20px);
        border-radius: 14px;
    }

    .docs-search__panel footer {
        display: none;
    }
}

@media (max-width: 420px) {
    .docs-brand__name {
        font-size: 1.2rem;
    }

    .docs-icon-button,
    .docs-product-link {
        width: var(--docs-control-height);
        height: var(--docs-control-height);
        min-height: var(--docs-control-height);
    }

}

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

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

@media print {
    :root {
        color-scheme: light;
    }

    .docs-topbar,
    .docs-sidebar,
    .docs-toc,
    .docs-feedback,
    .docs-page-nav,
    .docs-copy-page,
    .docs-search {
        display: none !important;
    }

    .docs-layout {
        padding: 0;
    }

    .docs-main {
        display: block;
        margin: 0;
        padding: 0;
        background: #fff;
        color: #111;
    }

    .docs-article {
        max-width: none;
    }

    .docs-card,
    .docs-callout,
    .docs-code,
    .docs-table-wrap {
        break-inside: avoid;
    }
}
