@font-face {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url("/fonts/raleway-latin-e401cae7a12911a5c9752dc7a62f9dd7.woff2") format("woff2");
}

:root {
    --docs-ink: #10254f;
    --docs-text: #40506b;
    --docs-muted: #68758a;
    --docs-blue: #2456d8;
    --docs-blue-dark: #1d49bc;
    --docs-green: #159b68;
    --docs-bg: #fcfcfa;
    --docs-surface: #ffffff;
    --docs-soft: #f4f6f9;
    --docs-border: #e1e5ec;
    --docs-code: #111827;
    --docs-topbar: 68px;
    --docs-sidebar: 272px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

button,
input {
    font: inherit;
}

a {
    color: inherit;
}

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

.developer-docs {
    min-width: 320px;
    background: var(--docs-bg);
    color: var(--docs-text);
    font-family: "Raleway", "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 8px;
    left: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    background: var(--docs-ink);
    color: white;
    transform: translateY(-160%);
}

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

.docs-topbar {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: var(--docs-topbar);
    border-bottom: 1px solid rgba(225, 229, 236, .92);
    background: rgba(252, 252, 250, .94);
    backdrop-filter: blur(18px);
}

.docs-topbar-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 100%;
    padding: 0 24px;
}

.docs-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    color: var(--docs-ink);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.015em;
    text-decoration: none;
}

.docs-brand-mark {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    object-fit: contain;
}

.docs-brand-product {
    padding-left: 10px;
    border-left: 1px solid #d9dee8;
    color: #6f7c91;
    font-weight: 500;
}

.docs-search {
    display: flex;
    flex: 1 1 460px;
    align-items: center;
    gap: 10px;
    max-width: 560px;
    height: 40px;
    margin-inline: auto;
    padding: 0 11px;
    border: 1px solid #dce1ea;
    border-radius: 11px;
    background: #fff;
    color: #8893a5;
    box-shadow: 0 2px 8px rgba(16, 37, 79, .025);
    transition: border-color .18s ease, box-shadow .18s ease;
}

.docs-search:focus-within {
    border-color: #8ca8ef;
    box-shadow: 0 0 0 4px rgba(36, 86, 216, .09);
}

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

.docs-search input::placeholder {
    color: #939dad;
}

.docs-search kbd {
    padding: 2px 6px;
    border: 1px solid #e1e5ec;
    border-radius: 5px;
    background: #f7f8fa;
    color: #8a94a5;
    font-size: 10px;
}

.docs-top-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
}

.version-badge {
    margin-right: 4px;
    padding: 4px 8px;
    border: 1px solid #d9e4ff;
    border-radius: 999px;
    background: #f1f5ff;
    color: #3159bd;
    font-size: 11px;
    font-weight: 700;
}

.top-link {
    padding: 8px 10px;
    border-radius: 9px;
    color: #516079;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.top-link:hover {
    color: var(--docs-blue);
    background: #f2f5fa;
}

.top-link-primary {
    padding-inline: 14px;
    background: var(--docs-blue);
    color: #fff;
}

.top-link-primary:hover {
    background: var(--docs-blue-dark);
    color: #fff;
}

.docs-menu-button {
    display: none;
    padding: 8px 12px;
    border: 1px solid #dce1ea;
    border-radius: 9px;
    background: white;
    color: var(--docs-ink);
    font-size: 12px;
    font-weight: 700;
}

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

.docs-sidebar {
    position: fixed;
    z-index: 80;
    inset: var(--docs-topbar) auto 0 0;
    width: var(--docs-sidebar);
    border-right: 1px solid var(--docs-border);
    background: #fafbf9;
}

.docs-sidebar-scroll {
    height: 100%;
    overflow-y: auto;
    padding: 28px 22px 34px 26px;
    scrollbar-width: thin;
    scrollbar-color: #d8dee8 transparent;
}

.sidebar-label {
    margin: 25px 0 8px 10px;
    color: #9aa4b4;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.sidebar-label:first-child {
    margin-top: 0;
}

