:root {
    --docs-brand: #0f766e;
    --docs-brand-dark: #115e59;
    --docs-brand-soft: #f0fdfa;
    --docs-ink: #0f172a;
    --docs-copy: #475569;
    --docs-muted: #64748b;
    --docs-line: #e2e8f0;
    --docs-surface: #f8fafc;
    --docs-warning: #b45309;
}

html {
    scroll-behavior: smooth;
}

.docs-page {
    background: #fff;
    color: var(--docs-ink);
    font-family: "Noto Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

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

.docs-page a {
    color: var(--docs-brand);
}

.docs-page a:hover {
    color: var(--docs-brand-dark);
}

.docs-page code,
.docs-page kbd {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.docs-shell {
    width: min(100% - 40px, 1408px);
    margin-inline: auto;
}

.docs-hero {
    position: relative;
    overflow: visible;
    border-bottom: 1px solid #ccfbf1;
    background:
        radial-gradient(circle at 15% 15%, rgb(20 184 166 / 0.14), transparent 30rem),
        linear-gradient(180deg, #f0fdfa 0%, #fff 100%);
}

.docs-hero::after {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgb(15 118 110 / 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgb(15 118 110 / 0.035) 1px, transparent 1px);
    background-size: 32px 32px;
    content: "";
    mask-image: linear-gradient(to bottom, #000, transparent 85%);
    pointer-events: none;
}

.docs-hero__copy {
    position: relative;
    z-index: 1;
    max-width: 940px;
    margin-inline: auto;
    padding: 64px 0 72px;
    text-align: center;
}

.docs-eyebrow {
    margin: 0 0 8px;
    color: var(--docs-brand);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.docs-hero h1 {
    max-width: 850px;
    margin: 0 auto;
    color: var(--docs-ink);
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.06;
}

.docs-hero__lede {
    max-width: 760px;
    margin: 20px auto 0;
    color: var(--docs-copy);
    font-size: 19px;
    line-height: 1.65;
}

.docs-hero--legacy .docs-hero__copy {
    padding: 46px 0 50px;
}

.docs-hero--legacy h1 {
    font-size: clamp(38px, 5vw, 56px);
}

.docs-search {
    position: relative;
    max-width: 760px;
    margin: 32px auto 0;
    text-align: left;
}

.docs-search > label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.docs-search__control {
    display: flex;
    align-items: center;
    min-height: 66px;
    border: 1px solid #99f6e4;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 45px rgb(15 23 42 / 0.11), 0 2px 5px rgb(15 23 42 / 0.05);
}

.docs-search__control:focus-within {
    border-color: var(--docs-brand);
    box-shadow: 0 0 0 4px rgb(20 184 166 / 0.12), 0 18px 45px rgb(15 23 42 / 0.11);
}

.docs-search__icon {
    padding-left: 21px;
    color: var(--docs-brand);
    font-size: 30px;
    line-height: 1;
}

.docs-search input {
    flex: 1;
    min-width: 0;
    height: 64px;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 16px;
    color: var(--docs-ink);
    font-size: 17px;
}

.docs-search input::placeholder {
    color: #94a3b8;
}

.docs-search__shortcut {
    margin-right: 18px;
    border: 1px solid var(--docs-line);
    border-bottom-width: 2px;
    border-radius: 6px;
    background: var(--docs-surface);
    padding: 3px 8px;
    color: var(--docs-muted);
    font-size: 13px;
}

.docs-search__clear {
    margin-right: 12px;
    border: 0;
    border-radius: 8px;
    background: #f1f5f9;
    padding: 8px 11px;
    color: #475569;
    font-size: 13px;
    font-weight: 800;
}

.docs-search__clear:hover {
    background: #e2e8f0;
}

#docs-search-help {
    margin: 10px 4px 0;
    color: var(--docs-muted);
    font-size: 13px;
    text-align: center;
}

.docs-search-results {
    position: absolute;
    top: 76px;
    left: 0;
    z-index: 40;
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--docs-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 24px 70px rgb(15 23 42 / 0.18);
}

.docs-search-results__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--docs-line);
    padding: 13px 18px;
    color: var(--docs-muted);
    font-size: 12px;
}

.docs-search-results__header strong {
    color: var(--docs-ink);
    font-size: 13px;
}

#docs-search-list {
    max-height: 390px;
    overflow-y: auto;
    padding: 8px;
}

.docs-search-result {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    border-radius: 10px;
    padding: 11px 12px;
    color: var(--docs-ink) !important;
    text-decoration: none;
}

.docs-search-result:hover,
.docs-search-result.is-active {
    background: var(--docs-brand-soft);
    text-decoration: none;
}

.docs-search-result__mark {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 9px;
    background: #ccfbf1;
    color: var(--docs-brand-dark);
    font-size: 12px;
    font-weight: 900;
}

.docs-search-result strong {
    display: block;
    color: var(--docs-ink);
    font-size: 14px;
}

.docs-search-result small {
    display: block;
    overflow: hidden;
    margin-top: 2px;
    color: var(--docs-muted);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.docs-search-result b {
    color: var(--docs-brand);
}

.docs-search-results__empty {
    margin: 0;
    padding: 24px;
    color: var(--docs-muted);
    font-size: 14px;
    text-align: center;
}

.docs-hero__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    margin-top: 25px;
    color: var(--docs-muted);
    font-size: 13px;
    font-weight: 700;
}

.docs-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.docs-hero__meta span::before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #2dd4bf;
    content: "";
}

