.docs-app {
    --docs-bg: #f7fbf8;
    --docs-paper: #fdfefd;
    --docs-soft: #edf5f0;
    --docs-soft-strong: #deeee4;
    --docs-line: #d3e1d9;
    --docs-line-strong: #b8cec1;
    --docs-ink: #10251d;
    --docs-muted: #4c6258;
    --docs-accent: #0f8f61;
    --docs-accent-dark: #08704b;
    --docs-hero: #1f5f47;
    position: relative;
    min-height: 72vh;
    overflow: clip;
    color: var(--docs-ink);
    background-color: var(--docs-bg);
    background-image:
        linear-gradient(rgba(15, 143, 97, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 143, 97, 0.035) 1px, transparent 1px);
    background-size: 40px 40px;
}

.docs-app svg {
    width: 1.25em;
    height: 1.25em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.docs-article__body a {
    color: var(--docs-accent-dark);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

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

.docs-article__body h3 {
    margin: 34px 0 13px;
    color: var(--docs-ink);
    font-size: clamp(20px, 2vw, 25px);
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.docs-article__body table {
    width: 100%;
    margin: 20px 0 28px;
    border-collapse: collapse;
    font-size: 0.95rem;
    line-height: 1.5;
}

.docs-article__body th,
.docs-article__body td {
    padding: 12px 14px;
    border: 1px solid var(--docs-line);
    text-align: left;
    vertical-align: top;
}

.docs-article__body th {
    background: var(--docs-soft);
    color: var(--docs-ink);
    font-weight: 600;
}

.docs-article__body td ul {
    margin: 0;
    padding-left: 1.1em;
}

.docs-article__body td li {
    margin: 0.15em 0;
}

.docs-article__body blockquote {
    margin: 27px 0;
    padding: 18px 20px;
    border: 1px solid var(--docs-line);
    border-radius: 11px;
    background: var(--docs-soft);
    color: var(--docs-ink);
}

.docs-article__body blockquote p:first-child,
.docs-article__body blockquote p:last-child {
    margin-top: 0;
    margin-bottom: 0;
}

.docs-article__body code,
.docs-article__body pre {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.docs-article__body code {
    padding: 0.12em 0.35em;
    border-radius: 5px;
    background: var(--docs-soft-strong);
    font-size: 0.9em;
}

.docs-article__body pre {
    max-width: 100%;
    overflow-x: auto;
    padding: 17px;
    border: 1px solid var(--docs-line);
    border-radius: 10px;
    background: #12251e;
    color: #e8f5ed;
    font-size: 14px;
    line-height: 1.6;
}

.docs-article__body pre code {
    padding: 0;
    background: transparent;
    color: inherit;
}

.docs-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.docs-toolbar {
    position: sticky;
    top: 76px;
    z-index: 40;
    min-height: 64px;
    border-bottom: 1px solid var(--docs-line);
    background: rgba(247, 251, 248, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.docs-toolbar__inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.docs-toolbar__brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 250px;
    gap: 10px;
    color: var(--docs-ink);
    text-decoration: none;
}

.docs-toolbar__mark {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--docs-hero);
    color: #f5fbf7;
    font-size: 15px;
    font-weight: 850;
}

.docs-toolbar__brand > span:last-child {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.docs-toolbar__brand strong {
    font-size: 14px;
    letter-spacing: 0.08em;
}

.docs-toolbar__brand small {
    color: var(--docs-muted);
    font-size: 13px;
    font-weight: 650;
}

.docs-toolbar__menu {
    min-height: 44px;
    display: none;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid var(--docs-line);
    border-radius: 11px;
    background: var(--docs-paper);
    color: var(--docs-ink);
    font-size: 14px;
    font-weight: 760;
    cursor: pointer;
}

.docs-search {
    position: relative;
    width: 100%;
}

.docs-search--compact {
    max-width: 490px;
    margin-left: auto;
}

.docs-search__icon {
    position: absolute;
    top: 50%;
    left: 15px;
    z-index: 2;
    display: inline-flex;
    color: #648074;
    transform: translateY(-50%);
    pointer-events: none;
}

.docs-search input[type="search"] {
    width: 100%;
    min-height: 44px;
    margin: 0;
    padding: 10px 44px;
    border: 1px solid var(--docs-line-strong);
    border-radius: 12px;
    outline: none;
    background: var(--docs-paper);
    color: var(--docs-ink);
    font: inherit;
    font-size: 15px;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
    -webkit-appearance: none;
}

.docs-search input[type="search"]::placeholder {
    color: #71887d;
    opacity: 1;
}

.docs-search input[type="search"]:focus {
    border-color: var(--docs-accent);
    box-shadow: 0 0 0 4px rgba(15, 143, 97, 0.12);
    background: #fbfefc;
}

.docs-search--hero {
    max-width: 650px;
    margin-top: 31px;
}

.docs-search--hero input[type="search"] {
    min-height: 58px;
    padding-left: 50px;
    border-color: rgba(243, 251, 246, 0.35);
    border-radius: 14px;
    background: #f9fdfb;
    font-size: 16px;
    box-shadow: 0 16px 36px rgba(8, 51, 36, 0.22);
}

.docs-search--hero .docs-search__icon {
    left: 18px;
    color: var(--docs-accent-dark);
}

.docs-search__results {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 70;
    max-height: min(480px, 60vh);
    overflow-y: auto;
    padding: 8px;
    border: 1px solid var(--docs-line);
    border-radius: 14px;
    background: var(--docs-paper);
    box-shadow: 0 24px 60px rgba(23, 71, 51, 0.17);
}

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

.docs-search-result {
    display: block;
    padding: 12px 13px;
    border-radius: 9px;
    color: var(--docs-ink);
    text-decoration: none;
}

.docs-search-result:hover,
.docs-search-result:focus-visible,
.docs-search-result.is-selected {
    outline: none;
    background: var(--docs-soft);
}

.docs-search-result small,
.docs-search-result strong,
.docs-search-result span {
    display: block;
}

.docs-search-result small {
    margin-bottom: 3px;
    color: var(--docs-accent-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.docs-search-result strong {
    font-size: 15px;
    line-height: 1.35;
}

.docs-search-result span {
    margin-top: 3px;
    overflow: hidden;
    color: var(--docs-muted);
    font-size: 13px;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.docs-search-empty {
    margin: 0;
    padding: 17px 15px;
    color: var(--docs-muted);
    font-size: 14px;
    line-height: 1.5;
}

.docs-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
    padding-top: 30px;
    padding-bottom: 72px;
}

.docs-layout--article {
    grid-template-columns: 230px minmax(0, 1fr) 180px;
    gap: 36px;
}

.docs-sidebar {
    position: sticky;
    top: 164px;
    align-self: start;
    max-height: calc(100dvh - 184px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--docs-line-strong) transparent;
}

.docs-sidebar__mobile-head {
    display: none;
}

.docs-sidebar__inner {
    padding-bottom: 20px;
}

.docs-sidebar__home {
    min-height: 45px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    padding: 0 12px;
    border-radius: 10px;
    color: var(--docs-muted);
    font-size: 14px;
    font-weight: 780;
    text-decoration: none;
}

.docs-sidebar__home svg {
    flex: 0 0 auto;
}

.docs-sidebar__home:hover,
.docs-sidebar__home.is-active {
    background: var(--docs-soft-strong);
    color: var(--docs-accent-dark);
}

.docs-sidebar__tree {
    border-top: 1px solid var(--docs-line);
    padding-top: 14px;
}

.docs-nav-group {
    margin: 0;
}

.docs-nav-group > summary {
    position: relative;
    min-height: 39px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 8px 8px 12px;
    border-radius: 8px;
    color: var(--docs-ink);
    font-size: 13px;
    font-weight: 790;
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
}

.docs-nav-group > summary::-webkit-details-marker {
    display: none;
}

.docs-nav-group > summary:hover {
    background: rgba(222, 238, 228, 0.58);
}

.docs-nav-group__chevron {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    margin-right: 2px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.docs-nav-group[open] > summary .docs-nav-group__chevron {
    transform: rotate(225deg) translate(-2px, -2px);
}

.docs-nav-group__items {
    margin: 1px 0 10px 18px;
    padding-left: 10px;
    border-left: 1px solid var(--docs-line);
}

.docs-nav-group__items > a {
    display: block;
    margin: 1px 0;
    padding: 7px 10px;
    border-radius: 7px;
    color: var(--docs-muted);
    font-size: 13px;
    font-weight: 620;
    line-height: 1.45;
    text-decoration: none;
}

.docs-nav-group__items > a:hover {
    background: var(--docs-soft);
    color: var(--docs-ink);
}

.docs-nav-group__items > a[aria-current="page"] {
    background: var(--docs-soft-strong);
    color: var(--docs-accent-dark);
    font-weight: 780;
}

.docs-nav-group--depth-1 {
    margin: 4px 0;
}

.docs-nav-group--depth-1 > summary {
    min-height: 34px;
    padding-left: 9px;
    color: var(--docs-muted);
    font-size: 12px;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.docs-nav-group--depth-1 > .docs-nav-group__items {
    margin-left: 9px;
}

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

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

.docs-home-hero {
    position: relative;
    isolation: isolate;
    min-height: 360px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 51px clamp(34px, 5vw, 64px);
    border: 1px solid rgba(16, 37, 29, 0.11);
    border-radius: 18px;
    background: var(--docs-hero);
    color: #f3fbf6;
    box-shadow: 0 24px 58px rgba(23, 71, 51, 0.16);
}

.docs-home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(245, 251, 247, 0.042) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 251, 247, 0.042) 1px, transparent 1px);
    background-size: 32px 32px;
}

.docs-home-hero::after {
    content: "";
    position: absolute;
    right: -116px;
    bottom: -174px;
    z-index: -1;
    width: 360px;
    height: 360px;
    border: 66px solid rgba(126, 224, 179, 0.16);
    border-radius: 50%;
}

.docs-home-hero__content {
    position: relative;
    z-index: 1;
    width: min(100%, 720px);
}

.docs-kicker {
    display: block;
    margin-bottom: 19px;
    color: #a9ebca;
    font-family: var(--ai2-mono, "SFMono-Regular", Consolas, monospace);
    font-size: 11px;
    font-weight: 790;
    letter-spacing: 0.13em;
    line-height: 1.35;
    text-transform: uppercase;
}

.docs-home-hero h1 {
    max-width: 720px;
    margin: 0;
    color: #f3fbf6;
    font-size: clamp(40px, 4.5vw, 58px);
    font-weight: 830;
    letter-spacing: -0.052em;
    line-height: 1.02;
    text-wrap: balance;
}

.docs-home-hero__content > p {
    max-width: 660px;
    margin: 20px 0 0;
    color: #d0e4d9;
    font-size: 17px;
    line-height: 1.62;
    text-wrap: pretty;
}

.docs-home-hero__index {
    position: absolute;
    right: 31px;
    top: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(243, 251, 246, 0.53);
    font-family: var(--ai2-mono, "SFMono-Regular", Consolas, monospace);
    font-size: 10px;
    font-weight: 700;
}

.docs-home-hero__index i {
    width: 34px;
    height: 1px;
    background: rgba(243, 251, 246, 0.3);
}

.docs-home-section {
    padding: 62px 0 4px;
}

.docs-section-heading {
    margin-bottom: 25px;
}

.docs-section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.7fr);
    gap: 36px;
    align-items: end;
}

.docs-section-heading > div {
    display: flex;
    align-items: baseline;
    gap: 13px;
}

.docs-section-heading__number {
    color: var(--docs-accent);
    font-family: var(--ai2-mono, "SFMono-Regular", Consolas, monospace);
    font-size: 11px;
    font-weight: 800;
}

.docs-section-heading h2 {
    margin: 0;
    color: var(--docs-ink);
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 820;
    letter-spacing: -0.038em;
    line-height: 1.12;
}

.docs-section-heading > p {
    margin: 0;
    color: var(--docs-muted);
    font-size: 15px;
    line-height: 1.6;
}

.docs-popular-list {
    border-top: 1px solid var(--docs-line-strong);
}

.docs-popular-item {
    min-height: 118px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 40px;
    gap: 19px;
    align-items: center;
    padding: 20px 12px 20px 3px;
    border-bottom: 1px solid var(--docs-line);
    color: var(--docs-ink);
    text-decoration: none;
    transition: background-color 180ms ease, padding 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.docs-popular-item:hover {
    padding-left: 12px;
    background: rgba(237, 245, 240, 0.74);
}

.docs-popular-item__number {
    color: var(--docs-accent);
    font-family: var(--ai2-mono, "SFMono-Regular", Consolas, monospace);
    font-size: 12px;
    font-weight: 750;
}

.docs-popular-item__copy small,
.docs-popular-item__copy strong,
.docs-popular-item__copy > span {
    display: block;
}

.docs-popular-item__copy small {
    margin-bottom: 5px;
    color: var(--docs-accent-dark);
    font-size: 11px;
    font-weight: 780;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.docs-popular-item__copy strong {
    font-size: 18px;
    font-weight: 790;
    line-height: 1.3;
}

.docs-popular-item__copy > span {
    margin-top: 4px;
    color: var(--docs-muted);
    font-size: 14px;
    line-height: 1.5;
}

.docs-popular-item__arrow {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--docs-line);
    border-radius: 50%;
    color: var(--docs-accent-dark);
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.docs-popular-item:hover .docs-popular-item__arrow {
    border-color: var(--docs-accent);
    background: var(--docs-soft-strong);
    transform: translateX(3px);
}

.docs-topic-grid {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
    min-width: 0;
}

.docs-topic {
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    border: 1px solid var(--docs-line);
    border-radius: 17px;
    background: rgba(253, 254, 253, 0.94);
    box-shadow: 0 12px 32px rgba(23, 71, 51, 0.06);
}

.docs-topic--wide {
    grid-column: 1 / -1;
}

.docs-topic__header {
    box-sizing: border-box;
    position: relative;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 15px;
    padding: 25px 25px 21px;
}

.docs-topic__header > div {
    min-width: 0;
}

.docs-topic__icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--docs-soft-strong);
    color: var(--docs-accent-dark);
}

.docs-topic__icon svg {
    width: 22px;
    height: 22px;
}

.docs-topic__header h3 {
    margin: 1px 0 7px;
    color: var(--docs-ink);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.027em;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.docs-topic__header p {
    max-width: 58ch;
    margin: 0;
    color: var(--docs-muted);
    font-size: 14px;
    line-height: 1.55;
}

.docs-topic__count {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 5px 8px;
    border: 1px solid var(--docs-line);
    border-radius: 999px;
    color: var(--docs-muted);
    background: var(--docs-bg);
    font-size: 10px;
    font-weight: 760;
    line-height: 1;
}

.docs-topic__articles {
    min-width: 0;
    border-top: 1px solid var(--docs-line);
    padding: 6px 13px 13px;
}

.docs-topic__articles > a,
.docs-topic__subgroup > a {
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
    min-height: 63px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px;
    border-radius: 9px;
    color: var(--docs-ink);
    text-decoration: none;
}

.docs-topic__articles > a:hover,
.docs-topic__subgroup > a:hover {
    background: var(--docs-soft);
}

.docs-topic__articles a > span {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.docs-topic__articles a strong,
.docs-topic__articles a small {
    display: block;
}

.docs-topic__articles a strong {
    font-size: 14px;
    font-weight: 760;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.docs-topic__articles a small {
    margin-top: 3px;
    overflow: hidden;
    color: var(--docs-muted);
    font-size: 12px;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.docs-topic__articles a svg {
    flex: 0 0 auto;
    color: var(--docs-accent-dark);
}

.docs-topic__subgroup {
    padding-top: 5px;
}

.docs-topic__subgroup > span {
    display: block;
    margin: 8px 12px 3px;
    color: var(--docs-accent-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.docs-topic--wide .docs-topic__articles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 14px;
}

.docs-article {
    width: min(100%, 760px);
    margin-inline: auto;
}

.docs-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 4px 0 32px;
    color: var(--docs-muted);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.4;
}

.docs-breadcrumbs a {
    color: var(--docs-accent-dark);
    text-decoration: none;
}

.docs-breadcrumbs a:hover {
    text-decoration: underline;
}

.docs-article__header {
    padding-bottom: 34px;
    border-bottom: 1px solid var(--docs-line-strong);
}

.docs-article__header .docs-kicker {
    max-width: 70ch;
    margin-bottom: 16px;
    color: var(--docs-accent-dark);
}

.docs-article__header h1 {
    max-width: 740px;
    margin: 0;
    color: var(--docs-ink);
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 830;
    letter-spacing: -0.049em;
    line-height: 1.04;
    text-wrap: balance;
}

.docs-article__header > p {
    max-width: 66ch;
    margin: 20px 0 0;
    color: var(--docs-muted);
    font-size: 18px;
    line-height: 1.63;
    text-wrap: pretty;
}

.docs-article__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    color: #61786d;
    font-size: 12px;
    font-weight: 670;
}

.docs-article__meta > span[aria-hidden="true"] {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #91a79c;
}

.docs-article__body {
    padding-top: 36px;
    color: #203a30;
    font-size: 17px;
    line-height: 1.78;
}

.docs-article__body > p,
.docs-article__body > ul,
.docs-article__body > ol,
.docs-article__body > aside,
.docs-article__body > figure,
.docs-article__body > div {
    max-width: 70ch;
}

.docs-article__body p {
    margin: 0 0 21px;
}

.docs-article__lead {
    color: var(--docs-ink);
    font-size: 20px;
    font-weight: 520;
    line-height: 1.66;
}

.docs-article__body h2 {
    margin: 58px 0 18px;
    scroll-margin-top: 164px;
    color: var(--docs-ink);
    font-size: 30px;
    font-weight: 810;
    letter-spacing: -0.032em;
    line-height: 1.18;
    text-wrap: balance;
}

.docs-list {
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}

.docs-list li {
    position: relative;
    margin: 10px 0;
    padding-left: 26px;
}

.docs-list li::before {
    content: "";
    position: absolute;
    top: 0.74em;
    left: 4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--docs-accent);
    box-shadow: 0 0 0 4px rgba(15, 143, 97, 0.1);
}

.docs-callout {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 13px;
    margin: 31px 0;
    padding: 19px 20px;
    border: 1px solid #bed9ca;
    border-radius: 14px;
    background: #edf7f1;
    color: #234d3b;
}

.docs-callout--warning {
    border-color: #e7cd9d;
    background: #fff9ee;
    color: #704f17;
}

.docs-callout--danger {
    border-color: #edc8c8;
    background: #fff4f4;
    color: #873d3d;
}

.docs-callout--info {
    border-color: #c7d8d0;
    background: #f0f5f2;
    color: #324e42;
}

.docs-callout__icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.docs-callout__icon svg {
    width: 22px;
    height: 22px;
}

.docs-callout strong {
    display: block;
    margin: 0 0 4px;
    color: inherit;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
}

.docs-callout p {
    margin: 0;
    color: inherit;
    font-size: 14px;
    line-height: 1.62;
}

.docs-language-notice {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 0 0 31px;
    padding: 15px 17px;
    border: 1px solid #d9c08c;
    border-radius: 13px;
    background: #fff9eb;
    color: #6f4f18;
}

.docs-language-notice svg {
    flex: 0 0 auto;
    margin-top: 3px;
}

.docs-language-notice p {
    margin: 0;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.55;
}

.docs-steps {
    margin: 27px 0 32px;
    padding: 0;
    list-style: none;
    counter-reset: docs-step;
}

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

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

.docs-steps__number {
    position: relative;
    z-index: 1;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a9c6b7;
    border-radius: 50%;
    background: var(--docs-paper);
    color: var(--docs-accent-dark);
    font-family: var(--ai2-mono, "SFMono-Regular", Consolas, monospace);
    font-size: 12px;
    font-weight: 800;
}

.docs-steps__number::before {
    content: counter(docs-step, decimal-leading-zero);
}

.docs-steps strong {
    display: block;
    padding-top: 3px;
    color: var(--docs-ink);
    font-size: 16px;
    font-weight: 790;
    line-height: 1.4;
}

.docs-steps p {
    margin: 3px 0 25px;
    color: var(--docs-muted);
    font-size: 15px;
    line-height: 1.58;
}

.docs-figure {
    margin: 34px 0 40px;
}

.docs-figure img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--docs-line);
    border-radius: 15px;
    background: var(--docs-soft);
    box-shadow: 0 18px 44px rgba(23, 71, 51, 0.09);
}

.docs-figure figcaption {
    margin-top: 10px;
    color: var(--docs-muted);
    font-size: 12px;
    line-height: 1.5;
}

/* Rich-text figures saved by the CMS do not necessarily carry docs-figure. */
.docs-article__body figure {
    width: 100%;
    max-width: 100%;
    margin: 34px 0 40px;
}

.docs-article__body img {
    box-sizing: border-box;
    display: block;
    max-width: 100%;
    height: auto;
}

.docs-article__body figure img {
    margin: 0 0 10px;
    border: 1px solid var(--docs-line);
    border-radius: 15px;
    background: var(--docs-soft);
    box-shadow: 0 18px 44px rgba(23, 71, 51, 0.09);
}

.docs-article__body figure figcaption {
    color: var(--docs-muted);
    font-size: 12px;
    line-height: 1.5;
}

.docs-article__body figure figcaption > img + br {
    display: none;
}

.docs-metric-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 29px 0 35px;
    overflow: hidden;
    border: 1px solid var(--docs-line);
    border-radius: 14px;
    background: var(--docs-paper);
}

.docs-metric-row > div {
    min-height: 102px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 18px;
}

.docs-metric-row > div:not(:last-child) {
    border-right: 1px solid var(--docs-line);
}

.docs-metric-row strong {
    color: var(--docs-accent-dark);
    font-family: var(--ai2-mono, "SFMono-Regular", Consolas, monospace);
    font-size: 18px;
    font-weight: 800;
}

.docs-metric-row span {
    color: var(--docs-muted);
    font-size: 12px;
    line-height: 1.45;
}

.docs-article-pager {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 62px;
    padding-top: 24px;
    border-top: 1px solid var(--docs-line-strong);
}

.docs-article-pager a {
    min-height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 17px 19px;
    border: 1px solid var(--docs-line);
    border-radius: 13px;
    background: var(--docs-paper);
    color: var(--docs-ink);
    text-decoration: none;
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.docs-article-pager a:hover {
    border-color: #a7c4b5;
    background: var(--docs-soft);
    transform: translateY(-2px);
}

.docs-article-pager__next {
    grid-column: 2;
    text-align: right;
}

.docs-article-pager small {
    margin-bottom: 5px;
    color: var(--docs-accent-dark);
    font-size: 11px;
    font-weight: 790;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.docs-article-pager strong {
    font-size: 14px;
    font-weight: 770;
    line-height: 1.4;
}

.docs-toc {
    position: sticky;
    top: 164px;
    max-height: calc(100dvh - 190px);
    overflow-y: auto;
    padding: 4px 0 4px 17px;
    border-left: 1px solid var(--docs-line);
}

.docs-toc > strong {
    display: block;
    margin-bottom: 12px;
    color: var(--docs-ink);
    font-size: 11px;
    font-weight: 820;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.docs-toc a {
    display: block;
    margin: 8px 0;
    color: var(--docs-muted);
    font-size: 12px;
    font-weight: 620;
    line-height: 1.45;
    text-decoration: none;
}

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

.docs-main--not-found {
    min-height: 560px;
    display: flex;
    align-items: center;
}

.docs-not-found {
    width: min(100%, 620px);
    padding: 54px;
    border: 1px solid var(--docs-line);
    border-radius: 18px;
    background: var(--docs-paper);
    box-shadow: 0 20px 50px rgba(23, 71, 51, 0.09);
}

.docs-not-found__code {
    display: block;
    margin-bottom: 20px;
    color: var(--docs-accent);
    font-family: var(--ai2-mono, "SFMono-Regular", Consolas, monospace);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.docs-not-found h1 {
    margin: 0;
    font-size: clamp(35px, 5vw, 50px);
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.docs-not-found p {
    max-width: 52ch;
    margin: 18px 0 27px;
    color: var(--docs-muted);
    line-height: 1.65;
}

.docs-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 20px;
    border-radius: 11px;
    background: var(--docs-accent-dark);
    color: #f5fbf7;
    font-size: 14px;
    font-weight: 780;
    text-decoration: none;
}

.docs-button:hover {
    background: #065c3e;
}

@media (max-width: 1180px) {
    .docs-layout--article {
        grid-template-columns: 230px minmax(0, 1fr);
        gap: 34px;
    }

    .docs-toc {
        display: none;
    }
}

@media (max-width: 960px) {
    .docs-toolbar__menu {
        display: inline-flex;
    }

    .docs-toolbar__brand {
        flex: 0 0 auto;
    }

    .docs-toolbar__brand small {
        display: none;
    }

    .docs-layout,
    .docs-layout--article {
        display: block;
    }

    .docs-sidebar {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 101;
        width: min(370px, calc(100% - 34px));
        max-height: none;
        overflow-y: auto;
        padding: 0;
        background: var(--docs-paper);
        box-shadow: 24px 0 64px rgba(16, 37, 29, 0.2);
        transform: translateX(-105%);
        transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
    }

    .docs-sidebar__mobile-head {
        position: sticky;
        top: 0;
        z-index: 2;
        min-height: 68px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 0 20px;
        border-bottom: 1px solid var(--docs-line);
        background: var(--docs-paper);
        color: var(--docs-ink);
    }

    .docs-sidebar__mobile-head strong {
        font-size: 16px;
    }

    .docs-sidebar__mobile-head button {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: 0;
        border-radius: 10px;
        background: var(--docs-soft);
        color: var(--docs-ink);
        cursor: pointer;
    }

    .docs-sidebar__inner {
        padding: 18px 17px 40px;
    }

    .docs-sidebar-scrim {
        position: fixed;
        inset: 0;
        z-index: 100;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        border: 0;
        background: rgba(16, 37, 29, 0.43);
        opacity: 0;
        pointer-events: none;
        transition: opacity 200ms ease;
    }

    body.docs-sidebar-open {
        overflow: hidden;
    }

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

    body.docs-sidebar-open .docs-sidebar-scrim {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    .docs-article {
        width: min(100%, 780px);
    }
}

@media (max-width: 767px) {
    .docs-toolbar {
        top: 68px;
    }

    .docs-toolbar__inner {
        gap: 10px;
    }

    .docs-toolbar__menu {
        flex: 0 0 auto;
        padding: 0 11px;
    }

    .docs-toolbar__menu span {
        display: none;
    }

    .docs-toolbar__brand {
        display: none;
    }

    .docs-search--compact {
        min-width: 0;
    }

    .docs-search input[type="search"] {
        font-size: 16px;
    }

    .docs-layout,
    .docs-layout--article {
        padding-top: 20px;
        padding-bottom: 54px;
    }

    .docs-home-hero {
        min-height: 390px;
        padding: 42px 25px 39px;
        border-radius: 16px;
    }

    .docs-home-hero::after {
        right: -178px;
        bottom: -218px;
    }

    .docs-home-hero h1 {
        font-size: clamp(36px, 10.5vw, 48px);
    }

    .docs-home-hero__content > p {
        font-size: 16px;
    }

    .docs-search--hero {
        margin-top: 25px;
    }

    .docs-search--hero input[type="search"] {
        min-height: 54px;
    }

    .docs-home-hero__index {
        display: none;
    }

    .docs-home-section {
        padding-top: 50px;
    }

    .docs-section-heading--split {
        display: block;
    }

    .docs-section-heading > p {
        margin-top: 12px;
    }

    .docs-popular-item {
        grid-template-columns: 30px minmax(0, 1fr) 34px;
        gap: 11px;
        padding-right: 4px;
    }

    .docs-popular-item:hover {
        padding-left: 5px;
    }

    .docs-popular-item__copy > span {
        display: none;
    }

    .docs-popular-item__copy strong {
        font-size: 16px;
    }

    .docs-popular-item__arrow {
        width: 32px;
        height: 32px;
    }

    .docs-topic-grid,
    .docs-topic--wide .docs-topic__articles {
        grid-template-columns: 1fr;
    }

    .docs-topic--wide {
        grid-column: auto;
    }

    .docs-topic__header {
        grid-template-columns: 40px minmax(0, 1fr);
        padding: 22px 19px 19px;
    }

    .docs-topic__icon {
        width: 40px;
        height: 40px;
    }

    .docs-topic__count {
        position: static;
        grid-column: 2;
        justify-self: start;
        margin-top: -2px;
    }

    .docs-topic__articles a small {
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .docs-breadcrumbs {
        margin: 1px 0 24px;
    }

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

    .docs-article__header h1 {
        font-size: clamp(35px, 10vw, 45px);
    }

    .docs-article__header > p {
        font-size: 17px;
    }

    .docs-article__body {
        padding-top: 30px;
        font-size: 16px;
        line-height: 1.73;
    }

    .docs-article__lead {
        font-size: 18px;
    }

    .docs-article__body h2 {
        margin-top: 46px;
        scroll-margin-top: 148px;
        font-size: 27px;
    }

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

    .docs-metric-row > div {
        min-height: 84px;
    }

    .docs-metric-row > div:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid var(--docs-line);
    }

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

    .docs-article-pager__next {
        grid-column: auto;
    }

    .docs-not-found {
        padding: 37px 24px;
    }
}

@media (max-width: 420px) {
    .docs-toolbar__inner {
        width: min(100% - 20px, 690px);
    }

    .docs-search--compact input[type="search"] {
        padding-right: 13px;
    }

    .docs-home-hero {
        padding-inline: 22px;
    }

    .docs-home-hero .docs-kicker {
        margin-bottom: 15px;
    }

    .docs-home-hero h1 {
        font-size: 36px;
    }

    .docs-section-heading > div {
        gap: 9px;
    }

    .docs-section-heading h2 {
        font-size: 28px;
    }

    .docs-article__meta {
        flex-wrap: wrap;
    }

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

@media (prefers-reduced-motion: reduce) {
    .docs-app *,
    .docs-app *::before,
    .docs-app *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-reduced-transparency: reduce) {
    .docs-toolbar {
        background: var(--docs-bg);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* Documentation layout v2: ELIXOAI-specific navigation and a wider reading area. */
.docs-mobile-entry {
    display: none;
}

.docs-layout,
.docs-layout--article {
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 42px;
    padding-top: 32px;
}

.docs-sidebar {
    top: 96px;
    max-height: calc(100dvh - 116px);
    padding: 20px;
    border: 1px solid #c9ddd2;
    border-radius: 18px;
    background: #eaf4ee;
    box-shadow: 0 16px 38px rgba(23, 71, 51, 0.08);
}

.docs-sidebar__inner {
    padding-bottom: 2px;
}

.docs-sidebar__masthead {
    margin-bottom: 19px;
    padding: 3px 2px 19px;
    border-bottom: 1px solid #c5d9ce;
}

.docs-sidebar__title {
    display: inline-block;
    margin-bottom: 17px;
    color: var(--docs-ink);
    font-size: 25px;
    font-weight: 830;
    letter-spacing: -0.038em;
    line-height: 1.12;
    text-decoration: none;
}

.docs-sidebar__title:hover {
    color: var(--docs-accent-dark);
}

.docs-search--sidebar input[type="search"] {
    min-height: 49px;
    padding-right: 14px;
    border-color: #b5cdbf;
    background: #f9fcfa;
    font-size: 15px;
}

.docs-search--sidebar .docs-search__results {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    max-height: 330px;
    margin-top: 8px;
    box-shadow: 0 16px 34px rgba(23, 71, 51, 0.13);
}

.docs-sidebar__home {
    min-height: 48px;
    margin: 0 0 12px;
    padding: 0 13px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: #3e5b4f;
    font-size: 15px;
    font-weight: 780;
}

.docs-sidebar__home:hover {
    border-color: #c2d7cc;
    background: #f7fbf8;
    color: var(--docs-ink);
}

.docs-sidebar__home.is-active {
    border-color: #3e8b6e;
    background: #3e8b6e;
    color: #f3fbf6;
}

.docs-sidebar__tree {
    padding-top: 0;
    border-top: 0;
    counter-reset: docs-section;
}

.docs-nav-group--depth-0 {
    margin: 10px 0;
    overflow: hidden;
    border: 1px solid #cfdfd6;
    border-radius: 14px;
    background: rgba(253, 254, 253, 0.82);
    counter-increment: docs-section;
}

.docs-nav-group--depth-0 > summary {
    min-height: 55px;
    padding: 10px 11px;
    border-radius: 0;
    color: var(--docs-ink);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.docs-nav-group--depth-0 > summary::before {
    content: "0" counter(docs-section);
    width: 26px;
    flex: 0 0 26px;
    color: var(--docs-accent-dark);
    font-family: var(--ai2-mono, "SFMono-Regular", Consolas, monospace);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.docs-nav-group--depth-0 > summary:hover {
    background: #f4f9f6;
}

.docs-nav-group__chevron {
    position: relative;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    margin: 0 0 0 auto;
    border: 1px solid #bfd3c8;
    border-radius: 8px;
    background: #eef6f1;
    transform: none;
}

.docs-nav-group__chevron::before,
.docs-nav-group__chevron::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 1.5px;
    border-radius: 2px;
    background: #557167;
    transform: translate(-50%, -50%);
    transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.docs-nav-group__chevron::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.docs-nav-group[open] > summary .docs-nav-group__chevron {
    transform: none;
}

.docs-nav-group[open] > summary .docs-nav-group__chevron::after {
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.docs-nav-group__items {
    margin: 0;
    padding: 1px 10px 11px 42px;
    border-left: 0;
}

.docs-nav-group__items > a {
    margin: 3px 0;
    padding: 9px 11px;
    border-radius: 9px;
    color: #496358;
    font-size: 14.5px;
    font-weight: 650;
    line-height: 1.42;
}

.docs-nav-group__items > a:hover {
    background: #e6f1eb;
    color: var(--docs-ink);
}

.docs-nav-group__items > a[aria-current="page"] {
    background: #3e8b6e;
    color: #f3fbf6;
    font-weight: 760;
}

.docs-nav-group--depth-1 {
    margin: 7px 0 3px;
}

.docs-nav-group--depth-1 > summary {
    min-height: 41px;
    padding: 8px 7px 8px 10px;
    border-radius: 9px;
    color: #476157;
    font-size: 13px;
    font-weight: 810;
    letter-spacing: 0.055em;
}

.docs-nav-group--depth-1 > summary:hover {
    background: #eef6f1;
}

.docs-nav-group--depth-1 .docs-nav-group__chevron {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    border-radius: 7px;
}

.docs-nav-group--depth-1 > .docs-nav-group__items {
    margin: 0;
    padding: 2px 0 3px 12px;
}

.docs-main {
    width: 100%;
    min-width: 0;
}

.docs-article {
    width: 100%;
    max-width: 900px;
    margin: 0;
}

.docs-breadcrumbs {
    margin-top: 7px;
    margin-bottom: 22px;
}

.docs-article__header {
    padding: clamp(30px, 4vw, 42px);
    border: 1px solid #cfdfd6;
    border-radius: 18px;
    background: rgba(253, 254, 253, 0.9);
    box-shadow: 0 16px 38px rgba(23, 71, 51, 0.065);
}

.docs-article__header h1 {
    max-width: 830px;
}

.docs-article__header > p {
    max-width: 72ch;
}

.docs-article__body {
    padding: 42px clamp(4px, 1vw, 12px) 0;
}

.docs-article__body > p,
.docs-article__body > ul,
.docs-article__body > ol,
.docs-article__body > aside,
.docs-article__body > figure,
.docs-article__body > div {
    max-width: 75ch;
}

.docs-home-hero {
    min-height: 318px;
}

@media (max-width: 1180px) and (min-width: 961px) {
    .docs-layout,
    .docs-layout--article {
        grid-template-columns: 290px minmax(0, 1fr);
        gap: 30px;
    }

    .docs-sidebar {
        padding: 16px;
    }

    .docs-sidebar__title {
        font-size: 23px;
    }

    .docs-nav-group__items > a {
        font-size: 14px;
    }
}

@media (max-width: 960px) {
    .docs-mobile-entry {
        display: block;
        padding-top: 17px;
    }

    .docs-mobile-entry__button {
        min-height: 46px;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 0 15px;
        border: 1px solid #bdd2c7;
        border-radius: 12px;
        background: #f9fcfa;
        color: var(--docs-ink);
        font-size: 14px;
        font-weight: 780;
        cursor: pointer;
        box-shadow: 0 8px 20px rgba(23, 71, 51, 0.06);
    }

    .docs-layout,
    .docs-layout--article {
        padding-top: 17px;
    }

    .docs-sidebar {
        top: 0;
        bottom: auto;
        display: flex;
        flex-direction: column;
        width: min(420px, calc(100% - 24px));
        height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        overflow: hidden;
        padding: 0;
        border: 0;
        border-radius: 0 20px 20px 0;
        background: #eaf4ee;
        overscroll-behavior: contain;
    }

    .docs-sidebar__mobile-head {
        flex: 0 0 auto;
        background: #eaf4ee;
    }

    .docs-sidebar__inner {
        flex: 1 1 auto;
        min-height: 0;
        overflow-x: hidden;
        overflow-y: auto;
        padding: 21px 18px 42px;
        overscroll-behavior: contain;
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }

    .docs-sidebar__masthead {
        padding-inline: 3px;
    }

    .docs-article {
        width: min(100%, 830px);
        max-width: none;
        margin-inline: auto;
    }
}

@media (max-width: 767px) {
    .docs-mobile-entry {
        padding-top: 13px;
    }

    .docs-mobile-entry__button {
        width: 100%;
        justify-content: center;
    }

    .docs-layout,
    .docs-layout--article {
        width: min(100% - 32px, 690px);
        min-width: 0;
        padding-top: 13px;
    }

    .docs-main,
    .docs-home-section,
    .docs-topic-grid,
    .docs-topic {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .docs-home-hero {
        min-height: 330px;
    }

    .docs-article__header {
        padding: 27px 22px;
        border-radius: 16px;
    }

    .docs-article__body {
        padding: 32px 3px 0;
    }
}

@media (max-width: 420px) {
    .docs-sidebar__title {
        font-size: 23px;
    }

    .docs-nav-group__items {
        padding-left: 34px;
    }

    .docs-nav-group--depth-1 > .docs-nav-group__items {
        padding-left: 8px;
    }
}