.sidebar-link {
    display: block;
    padding: 7px 10px;
    border-radius: 8px;
    color: #5d6980;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
}

.sidebar-link:hover {
    color: var(--docs-ink);
    background: #f0f2f6;
}

.sidebar-link.active {
    background: #ebf1ff;
    color: var(--docs-blue);
    font-weight: 700;
}

.sidebar-help {
    margin-top: 28px;
    padding: 16px;
    border: 1px solid #dfe4ec;
    border-radius: 13px;
    background: #fff;
    font-size: 11px;
}

.sidebar-help strong {
    color: var(--docs-ink);
    font-size: 12px;
}

.sidebar-help p {
    margin: 5px 0 9px;
    color: #758196;
    line-height: 1.5;
}

.sidebar-help a {
    color: var(--docs-blue);
    font-weight: 700;
    text-decoration: none;
}

.docs-content {
    width: min(980px, calc(100% - var(--docs-sidebar)));
    margin-left: var(--docs-sidebar);
    padding: 0 58px 48px;
}

.docs-hero,
.docs-section {
    scroll-margin-top: calc(var(--docs-topbar) + 24px);
}

.docs-hero {
    position: relative;
    padding: 80px 0 54px;
    border-bottom: 1px solid var(--docs-border);
}

.docs-hero::before,
.docs-hero::after {
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    content: "";
    filter: blur(56px);
    pointer-events: none;
}

.docs-hero::before {
    top: 34px;
    right: 8%;
    width: 170px;
    height: 170px;
    background: rgba(59, 102, 227, .16);
}

.docs-hero::after {
    top: 80px;
    right: 25%;
    width: 120px;
    height: 120px;
    background: rgba(42, 192, 133, .14);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #516581;
    font-size: 12px;
    font-weight: 700;
}

.eyebrow span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #23b779;
    box-shadow: 0 0 0 5px rgba(35, 183, 121, .10);
}

.docs-hero h1 {
    max-width: 780px;
    margin: 19px 0 19px;
    color: var(--docs-ink);
    font-size: clamp(2.55rem, 5vw, 4.25rem);
    font-weight: 700;
    letter-spacing: -.052em;
    line-height: 1.04;
}

.docs-hero h1 span {
    background: linear-gradient(105deg, #315fe3 12%, #147fbe 55%, #159b68 94%);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-copy {
    max-width: 720px;
    margin: 0;
    color: #607087;
    font-size: 17px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--docs-blue);
    color: #fff;
    box-shadow: 0 9px 20px rgba(36, 86, 216, .17);
}

.button-primary:hover {
    background: var(--docs-blue-dark);
}

.button-secondary {
    border-color: #d7dde7;
    background: #fff;
    color: #354864;
}

.button-secondary:hover {
    border-color: #adb8c8;
    background: #f8f9fb;
}