.docs-guide-bar {
    border-bottom: 1px solid var(--docs-line);
    background: #fff;
}

.docs-guide-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 58px;
}

.docs-guide-bar__trail,
.docs-guide-bar__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--docs-muted);
    font-size: 13px;
}

.docs-guide-bar__trail a,
.docs-guide-bar__links a {
    font-weight: 800;
    text-decoration: none;
}

.docs-guide-bar__trail span[aria-hidden="true"] {
    color: #cbd5e1;
}

.docs-guide-bar__current {
    color: var(--docs-ink);
    font-weight: 800;
}

.docs-guide-bar__links a {
    border: 1px solid var(--docs-line);
    border-radius: 999px;
    padding: 6px 10px;
}

.docs-guide-bar__links a:hover {
    border-color: #99f6e4;
    background: var(--docs-brand-soft);
    text-decoration: none;
}

.docs-start {
    border-bottom: 1px solid var(--docs-line);
    padding: 64px 0 72px;
    background: #fff;
}

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

.docs-section-heading--center {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
}

.docs-section-heading h2,
.docs-product-heading h2,
.docs-engineering-note h2 {
    margin: 0;
    color: var(--docs-ink);
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.15;
}

.docs-section-heading > p:last-child,
.docs-product-heading p,
.docs-engineering-note p {
    max-width: 780px;
    margin: 12px 0 0;
    color: var(--docs-copy);
    font-size: 17px;
}

.docs-section-heading--center > p:last-child {
    margin-inline: auto;
}

.docs-tool-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.docs-tool-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    min-height: 140px;
    border: 1px solid var(--docs-line);
    border-radius: 16px;
    background: #fff;
    padding: 20px;
    color: var(--docs-ink) !important;
    box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
    text-decoration: none;
    transition: .18s ease;
}

.docs-tool-card:hover {
    border-color: #99f6e4;
    box-shadow: 0 12px 32px rgb(15 118 110 / 0.1);
    text-decoration: none;
    transform: translateY(-2px);
}

.docs-tool-card--primary {
    border-color: #99f6e4;
    background: linear-gradient(135deg, #f0fdfa, #fff);
}

.docs-tool-card__mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 12px;
    background: #ccfbf1;
    color: var(--docs-brand-dark);
    font-size: 14px;
    font-weight: 900;
}

.docs-tool-card strong,
.docs-tool-card small {
    display: block;
}

.docs-tool-card strong {
    color: var(--docs-ink);
    font-size: 16px;
}

.docs-tool-card small {
    margin-top: 4px;
    color: var(--docs-muted);
    font-size: 13px;
    line-height: 1.55;
}

.docs-tool-card > b {
    color: var(--docs-brand);
    font-size: 20px;
}

.docs-directory-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.docs-directory-card {
    border: 1px solid var(--docs-line);
    border-radius: 16px;
    background: #fff;
    padding: 22px;
}

.docs-directory-card h3 {
    margin: 0;
    color: var(--docs-ink);
    font-size: 20px;
}

.docs-directory-card > p {
    margin: 6px 0 16px;
    color: var(--docs-copy);
    font-size: 14px;
}

.docs-directory-card nav {
    display: grid;
    gap: 7px;
}

.docs-directory-card nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-radius: 9px;
    background: var(--docs-surface);
    padding: 10px 12px;
    color: var(--docs-ink);
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.docs-directory-card nav a::after {
    color: var(--docs-brand);
    content: "→";
}

.docs-directory-card nav a:hover {
    background: var(--docs-brand-soft);
    color: var(--docs-brand-dark);
    text-decoration: none;
}

.docs-layout {
    display: grid;
    grid-template-columns: 248px minmax(0, 1fr);
    gap: 64px;
    align-items: start;
    padding-top: 56px;
    padding-bottom: 96px;
}

.docs-sidebar {
    align-self: stretch;
}

.docs-sidebar__inner {
    position: sticky;
    top: 94px;
    max-height: calc(100vh - 116px);
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;
}

.docs-sidebar__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--docs-line);
    padding: 0 10px 13px;
}

.docs-sidebar__top strong {
    color: var(--docs-ink);
    font-size: 14px;
}

.docs-sidebar__top a {
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.docs-sidebar nav {
    padding: 12px 0;
}

.docs-sidebar nav > a,
.docs-sidebar details a {
    display: block;
    border-left: 2px solid transparent;
    border-radius: 0 7px 7px 0;
    padding: 7px 10px 7px 14px;
    color: #475569;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.4;
    text-decoration: none;
}

.docs-sidebar nav > a:hover,
.docs-sidebar details a:hover,
.docs-sidebar a.is-active {
    border-left-color: var(--docs-brand);
    background: var(--docs-brand-soft);
    color: var(--docs-brand-dark);
}

.docs-sidebar details {
    margin-top: 8px;
}

.docs-sidebar summary {
    cursor: pointer;
    list-style: none;
    padding: 9px 10px;
    color: var(--docs-ink);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.docs-sidebar summary::-webkit-details-marker {
    display: none;
}

.docs-sidebar summary::after {
    float: right;
    color: #94a3b8;
    content: "+";
}

.docs-sidebar details[open] summary::after {
    content: "−";
}

.docs-sidebar__help {
    margin-top: 12px;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    background: #f0f9ff;
    padding: 15px;
}

.docs-sidebar__help strong {
    color: #0c4a6e;
    font-size: 13px;
}

.docs-sidebar__help p {
    margin: 5px 0 10px;
    color: #475569;
    font-size: 12px;
    line-height: 1.55;
}

.docs-sidebar__help a {
    color: #0369a1;
    font-size: 12px;
    font-weight: 800;
}

.docs-content {
    min-width: 0;
    max-width: 1040px;
}

.docs-article-section {
    scroll-margin-top: 100px;
    border-bottom: 1px solid var(--docs-line);
    padding: 32px 0 64px;
}

.docs-article-section:first-child {
    padding-top: 0;
}

.docs-article-section:last-child {
    border-bottom: 0;
}

.docs-legacy-content {
    max-width: 980px;
}

.docs-legacy-content .docs-article-section {
    padding-bottom: 24px;
}

.docs-legacy-content h2 {
    margin: 0 0 24px;
    color: var(--docs-ink);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.2;
}

.docs-legacy-content h3 {
    margin: 42px 0 14px;
    color: var(--docs-ink);
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -.015em;
    line-height: 1.3;
}

.docs-legacy-content p {
    margin: 0 0 18px;
    color: var(--docs-copy);
    font-size: 16px;
    line-height: 1.8;
}

.docs-legacy-content .indent {
    text-indent: 0;
}

.docs-legacy-content .docs-legacy-caption {
    margin: -8px auto 26px;
    color: var(--docs-muted);
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
}

.docs-legacy-content .docs-legacy-caption b {
    color: var(--docs-ink);
}

.docs-legacy-media {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 24px auto 18px;
    border: 1px solid var(--docs-line);
    border-radius: 14px;
    background: #fff;
    padding: 12px;
    box-shadow: 0 10px 28px rgb(15 23 42 / 0.06);
}

.docs-legacy-media--compact {
    max-width: min(100%, 680px);
}

.docs-legacy-media--narrow {
    max-width: min(100%, 480px);
}

.docs-legacy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 26px 0;
}

.docs-legacy-grid > div {
    min-width: 0;
    border: 1px solid var(--docs-line);
    border-radius: 14px;
    background: var(--docs-surface);
    padding: 18px;
}

.docs-legacy-grid .docs-legacy-media {
    max-height: none;
    margin: 0 auto 16px;
    border: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.docs-legacy-grid .docs-legacy-caption {
    margin: 0;
}

.docs-legacy-list {
    overflow: hidden;
    margin: 18px 0 26px;
    border: 1px solid var(--docs-line);
    border-radius: 12px;
    background: #fff;
    padding: 0;
    list-style: none;
}

.docs-legacy-list li {
    padding: 13px 16px;
    color: var(--docs-copy);
    font-size: 14px;
    line-height: 1.65;
}

.docs-legacy-list li + li {
    border-top: 1px solid var(--docs-line);
}

.docs-legacy-list a {
    font-weight: 650;
    overflow-wrap: anywhere;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.docs-legacy-equation {
    margin: 24px auto !important;
    border: 1px solid #99f6e4;
    border-radius: 12px;
    background: var(--docs-brand-soft);
    padding: 14px 18px;
    color: var(--docs-brand-dark) !important;
    font-size: 18px !important;
    font-weight: 800;
    text-align: center;
}

.docs-legacy-video {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 22px;
    border: 1px solid var(--docs-line);
    border-radius: 16px;
    background: #0f172a;
    box-shadow: 0 16px 38px rgb(15 23 42 / 0.15);
    aspect-ratio: 16 / 9;
}

.docs-legacy-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.docs-process {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

.docs-process li {
    position: relative;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
    min-height: 108px;
}

.docs-process li:not(:last-child)::before {
    position: absolute;
    top: 42px;
    bottom: 0;
    left: 21px;
    width: 2px;
    background: #ccfbf1;
    content: "";
}

.docs-process li > span {
    position: relative;
    z-index: 1;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid #99f6e4;
    border-radius: 50%;
    background: var(--docs-brand-soft);
    color: var(--docs-brand-dark);
    font-size: 14px;
    font-weight: 900;
}

.docs-process li > div {
    padding-bottom: 30px;
}

.docs-process strong {
    display: block;
    margin-top: 4px;
    color: var(--docs-ink);
    font-size: 17px;
}

.docs-process p {
    margin: 5px 0 0;
    color: var(--docs-copy);
    font-size: 15px;
}

.docs-process--compact li {
    min-height: 92px;
}

.docs-callout {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    margin-top: 24px;
    border: 1px solid #bae6fd;
    border-radius: 14px;
    background: #f0f9ff;
    padding: 18px;
}

.docs-callout > span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 10px;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 13px;
    font-weight: 900;
}

.docs-callout strong {
    color: #0c4a6e;
    font-size: 15px;
}

.docs-callout p {
    margin: 3px 0 0;
    color: #334155;
    font-size: 14px;
}

.docs-callout--important {
    border-color: #99f6e4;
    background: var(--docs-brand-soft);
}

.docs-callout--important > span {
    background: #ccfbf1;
    color: var(--docs-brand-dark);
}

.docs-callout--important strong {
    color: var(--docs-brand-dark);
}

.docs-callout--warning {
    border-color: #fde68a;
    background: #fffbeb;
}

.docs-callout--warning > span {
    background: #fef3c7;
    color: var(--docs-warning);
}

.docs-callout--warning strong {
    color: #92400e;
}

.docs-product-section {
    padding-top: 64px;
}

.docs-product-heading {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    margin-bottom: 28px;
}

.docs-product-heading--compact {
    margin-bottom: 20px;
}

.docs-product-heading__mark {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid #99f6e4;
    border-radius: 16px;
    background: var(--docs-brand-soft);
    color: var(--docs-brand-dark);
    font-size: 17px;
    font-weight: 900;
}

.docs-product-heading .docs-eyebrow {
    margin-bottom: 4px;
}

.docs-product-heading p {
    margin-top: 6px;
    font-size: 15px;
}

.docs-open-app {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--docs-brand);
    padding: 11px 16px;
    color: #fff !important;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.docs-open-app:hover {
    background: var(--docs-brand-dark);
    color: #fff !important;
    text-decoration: none;
}

.docs-capability-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--docs-line);
    border-radius: 14px;
    background: var(--docs-line);
    gap: 1px;
}