.api-facts {
    display: grid;
    grid-template-columns: 2.1fr 1fr 1.25fr .8fr;
    margin: 48px 0 0;
    overflow: hidden;
    border: 1px solid var(--docs-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 9px 28px rgba(16, 37, 79, .045);
}

.api-facts > div {
    min-width: 0;
    padding: 16px 18px;
    border-right: 1px solid var(--docs-border);
}

.api-facts > div:last-child {
    border-right: 0;
}

.api-facts dt {
    color: #8792a4;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.api-facts dd {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    margin: 4px 0 0;
    color: var(--docs-ink);
    font-size: 12px;
    font-weight: 700;
}

.api-facts dd code {
    overflow: hidden;
    color: #244a9a;
    text-overflow: ellipsis;
}

.inline-copy {
    margin-left: auto;
    padding: 3px 7px;
    border: 0;
    border-radius: 5px;
    background: #f0f3f8;
    color: #64738b;
    font-size: 9px;
    font-weight: 700;
}

.docs-section {
    padding: 64px 0;
    border-bottom: 1px solid var(--docs-border);
}

.section-heading {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    margin-bottom: 32px;
}

.section-heading.compact {
    display: block;
    margin-bottom: 22px;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-top: 1px;
    border: 1px solid #dbe3f3;
    border-radius: 11px;
    background: #f4f7ff;
    color: var(--docs-blue);
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 11px;
    font-weight: 700;
}

.section-kicker {
    margin: 0 0 5px;
    color: var(--docs-blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.section-heading h2,
.reference-heading h2,
.docs-cta h2 {
    margin: 0;
    color: var(--docs-ink);
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.2;
}

.section-heading h2 code {
    color: var(--docs-blue);
    font-size: .82em;
}

.section-heading p:not(.section-kicker),
.reference-heading p,
.docs-cta p {
    max-width: 700px;
    margin: 8px 0 0;
    color: #6b778b;
    line-height: 1.7;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--docs-border);
    border-radius: 14px;
    background: var(--docs-border);
    list-style: none;
}

.step-grid li {
    min-width: 0;
    padding: 18px 16px;
    background: #fff;
}

.step-grid li > span {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 7px;
    background: #edf2ff;
    color: var(--docs-blue);
    font-size: 10px;
    font-weight: 700;
}

.step-grid strong {
    display: block;
    color: var(--docs-ink);
    font-size: 12px;
}

.step-grid p {
    margin: 6px 0 0;
    color: #778296;
    font-size: 11px;
    line-height: 1.55;
}

.step-grid code {
    color: #3159bd;
    font-size: 10px;
}

.callout {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 13px;
    margin: 22px 0;
    padding: 17px 19px;
    border: 1px solid;
    border-radius: 12px;
}

.callout-icon {
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

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

.callout p {
    margin: 3px 0 0;
    font-size: 12px;
    line-height: 1.6;
}

.callout code {
    font-size: 11px;
}

.callout-info {
    border-color: #cddcf9;
    background: #f4f7ff;
    color: #536987;
}

.callout-info .callout-icon {
    background: #dfe9ff;
    color: var(--docs-blue);
}

.callout-warning {
    border-color: #f0dfb6;
    background: #fffaf0;
    color: #75664a;
}

.callout-warning .callout-icon {
    background: #f9eac7;
    color: #9a6815;
}

.callout-security {
    border-color: #c8e8da;
    background: #f2fbf7;
    color: #4c7264;
}

.callout-security .callout-icon {
    background: #d9f4e8;
    color: #17855d;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 22px;
}

.concept-card {
    padding: 24px;
    border: 1px solid var(--docs-border);
    border-radius: 14px;
    background: #fff;
}

.concept-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #eef3ff;
    color: var(--docs-blue);
    font-size: 14px;
    font-weight: 700;
}

.concept-card h3 {
    margin: 14px 0 6px;
    color: var(--docs-ink);
    font-size: 15px;
}

.concept-card p {
    margin: 0;
    color: #727f93;
    font-size: 12px;
}

.concept-card ul {
    margin: 15px 0 0;
    padding: 14px 0 0 17px;
    border-top: 1px solid #e9ecf1;
    color: #57667e;
    font-size: 11px;
}

.concept-card li + li {
    margin-top: 5px;
}

.concept-card code {
    color: #3159bd;
    font-size: 10px;
}

.action-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 14px;
    padding: 20px 22px;
    border-radius: 14px;
    background: #10254f;
    color: #fff;
}

.action-panel strong {
    font-size: 14px;
}

.action-panel p {
    max-width: 620px;
    margin: 4px 0 0;
    color: #c9d3e4;
    font-size: 11px;
}

.endpoint-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding: 13px 16px;
    overflow-x: auto;
    border: 1px solid var(--docs-border);
    border-radius: 11px;
    background: #fff;
}

.endpoint-strip span {
    padding: 3px 8px;
    border-radius: 5px;
    background: #e8f7ef;
    color: #148356;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    font-weight: 700;
}