.docs-capability-grid > div {
    background: var(--docs-surface);
    padding: 18px;
}

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

.docs-capability-grid strong {
    color: var(--docs-ink);
    font-size: 14px;
}

.docs-capability-grid span {
    margin-top: 4px;
    color: var(--docs-copy);
    font-size: 13px;
}

.docs-figure {
    min-width: 0;
    overflow: hidden;
    margin: 22px 0 0;
    border: 1px solid var(--docs-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgb(15 23 42 / 0.06);
}

.docs-figure__media {
    display: block;
    overflow: hidden;
    border-bottom: 1px solid var(--docs-line);
    background: #f8fafc;
}

.docs-figure__media--contained {
    padding: 12px;
}

.docs-figure img {
    display: block;
    width: 100%;
    height: auto;
}

.docs-figure__media:hover img {
    filter: saturate(1.03) contrast(1.01);
}

.docs-figure__media:focus-visible {
    outline: 3px solid var(--docs-brand);
    outline-offset: -3px;
}

.docs-figure figcaption {
    display: grid;
    gap: 4px;
    padding: 13px 15px 15px;
}

.docs-figure figcaption strong {
    color: var(--docs-ink);
    font-size: 13px;
}

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

.docs-figure-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

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

.docs-figure-grid .docs-figure,
.docs-figure-stack .docs-figure {
    margin-top: 0;
}

.docs-figure-stack {
    display: grid;
    gap: 14px;
    margin-top: 14px;
}

.docs-figure--portrait {
    width: min(100%, 560px);
    margin-inline: auto;
    margin-top: 22px;
}

.docs-screenshot-note {
    margin: 12px 0 0;
    color: var(--docs-muted);
    font-size: 11px;
    line-height: 1.6;
}

.docs-screenshot-note strong {
    color: var(--docs-copy);
}

.docs-step-list {
    display: grid;
    gap: 14px;
}

.docs-step-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
    scroll-margin-top: 100px;
    border: 1px solid var(--docs-line);
    border-radius: 14px;
    background: #fff;
    padding: 22px;
    box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
}