.endpoint-strip code {
    color: #30405d;
    font-size: 11px;
    white-space: nowrap;
}

.subheading {
    margin: 32px 0 8px;
    color: var(--docs-ink);
    font-size: 16px;
}

.body-copy {
    max-width: 760px;
    margin: 8px 0 18px;
    color: #657389;
}

.body-copy code {
    padding: 2px 5px;
    border-radius: 5px;
    background: #f0f3f7;
    color: #3159bd;
    font-size: 12px;
}

.small-copy {
    font-size: 12px;
}

.code-card {
    margin: 14px 0 20px;
    overflow: hidden;
    border: 1px solid #243044;
    border-radius: 13px;
    background: var(--docs-code);
    box-shadow: 0 10px 26px rgba(15, 23, 42, .10);
}

.code-toolbar {
    display: flex;
    min-height: 39px;
    align-items: center;
    justify-content: space-between;
    padding: 0 13px 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: #151f2f;
    color: #9eacbf;
    font-size: 10px;
    font-weight: 600;
}

.code-toolbar button {
    padding: 4px 8px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 6px;
    background: rgba(255, 255, 255, .05);
    color: #cbd5e1;
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
}

.code-toolbar button:hover,
.code-toolbar button.copied {
    border-color: rgba(108, 154, 255, .35);
    background: rgba(74, 115, 220, .18);
    color: #fff;
}

.code-card pre {
    margin: 0;
    overflow-x: auto;
    padding: 19px 20px 21px;
    color: #d6deeb;
    font-size: 11px;
    line-height: 1.72;
    tab-size: 2;
}

.code-card code {
    font: inherit;
}

.response-card {
    border-color: #d9dee7;
    background: #f8fafc;
    box-shadow: none;
}

.response-card .code-toolbar {
    border-color: #e1e5ec;
    background: #f0f3f7;
    color: #67758a;
}

.response-card .code-toolbar button {
    border-color: #d7dde7;
    background: #fff;
    color: #667389;
}

.response-card pre {
    color: #30415f;
}

.response-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 28px 0 8px;
    color: var(--docs-ink);
    font-size: 12px;
}

.response-title span {
    padding: 2px 6px;
    border-radius: 5px;
    background: #e8f7ef;
    color: #16855b;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
}

.code-tabs .tab-list {
    display: flex;
    gap: 2px;
    margin-top: 14px;
    padding: 3px;
    border: 1px solid #e0e4eb;
    border-radius: 9px;
    width: fit-content;
    background: #f2f4f7;
}

.tab-list button {
    padding: 5px 11px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #778398;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
}

.tab-list button.active {
    background: #fff;
    color: var(--docs-ink);
    box-shadow: 0 1px 4px rgba(16, 37, 79, .08);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.data-table {
    margin: 18px 0;
    overflow-x: auto;
    border: 1px solid var(--docs-border);
    border-radius: 12px;
    background: #fff;
}

.data-table table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.data-table th,
.data-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e7eaf0;
    font-size: 11px;
    vertical-align: top;
}

.data-table tr:last-child th,
.data-table tr:last-child td {
    border-bottom: 0;
}

.data-table thead th {
    background: #f5f7fa;
    color: #7d889a;
    font-size: 9px;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.data-table tbody th {
    color: #3f4f69;
    font-weight: 600;
}

.data-table td {
    color: #66748a;
}

.data-table code {
    color: #2c55b7;
    font-size: 10px;
}

.convention-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.convention-grid article {
    padding: 18px;
    border: 1px solid var(--docs-border);
    border-radius: 12px;
    background: #fff;
}

.convention-grid h3 {
    margin: 0;
    color: var(--docs-ink);
    font-size: 12px;
}

.convention-grid p {
    margin: 6px 0 0;
    color: #748095;
    font-size: 11px;
}

.convention-grid code {
    color: #3159bd;
    font-size: 10px;
}

.reference-section {
    padding-top: 72px;
}

.reference-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.reference-heading > div:last-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 5px;
}