.docs-step-card__number {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: #ccfbf1;
    color: var(--docs-brand-dark);
    font-size: 15px;
    font-weight: 900;
}

.docs-step-card h3,
.docs-feature-stack h3,
.docs-panel h3,
.docs-result-grid h3,
.docs-do-dont h3 {
    margin: 0;
    color: var(--docs-ink);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.3;
}

.docs-step-card p,
.docs-feature-stack p,
.docs-panel p,
.docs-do-dont p {
    margin: 8px 0 0;
    color: var(--docs-copy);
    font-size: 14px;
}

.docs-step-card ul,
.docs-feature-stack ul,
.docs-do-dont ul,
.docs-panel ol,
.docs-numbered {
    margin: 12px 0 0;
    padding-left: 20px;
    color: var(--docs-copy);
    font-size: 14px;
}

.docs-step-card li + li,
.docs-feature-stack li + li,
.docs-do-dont li + li,
.docs-panel li + li,
.docs-numbered li + li {
    margin-top: 7px;
}

.docs-tip {
    border-left: 3px solid #2dd4bf;
    border-radius: 0 8px 8px 0;
    background: var(--docs-brand-soft);
    padding: 10px 12px;
}

.docs-step-card code,
.docs-example-strip code {
    border-radius: 5px;
    background: #f1f5f9;
    padding: 2px 6px;
    color: var(--docs-ink);
    font-size: .92em;
}

.docs-definition-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.docs-definition-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.docs-definition-grid > div {
    border: 1px solid var(--docs-line);
    border-radius: 10px;
    background: var(--docs-surface);
    padding: 12px;
}

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

.docs-definition-grid strong {
    color: var(--docs-ink);
    font-size: 13px;
}

.docs-definition-grid span {
    margin-top: 3px;
    color: var(--docs-copy);
    font-size: 12px;
    line-height: 1.5;
}

.docs-property-table-wrap {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    margin-top: 16px;
    border: 1px solid var(--docs-line);
    border-radius: 12px;
}

.docs-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: #fff;
    color: var(--docs-copy);
    font-size: 13px;
}

.docs-table th {
    background: var(--docs-surface);
    color: var(--docs-ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .03em;
    text-align: left;
    text-transform: uppercase;
}

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

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

.docs-table code {
    color: var(--docs-ink);
    font-weight: 800;
}

.docs-result-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

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

.docs-result-grid article {
    border: 1px solid var(--docs-line);
    border-radius: 13px;
    background: var(--docs-surface);
    padding: 18px;
}

.docs-result-grid article > span {
    display: block;
    margin-bottom: 8px;
    color: var(--docs-brand);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
}

.docs-result-grid h3 {
    font-size: 16px;
}

.docs-result-grid p {
    margin: 6px 0 0;
    color: var(--docs-copy);
    font-size: 13px;
}

.docs-axis-card {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(180px, .6fr);
    gap: 24px;
    align-items: center;
    border: 1px solid #99f6e4;
    border-radius: 14px;
    background: var(--docs-brand-soft);
    padding: 22px;
}

.docs-axis-card__beam {
    position: relative;
    height: 70px;
}

.docs-axis-card__line {
    position: absolute;
    top: 35px;
    right: 20px;
    left: 0;
    height: 8px;
    border-radius: 99px;
    background: #475569;
}

.docs-axis-card__arrow {
    position: absolute;
    top: 21px;
    right: 0;
    color: var(--docs-brand-dark);
    font-weight: 900;
}

.docs-axis-card__zero {
    position: absolute;
    top: 49px;
    left: 0;
    color: var(--docs-muted);
    font-size: 12px;
}

.docs-axis-card p {
    margin: 0;
    color: var(--docs-copy);
    font-size: 14px;
}

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

.docs-panel {
    border: 1px solid var(--docs-line);
    border-radius: 14px;
    background: var(--docs-surface);
    padding: 22px;
}

.docs-panel h3 {
    font-size: 18px;
}

.docs-two-column--plain > div {
    border-left: 3px solid #2dd4bf;
    border-radius: 0 10px 10px 0;
    background: var(--docs-surface);
    padding: 16px;
}

.docs-two-column--plain strong {
    color: var(--docs-ink);
    font-size: 15px;
}

.docs-two-column--plain p {
    margin: 5px 0 0;
    color: var(--docs-copy);
    font-size: 13px;
}

.docs-do-dont {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--docs-line);
    border-radius: 14px;
}

.docs-do-dont > div {
    padding: 22px;
}

.docs-do-dont > div:first-child {
    border-right: 1px solid var(--docs-line);
    background: var(--docs-brand-soft);
}

.docs-do-dont > div:last-child {
    background: #fffbeb;
}

.docs-do-dont h3 {
    font-size: 17px;
}

.docs-more-link {
    margin: 18px 0 0;
    color: var(--docs-muted);
    font-size: 13px;
}

.docs-feature-stack {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
    gap: 14px;
}

.docs-feature-stack > section {
    min-width: 0;
    border: 1px solid var(--docs-line);
    border-radius: 14px;
    background: #fff;
    padding: 22px;
}

.docs-sign-visual {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 26px;
    align-items: center;
    border: 1px solid #99f6e4;
    border-radius: 14px;
    background: var(--docs-brand-soft);
    padding: 22px;
}

.docs-sign-visual__axes {
    position: relative;
    height: 145px;
}

.docs-sign-visual__axes::before,
.docs-sign-visual__axes::after {
    position: absolute;
    background: #334155;
    content: "";
}

.docs-sign-visual__axes::before {
    bottom: 31px;
    left: 28px;
    width: 155px;
    height: 3px;
}

.docs-sign-visual__axes::after {
    bottom: 31px;
    left: 28px;
    width: 3px;
    height: 96px;
}

.docs-sign-visual__origin,
.docs-sign-visual__x,
.docs-sign-visual__y,
.docs-sign-visual__m {
    position: absolute;
    z-index: 1;
    color: var(--docs-brand-dark);
    font-size: 13px;
    font-weight: 900;
}

.docs-sign-visual__origin {
    bottom: 9px;
    left: 23px;
    color: var(--docs-muted);
}

.docs-sign-visual__x {
    right: 7px;
    bottom: 22px;
}

.docs-sign-visual__y {
    top: 0;
    left: 12px;
}

.docs-sign-visual__m {
    top: 46px;
    left: 56px;
    font-size: 18px;
}

.docs-sign-visual strong {
    color: var(--docs-ink);
    font-size: 17px;
}

.docs-sign-visual p {
    margin: 5px 0 0;
    color: var(--docs-copy);
    font-size: 14px;
}

.docs-example-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
}

.docs-example-strip > div {
    border: 1px solid var(--docs-line);
    border-radius: 10px;
    background: var(--docs-surface);
    padding: 12px;
}

.docs-example-strip code,
.docs-example-strip span {
    display: block;
}

.docs-example-strip code {
    width: fit-content;
    color: var(--docs-ink);
    font-size: 12px;
    font-weight: 800;
}

.docs-example-strip span {
    margin-top: 6px;
    color: var(--docs-copy);
    font-size: 12px;
}

.docs-shortcut-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--docs-line);
    border-radius: 14px;
    background: var(--docs-line);
    gap: 1px;
}

.docs-shortcut-grid > div {
    display: flex;
    align-items: center;
    gap: 11px;
    background: #fff;
    padding: 13px 15px;
}