.scope-pill {
    display: inline-flex;
    padding: 5px 8px;
    border: 1px solid #d8e3fb;
    border-radius: 7px;
    background: #f4f7ff;
    color: #3159bd;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    white-space: nowrap;
}

.endpoint-list {
    overflow: hidden;
    border: 1px solid var(--docs-border);
    border-radius: 13px;
    background: #fff;
}

.endpoint-row {
    display: grid;
    grid-template-columns: 58px minmax(280px, 1.5fr) minmax(170px, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 55px;
    padding: 10px 14px;
    border-bottom: 1px solid #e8ebf0;
}

.endpoint-row:last-child {
    border-bottom: 0;
}

.endpoint-row:hover {
    background: #fafbfc;
}

.endpoint-row > code {
    overflow: hidden;
    color: #2e405f;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.endpoint-row p {
    margin: 0;
    color: #7a8698;
    font-size: 10px;
}

.endpoint-row a {
    color: var(--docs-blue);
    font-size: 9px;
    font-weight: 700;
    text-decoration: none;
}

.method {
    display: inline-flex;
    width: 47px;
    height: 23px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    font-weight: 700;
}

.method.get {
    background: #e8f7ef;
    color: #148356;
}

.method.post {
    background: #eaf0ff;
    color: #3159bd;
}

.method.patch {
    background: #fff5db;
    color: #9b6710;
}

.method.delete {
    background: #fff0ef;
    color: #b8423d;
}

.endpoint-note {
    margin: 10px 3px 0;
    color: #788398;
    font-size: 10px;
}

.parameter-box {
    margin: 18px 0;
    padding: 19px;
    border: 1px solid var(--docs-border);
    border-radius: 12px;
    background: #f8f9fb;
}

.parameter-box h3 {
    margin: 0 0 12px;
    color: var(--docs-ink);
    font-size: 12px;
}

.parameter-box dl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 22px;
    margin: 0;
}

.parameter-box dl > div {
    display: grid;
    grid-template-columns: minmax(115px, .65fr) 1fr;
    gap: 10px;
    padding: 8px 0;
    border-top: 1px solid #e4e7ed;
}

.parameter-box dt,
.parameter-box dd {
    margin: 0;
    font-size: 10px;
}

.parameter-box dt code {
    color: #3159bd;
}

.parameter-box dd {
    color: #758196;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 20px 0;
}

.event-grid > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    padding: 13px;
    border: 1px solid var(--docs-border);
    border-radius: 10px;
    background: #fff;
}

.event-grid code {
    overflow: hidden;
    color: #3159bd;
    font-size: 10px;
    font-weight: 700;
    text-overflow: ellipsis;
}

.event-grid span {
    color: #7c8799;
    font-size: 10px;
}

.check-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 11px 0 11px 30px;
    border-bottom: 1px solid #e7eaf0;
    color: #5f6f87;
    font-size: 12px;
}

.check-list li::before {
    position: absolute;
    top: 12px;
    left: 2px;
    display: inline-flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #e5f7ef;
    color: #16855b;
    content: "✓";
    font-size: 9px;
    font-weight: 700;
}

.check-list code {
    color: #3159bd;
    font-size: 10px;
}

.docs-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin: 64px 0 42px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid #d8dee8;
    border-radius: 18px;
    background:
        radial-gradient(circle at 90% 0, rgba(45, 198, 137, .16), transparent 33%),
        radial-gradient(circle at 7% 100%, rgba(58, 104, 226, .13), transparent 30%),
        #f0f3f7;
}

.docs-cta h2 {
    max-width: 570px;
    font-size: 1.65rem;
}

.docs-cta > div:last-child {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.docs-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0 8px;
    border-top: 1px solid var(--docs-border);
    color: #818c9e;
    font-size: 10px;
}

.docs-footer > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.docs-footer strong {
    color: #53637b;
}

.docs-footer nav {
    display: flex;
    gap: 16px;
}