.docs-shortcut-grid kbd {
    min-width: 38px;
    border: 1px solid #cbd5e1;
    border-bottom-width: 2px;
    border-radius: 6px;
    background: var(--docs-surface);
    padding: 4px 7px;
    color: var(--docs-ink);
    font-size: 11px;
    font-weight: 800;
    text-align: center;
}

.docs-shortcut-grid span {
    color: var(--docs-copy);
    font-size: 12px;
}

.docs-numbered {
    padding-left: 24px;
    font-size: 15px;
}

.docs-numbered strong {
    color: var(--docs-ink);
}

.docs-checklist {
    display: grid;
    gap: 8px;
}

.docs-checklist label {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    cursor: pointer;
    border: 1px solid var(--docs-line);
    border-radius: 11px;
    background: #fff;
    padding: 14px;
}

.docs-checklist label:hover {
    border-color: #99f6e4;
    background: var(--docs-brand-soft);
}

.docs-checklist input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--docs-brand);
}

.docs-checklist span {
    color: var(--docs-copy);
    font-size: 13px;
}

.docs-checklist strong {
    display: block;
    color: var(--docs-ink);
    font-size: 14px;
}

.docs-checklist input:checked + span {
    color: #94a3b8;
    text-decoration: line-through;
}

.docs-checklist__reset {
    margin-top: 12px;
    border: 1px solid var(--docs-line);
    border-radius: 8px;
    background: #fff;
    padding: 8px 12px;
    color: var(--docs-copy);
    font-size: 12px;
    font-weight: 800;
}

.docs-checklist__reset:hover {
    border-color: #cbd5e1;
    background: var(--docs-surface);
}

.docs-accordion {
    overflow: hidden;
    border: 1px solid var(--docs-line);
    border-radius: 14px;
}

.docs-accordion details + details {
    border-top: 1px solid var(--docs-line);
}

.docs-accordion summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    list-style: none;
    padding: 17px 20px;
    color: var(--docs-ink);
    font-size: 15px;
    font-weight: 800;
}

.docs-accordion summary::-webkit-details-marker {
    display: none;
}

.docs-accordion summary:hover {
    background: var(--docs-surface);
}

.docs-accordion summary b {
    color: var(--docs-brand);
    font-size: 20px;
    font-weight: 500;
}

.docs-accordion details[open] summary {
    background: var(--docs-brand-soft);
}

.docs-accordion details[open] summary b {
    transform: rotate(45deg);
}

.docs-accordion details > div {
    padding: 0 20px 18px;
    color: var(--docs-copy);
    font-size: 14px;
}

.docs-accordion p,
.docs-accordion ul,
.docs-accordion ol {
    margin: 10px 0 0;
}

.docs-accordion li + li {
    margin-top: 6px;
}

.docs-glossary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--docs-line);
    border-radius: 14px;
    background: var(--docs-line);
    gap: 1px;
}

.docs-glossary > div {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    background: #fff;
    padding: 15px;
}

.docs-glossary dt {
    color: var(--docs-ink);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 13px;
    font-weight: 900;
}

.docs-glossary dd {
    margin: 0;
    color: var(--docs-copy);
    font-size: 12px;
}

.docs-engineering-note {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
    margin-top: 64px;
    border: 1px solid #99f6e4;
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0, rgb(45 212 191 / 0.18), transparent 17rem),
        var(--docs-brand-soft);
    padding: 30px;
}

.docs-engineering-note h2 {
    font-size: 28px;
}

.docs-engineering-note p {
    font-size: 14px;
}