.docs-footer a {
    text-decoration: none;
}

.docs-footer a:hover {
    color: var(--docs-blue);
}

.docs-backdrop {
    position: fixed;
    z-index: 70;
    inset: var(--docs-topbar) 0 0;
    background: rgba(16, 37, 79, .26);
    backdrop-filter: blur(2px);
}

.search-empty {
    position: fixed;
    z-index: 110;
    top: 74px;
    left: 50%;
    width: min(430px, calc(100% - 32px));
    padding: 16px 18px;
    border: 1px solid #dce1ea;
    border-radius: 12px;
    background: #fff;
    color: var(--docs-ink);
    box-shadow: 0 15px 44px rgba(16, 37, 79, .15);
    transform: translateX(-50%);
}

.search-empty strong,
.search-empty span {
    display: block;
}

.search-empty span {
    margin-top: 3px;
    color: #7a869a;
    font-size: 11px;
}

.is-search-hidden {
    display: none !important;
}

@media (max-width: 1120px) {
    .docs-topbar-inner {
        gap: 14px;
        padding-inline: 18px;
    }

    .docs-brand-product,
    .version-badge,
    .top-link:not(.top-link-primary) {
        display: none;
    }

    .docs-content {
        padding-inline: 38px;
    }

    .step-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .endpoint-row {
        grid-template-columns: 52px minmax(260px, 1.4fr) 1fr;
    }

    .endpoint-row a {
        display: none;
    }
}

@media (max-width: 860px) {
    :root {
        --docs-topbar: 62px;
    }

    .docs-topbar-inner {
        padding-inline: 14px;
    }

    .docs-brand > span:nth-child(2),
    .docs-top-actions,
    .docs-search kbd {
        display: none;
    }

    .docs-search {
        flex-basis: auto;
        max-width: none;
        height: 37px;
    }

    .docs-menu-button {
        display: inline-flex;
    }

    .docs-sidebar {
        width: min(310px, 84vw);
        transform: translateX(-105%);
        transition: transform .2s ease;
        box-shadow: 12px 0 36px rgba(16, 37, 79, .11);
    }

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

    .docs-content {
        width: 100%;
        margin-left: 0;
        padding-inline: 24px;
    }

    .docs-hero {
        padding-top: 62px;
    }

    .api-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .api-facts > div:nth-child(2) {
        border-right: 0;
    }

    .api-facts > div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--docs-border);
    }

    .step-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .docs-content {
        padding-inline: 18px;
    }

    .docs-hero {
        padding-top: 48px;
    }

    .docs-hero h1 {
        font-size: 2.45rem;
    }

    .hero-copy {
        font-size: 15px;
    }

    .api-facts,
    .step-grid,
    .two-column,
    .convention-grid,
    .event-grid {
        grid-template-columns: 1fr;
    }

    .api-facts > div {
        border-right: 0;
        border-bottom: 1px solid var(--docs-border);
    }

    .api-facts > div:last-child {
        border-bottom: 0;
    }

    .step-grid li {
        padding: 16px;
    }

    .section-heading {
        grid-template-columns: 34px 1fr;
        gap: 12px;
    }

    .section-number {
        width: 32px;
        height: 32px;
    }

    .action-panel,
    .reference-heading,
    .docs-cta,
    .docs-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .reference-heading > div:last-child {
        justify-content: flex-start;
    }

    .action-panel .button {
        width: 100%;
    }

    .endpoint-row {
        grid-template-columns: 47px 1fr;
        gap: 6px 10px;
        padding: 12px;
    }

    .endpoint-row > code {
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .endpoint-row p {
        grid-column: 2;
    }

    .parameter-box dl {
        grid-template-columns: 1fr;
    }

    .parameter-box dl > div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .code-card pre {
        padding: 16px;
        font-size: 10px;
    }

    .docs-cta > div:last-child {
        flex-direction: column;
    }

    .docs-footer nav {
        flex-wrap: wrap;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}