.docs-engineering-note__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.docs-engineering-note__actions a {
    border: 1px solid #5eead4;
    border-radius: 9px;
    background: #fff;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.docs-mobile-nav-toggle,
.docs-mobile-nav {
    display: none;
}

@media (max-width: 1100px) {
    .docs-tool-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .docs-layout {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 38px;
    }

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

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

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

@media (max-width: 820px) {
    .docs-body .site-back-to-top {
        right: auto;
        left: 15px;
    }

    .docs-shell {
        width: min(100% - 28px, 1408px);
    }

    .docs-hero__copy {
        padding: 48px 0 58px;
    }

    .docs-hero__lede {
        font-size: 17px;
    }

    .docs-search__shortcut {
        display: none;
    }

    .docs-start {
        padding: 48px 0;
    }

    .docs-guide-bar__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
        padding-block: 13px;
    }

    .docs-tool-card {
        min-height: 126px;
    }

    .docs-layout {
        display: block;
        padding-top: 44px;
    }

    .docs-sidebar {
        display: none;
    }

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

    .docs-product-heading {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .docs-product-heading__mark {
        width: 52px;
        height: 52px;
    }

    .docs-open-app {
        grid-column: 1 / -1;
        width: fit-content;
        margin-left: 72px;
    }

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

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

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

    .docs-axis-card,
    .docs-sign-visual {
        grid-template-columns: 1fr;
    }

    .docs-sign-visual__axes {
        max-width: 240px;
    }

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

    .docs-mobile-nav-toggle {
        position: fixed;
        right: 18px;
        bottom: 18px;
        z-index: 80;
        display: flex;
        align-items: center;
        gap: 10px;
        border: 1px solid #5eead4;
        border-radius: 999px;
        background: var(--docs-brand-dark);
        padding: 12px 16px;
        color: #fff;
        box-shadow: 0 12px 30px rgb(15 23 42 / 0.24);
        font-size: 13px;
        font-weight: 800;
    }

    .docs-mobile-nav-toggle[aria-expanded="true"] b {
        transform: rotate(180deg);
    }

    .docs-mobile-nav {
        position: fixed;
        right: 18px;
        bottom: 72px;
        z-index: 79;
        display: grid;
        width: min(310px, calc(100vw - 36px));
        max-height: 60vh;
        overflow-y: auto;
        border: 1px solid var(--docs-line);
        border-radius: 14px;
        background: #fff;
        padding: 8px;
        box-shadow: 0 20px 55px rgb(15 23 42 / 0.24);
    }

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

    .docs-mobile-nav a {
        border-radius: 8px;
        padding: 10px 12px;
        color: var(--docs-ink);
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
    }

    .docs-mobile-nav a:hover {
        background: var(--docs-brand-soft);
    }
}

@media (max-width: 620px) {
    .docs-hero h1 {
        font-size: 36px;
    }

    .docs-search__control {
        min-height: 58px;
        border-radius: 13px;
    }

    .docs-search input {
        height: 56px;
        padding-right: 8px;
        font-size: 15px;
    }

    .docs-search__icon {
        padding-left: 16px;
        font-size: 25px;
    }

    .docs-search__clear {
        margin-right: 8px;
    }

    .docs-search-results {
        top: 68px;
    }

    .docs-search-results__header span {
        display: none;
    }

    .docs-tool-grid,
    .docs-directory-grid,
    .docs-capability-grid,
    .docs-result-grid,
    .docs-two-column,
    .docs-do-dont,
    .docs-glossary {
        grid-template-columns: 1fr;
    }

    .docs-tool-card {
        min-height: 0;
    }

    .docs-capability-grid,
    .docs-glossary {
        background: var(--docs-line);
    }

    .docs-do-dont > div:first-child {
        border-right: 0;
        border-bottom: 1px solid var(--docs-line);
    }

    .docs-product-heading {
        align-items: start;
    }

    .docs-open-app {
        width: 100%;
        margin-left: 0;
    }

    .docs-step-card {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 13px;
        padding: 16px;
    }

    .docs-step-card__number {
        width: 36px;
        height: 36px;
    }

    .docs-axis-card__beam {
        min-width: 0;
    }

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

    .docs-glossary > div {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .docs-engineering-note {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .docs-engineering-note__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .docs-hero__meta span:last-child {
        width: 100%;
        justify-content: center;
    }

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

    .docs-legacy-content p {
        font-size: 15px;
    }
}

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

    .docs-tool-card {
        transition: none;
    }
}

@media print {
    #site-header,
    #site-footer,
    .docs-search,
    .docs-hero__meta,
    .docs-start,
    .docs-sidebar,
    .docs-open-app,
    .docs-mobile-nav-toggle,
    .docs-mobile-nav,
    .site-back-to-top {
        display: none !important;
    }

    .docs-hero {
        border: 0;
        background: #fff;
    }

    .docs-hero__copy {
        max-width: none;
        padding: 0 0 24px;
        text-align: left;
    }

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

    .docs-layout {
        display: block;
        width: 100%;
        padding: 0;
    }

    .docs-article-section {
        break-inside: avoid;
        padding: 22px 0;
    }

    .docs-step-card,
    .docs-panel,
    .docs-feature-stack > section,
    .docs-callout {
        break-inside: avoid;
        box-shadow: none;
    }
}
