﻿:root {
    --docs-primary: #5b5ce2;
    --docs-primary-dark: #4445c7;
    --docs-primary-soft: #f0f0ff;
    --docs-secondary: #18a999;
    --docs-secondary-soft: #eaf9f6;
    --docs-heading: #171927;
    --docs-text: #626a79;
    --docs-muted: #9097a5;
    --docs-background: #f8f9fc;
    --docs-surface: #ffffff;
    --docs-sidebar: #ffffff;
    --docs-border: #e7e9f0;
    --docs-code: #171927;
    --docs-code-text: #ecedf4;
    --docs-warning: #f59e0b;
    --docs-warning-soft: #fff8e7;
    --docs-danger: #dc3545;
    --docs-danger-soft: #fff0f1;
    --docs-info: #3686ff;
    --docs-info-soft: #edf5ff;
    --docs-success: #15957f;
    --docs-success-soft: #eaf9f6;
    --docs-sidebar-width: 300px;
    --docs-header-height: 72px;
    --docs-shadow: 0 18px 45px rgba(24, 30, 65, 0.08);
    --docs-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--docs-header-height) + 24px);
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--docs-heading);
    background: var(--docs-background);
    font-family: var(--docs-font);
    font-size: 15px;
    line-height: 1.7;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

a {
    color: var(--docs-primary);
}

img {
    max-width: 100%;
}

/* =====================================================
   HEADER
   ===================================================== */

.docs-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: var(--docs-header-height);
    border-bottom: 1px solid var(--docs-border);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.docs-header-inner {
    display: flex;
    align-items: center;
    gap: 26px;
    width: min(1500px, 100%);
    height: 100%;
    margin: 0 auto;
    padding: 0 28px;
}

.docs-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    color: var(--docs-heading);
    text-decoration: none;
}

.docs-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    color: #ffffff;
    background: linear-gradient( 135deg, var(--docs-primary), #7778ef );
    box-shadow: 0 10px 22px rgba(91, 92, 226, 0.25);
    font-size: 18px;
    font-weight: 800;
}

.docs-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

    .docs-brand-text strong {
        font-size: 16px;
        font-weight: 750;
    }

    .docs-brand-text span {
        margin-top: 4px;
        color: var(--docs-muted);
        font-size: 10px;
        font-weight: 650;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

.docs-header-search {
    position: relative;
    width: min(560px, 100%);
    margin: 0 auto;
}

.docs-header-search-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    color: var(--docs-muted);
    transform: translateY(-50%);
    pointer-events: none;
}

.docs-search-input {
    width: 100%;
    height: 43px;
    padding: 0 45px 0 43px;
    border: 1px solid var(--docs-border);
    border-radius: 10px;
    outline: none;
    color: var(--docs-heading);
    background: #f9fafc;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

    .docs-search-input:focus {
        border-color: var(--docs-primary);
        background: #ffffff;
        box-shadow: 0 0 0 4px rgba(91, 92, 226, 0.1);
    }

.docs-search-shortcut {
    position: absolute;
    top: 50%;
    right: 11px;
    min-width: 27px;
    padding: 3px 6px;
    border: 1px solid var(--docs-border);
    border-radius: 6px;
    color: var(--docs-muted);
    background: #ffffff;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    transform: translateY(-50%);
}

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

.docs-header-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    padding: 0 15px;
    border: 1px solid var(--docs-border);
    border-radius: 9px;
    color: var(--docs-heading);
    background: #ffffff;
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

    .docs-header-link:hover {
        color: var(--docs-primary);
        border-color: rgba(91, 92, 226, 0.4);
        transform: translateY(-1px);
    }

.docs-menu-button {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--docs-border);
    border-radius: 9px;
    color: var(--docs-heading);
    background: #ffffff;
    cursor: pointer;
}

/* =====================================================
   LAYOUT
   ===================================================== */

.docs-layout {
    display: grid;
    grid-template-columns: var(--docs-sidebar-width) minmax(0, 1fr);
    min-height: 100vh;
    padding-top: var(--docs-header-height);
}

.docs-sidebar {
    position: fixed;
    z-index: 900;
    top: var(--docs-header-height);
    bottom: 0;
    left: 0;
    width: var(--docs-sidebar-width);
    overflow-y: auto;
    border-right: 1px solid var(--docs-border);
    background: var(--docs-sidebar);
}

.docs-sidebar-inner {
    padding: 24px 20px 38px;
}

.docs-version-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 23px;
    padding: 13px 14px;
    border: 1px solid var(--docs-border);
    border-radius: 11px;
    background: var(--docs-background);
}

    .docs-version-card span {
        color: var(--docs-text);
        font-size: 12px;
    }

    .docs-version-card strong {
        padding: 4px 8px;
        border-radius: 6px;
        color: var(--docs-primary);
        background: var(--docs-primary-soft);
        font-size: 11px;
    }

.docs-nav-section {
    margin-bottom: 26px;
}

.docs-nav-title {
    display: block;
    margin: 0 0 8px;
    padding: 0 10px;
    color: var(--docs-muted);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.docs-nav-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.docs-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 9px 11px;
    border-radius: 8px;
    color: var(--docs-text);
    font-size: 13px;
    font-weight: 560;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

    .docs-nav-link:hover {
        color: var(--docs-primary);
        background: var(--docs-primary-soft);
    }

    .docs-nav-link.active {
        color: var(--docs-primary);
        background: var(--docs-primary-soft);
        font-weight: 700;
    }

.docs-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    flex: 0 0 auto;
    font-size: 14px;
}

.docs-sidebar-help {
    margin-top: 28px;
    padding: 17px;
    border: 1px solid rgba(91, 92, 226, 0.18);
    border-radius: 12px;
    background: linear-gradient( 135deg, #f7f7ff, #eeeeff );
}

    .docs-sidebar-help strong {
        display: block;
        margin-bottom: 7px;
        font-size: 13px;
    }

    .docs-sidebar-help p {
        margin: 0 0 13px;
        color: var(--docs-text);
        font-size: 11px;
        line-height: 1.6;
    }

    .docs-sidebar-help a {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        color: var(--docs-primary);
        font-size: 12px;
        font-weight: 700;
        text-decoration: none;
    }

.docs-main {
    grid-column: 2;
    min-width: 0;
}

.docs-content {
    width: min(980px, calc(100% - 60px));
    margin: 0 auto;
    padding: 90px 0 110px;
}
.docs-overlay {
    display: none;
}

/* =====================================================
   HERO
   ===================================================== */

.docs-hero {
    position: relative;
    margin-bottom: 42px;
    padding: 48px;
    overflow: hidden;
    border: 1px solid var(--docs-border);
    border-radius: 22px;
    background: radial-gradient( circle at 88% 5%, rgba(91, 92, 226, 0.16), transparent 32% ), linear-gradient( 135deg, #ffffff, #f8f8ff );
    box-shadow: var(--docs-shadow);
}

    .docs-hero::before,
    .docs-hero::after {
        content: "";
        position: absolute;
        border: 1px solid rgba(91, 92, 226, 0.09);
        border-radius: 50%;
    }

    .docs-hero::before {
        top: -130px;
        right: -85px;
        width: 320px;
        height: 320px;
    }

    .docs-hero::after {
        right: 90px;
        bottom: -190px;
        width: 320px;
        height: 320px;
    }

.docs-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.docs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--docs-primary);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.docs-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--docs-primary);
    box-shadow: 0 0 0 5px rgba(91, 92, 226, 0.1);
}

.docs-hero h1 {
    margin: 0;
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 760;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

    .docs-hero h1 span {
        color: var(--docs-primary);
    }

.docs-hero-description {
    max-width: 680px;
    margin: 22px 0 0;
    color: var(--docs-text);
    font-size: 17px;
    line-height: 1.8;
}

.docs-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 29px;
}

.docs-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 47px;
    padding: 0 19px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.docs-button-primary {
    color: #ffffff;
    background: var(--docs-primary);
    box-shadow: 0 11px 22px rgba(91, 92, 226, 0.22);
}

    .docs-button-primary:hover {
        color: #ffffff;
        background: var(--docs-primary-dark);
    }

.docs-button-secondary {
    color: var(--docs-heading);
    border-color: var(--docs-border);
    background: #ffffff;
}

    .docs-button-secondary:hover {
        color: var(--docs-primary);
        border-color: rgba(91, 92, 226, 0.38);
    }

/* =====================================================
   DOCUMENT SECTIONS
   ===================================================== */

.docs-section {
    margin-bottom: 72px;
}

.docs-section-header {
    margin-bottom: 26px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--docs-border);
}

.docs-section-label {
    display: block;
    margin-bottom: 8px;
    color: var(--docs-primary);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.docs-section h2 {
    margin: 0;
    font-size: clamp(27px, 4vw, 37px);
    font-weight: 740;
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.docs-section-lead {
    max-width: 800px;
    margin: 13px 0 0;
    color: var(--docs-text);
    font-size: 16px;
    line-height: 1.8;
}

.docs-subsection {
    margin-top: 40px;
}

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

    .docs-subsection h3 {
        margin: 0 0 12px;
        font-size: 22px;
        font-weight: 710;
        letter-spacing: -0.02em;
    }

    .docs-subsection h4 {
        margin: 25px 0 9px;
        font-size: 16px;
        font-weight: 700;
    }

    .docs-subsection p {
        margin: 0 0 15px;
        color: var(--docs-text);
    }

.docs-list {
    margin: 15px 0;
    padding-left: 23px;
    color: var(--docs-text);
}

    .docs-list li {
        margin-bottom: 9px;
        padding-left: 5px;
    }

.docs-number-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
    counter-reset: docs-step;
}

    .docs-number-list li {
        position: relative;
        min-height: 38px;
        padding: 7px 0 7px 50px;
        color: var(--docs-text);
        counter-increment: docs-step;
    }

        .docs-number-list li::before {
            content: counter(docs-step);
            position: absolute;
            top: 0;
            left: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 10px;
            color: var(--docs-primary);
            background: var(--docs-primary-soft);
            font-size: 12px;
            font-weight: 750;
        }

/* =====================================================
   CARDS
   ===================================================== */

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

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

.docs-card {
    padding: 23px;
    border: 1px solid var(--docs-border);
    border-radius: 14px;
    background: var(--docs-surface);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

    .docs-card:hover {
        transform: translateY(-3px);
        border-color: rgba(91, 92, 226, 0.3);
        box-shadow: 0 14px 30px rgba(24, 30, 65, 0.07);
    }

.docs-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 12px;
    color: var(--docs-primary);
    background: var(--docs-primary-soft);
    font-size: 18px;
}

.docs-card h3,
.docs-card h4 {
    margin: 0 0 9px;
    color: var(--docs-heading);
    font-size: 16px;
}

.docs-card p {
    margin: 0;
    color: var(--docs-text);
    font-size: 13px;
    line-height: 1.7;
}

.docs-role-card {
    position: relative;
    min-height: 210px;
}

.docs-role-tag {
    position: absolute;
    top: 17px;
    right: 17px;
    padding: 4px 8px;
    border-radius: 20px;
    color: var(--docs-primary);
    background: var(--docs-primary-soft);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* =====================================================
   CALLOUTS
   ===================================================== */

.docs-callout {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    margin: 22px 0;
    padding: 18px;
    border: 1px solid var(--docs-border);
    border-radius: 12px;
    background: var(--docs-surface);
}

.docs-callout-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-weight: 800;
}

.docs-callout-content strong {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
}

.docs-callout-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
}

.docs-callout-info {
    border-color: #d9e9ff;
    background: var(--docs-info-soft);
}

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

.docs-callout-warning {
    border-color: #f7dfaa;
    background: var(--docs-warning-soft);
}

    .docs-callout-warning .docs-callout-icon {
        color: var(--docs-warning);
        background: #ffffff;
    }

.docs-callout-success {
    border-color: #ccece6;
    background: var(--docs-success-soft);
}

    .docs-callout-success .docs-callout-icon {
        color: var(--docs-success);
        background: #ffffff;
    }

/* =====================================================
   TABLES
   ===================================================== */

.docs-table-wrapper {
    margin: 22px 0;
    overflow-x: auto;
    border: 1px solid var(--docs-border);
    border-radius: 12px;
    background: var(--docs-surface);
}

.docs-table {
    width: 100%;
    min-width: 650px;
    border-collapse: collapse;
}

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

    .docs-table th {
        color: var(--docs-heading);
        background: var(--docs-background);
        font-size: 11px;
        font-weight: 750;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .docs-table td {
        color: var(--docs-text);
        font-size: 13px;
    }

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

    .docs-table code {
        padding: 3px 6px;
        border-radius: 5px;
        color: var(--docs-primary);
        background: var(--docs-primary-soft);
        font-size: 11px;
    }

/* =====================================================
   CODE BLOCK
   ===================================================== */

.docs-code-block {
    position: relative;
    margin: 22px 0;
    overflow: hidden;
    border-radius: 13px;
    background: var(--docs-code);
    box-shadow: 0 14px 30px rgba(23, 25, 39, 0.14);
}

.docs-code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-height: 45px;
    padding: 0 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.docs-code-language {
    color: #999fb2;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.docs-copy-button {
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 6px;
    color: #d9dbe5;
    background: rgba(255, 255, 255, 0.05);
    font-size: 10px;
    font-weight: 650;
    cursor: pointer;
}

    .docs-copy-button:hover {
        background: rgba(255, 255, 255, 0.1);
    }

.docs-code-block pre {
    margin: 0;
    overflow-x: auto;
    padding: 20px;
    color: var(--docs-code-text);
    font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
    font-size: 12px;
    line-height: 1.75;
    tab-size: 4;
}

/* =====================================================
   PROCESS FLOW
   ===================================================== */

.docs-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;
    margin: 25px 0;
}

.docs-process-step {
    position: relative;
    padding: 20px;
    border: 1px solid var(--docs-border);
    border-radius: 13px;
    background: var(--docs-surface);
}

    .docs-process-step:not(:last-child)::after {
        content: "→";
        position: absolute;
        z-index: 2;
        top: 50%;
        right: -12px;
        color: var(--docs-primary);
        font-weight: 800;
        transform: translateY(-50%);
    }

.docs-process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    margin-bottom: 14px;
    border-radius: 9px;
    color: #ffffff;
    background: var(--docs-primary);
    font-size: 11px;
    font-weight: 750;
}

.docs-process-step strong {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
}

.docs-process-step p {
    margin: 0;
    color: var(--docs-text);
    font-size: 11px;
    line-height: 1.6;
}

/* =====================================================
   FAQ
   ===================================================== */

.docs-faq-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 22px;
}

.docs-faq-item {
    overflow: hidden;
    border: 1px solid var(--docs-border);
    border-radius: 12px;
    background: var(--docs-surface);
}

.docs-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 18px 20px;
    border: 0;
    color: var(--docs-heading);
    background: transparent;
    font-size: 14px;
    font-weight: 680;
    text-align: left;
    cursor: pointer;
}

.docs-faq-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    flex: 0 0 auto;
    border-radius: 8px;
    color: var(--docs-primary);
    background: var(--docs-primary-soft);
    transition: transform 0.2s ease;
}

.docs-faq-item.open .docs-faq-toggle {
    transform: rotate(45deg);
}

.docs-faq-answer {
    display: none;
    padding: 0 20px 19px;
}

.docs-faq-item.open .docs-faq-answer {
    display: block;
}

.docs-faq-answer p {
    margin: 0;
    color: var(--docs-text);
    font-size: 13px;
    line-height: 1.75;
}

/* =====================================================
   SUPPORT
   ===================================================== */

.docs-support-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
    gap: 45px;
    align-items: center;
    padding: 40px;
    overflow: hidden;
    border-radius: 18px;
    color: #ffffff;
    background: radial-gradient( circle at 90% 10%, rgba(255, 255, 255, 0.14), transparent 30% ), linear-gradient( 135deg, #5758db, #4142bc );
}

    .docs-support-card::before {
        content: "";
        position: absolute;
        right: -100px;
        bottom: -220px;
        width: 400px;
        height: 400px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

.docs-support-content,
.docs-support-links {
    position: relative;
    z-index: 1;
}

    .docs-support-content h2 {
        margin: 0;
        color: #ffffff;
        font-size: 31px;
    }

    .docs-support-content p {
        max-width: 570px;
        margin: 14px 0 0;
        color: rgba(255, 255, 255, 0.74);
        font-size: 14px;
    }

.docs-support-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.docs-support-link {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: background 0.2s ease;
}

    .docs-support-link:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.15);
    }

.docs-support-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    flex: 0 0 auto;
    border-radius: 8px;
    color: var(--docs-primary);
    background: #ffffff;
    font-weight: 800;
}

.docs-support-link div {
    min-width: 0;
}

.docs-support-link span,
.docs-support-link strong {
    display: block;
}

.docs-support-link span {
    color: rgba(255, 255, 255, 0.67);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.docs-support-link strong {
    margin-top: 2px;
    font-size: 12px;
    overflow-wrap: anywhere;
}

/* =====================================================
   FOOTER
   ===================================================== */

.docs-footer {
    margin-top: 70px;
    padding-top: 25px;
    border-top: 1px solid var(--docs-border);
    color: var(--docs-muted);
    font-size: 11px;
    text-align: center;
}

    .docs-footer a {
        color: var(--docs-primary);
        font-weight: 650;
        text-decoration: none;
    }

/* =====================================================
   SEARCH
   ===================================================== */

.docs-search-empty {
    display: none;
    margin: 40px 0;
    padding: 35px;
    border: 1px dashed var(--docs-border);
    border-radius: 14px;
    color: var(--docs-text);
    background: var(--docs-surface);
    text-align: center;
}

    .docs-search-empty strong {
        display: block;
        margin-bottom: 7px;
        color: var(--docs-heading);
        font-size: 17px;
    }

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

.docs-highlight {
    padding: 0 2px;
    border-radius: 3px;
    color: inherit;
    background: #fff0a6;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1180px) {
    .docs-header-link {
        display: none;
    }

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

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

    .docs-process-step:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 900px) {
    :root {
        --docs-sidebar-width: 285px;
    }

    .docs-header-inner {
        padding: 0 17px;
    }

    .docs-brand-text span {
        display: none;
    }

    .docs-header-search {
        margin-left: auto;
    }

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

    .docs-layout {
        display: block;
    }

    .docs-sidebar {
        transform: translateX(-105%);
        transition: transform 0.25s ease;
        box-shadow: 20px 0 45px rgba(24, 30, 65, 0.13);
    }

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

    .docs-main {
        width: 100%;
    }

    .docs-overlay {
        position: fixed;
        z-index: 850;
        top: var(--docs-header-height);
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(17, 19, 31, 0.42);
    }

    body.docs-menu-open .docs-overlay {
        display: block;
    }

    .docs-content {
        width: min(100% - 34px, 980px);
        padding-top: 35px;
    }

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

@media (max-width: 680px) {
    .docs-header-inner {
        gap: 11px;
    }

    .docs-brand-text {
        display: none;
    }

    .docs-header-search {
        width: auto;
        flex: 1;
    }

    .docs-search-shortcut {
        display: none;
    }

    .docs-search-input {
        padding-right: 13px;
    }

    .docs-hero {
        padding: 32px 24px;
    }

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

    .docs-hero-description {
        font-size: 15px;
    }

    .docs-card-grid,
    .docs-card-grid.docs-card-grid-two,
    .docs-process {
        grid-template-columns: 1fr;
    }

    .docs-process-step::after {
        display: none;
    }

    .docs-support-card {
        padding: 30px 23px;
    }

    .docs-section {
        margin-bottom: 58px;
    }

    .docs-content {
        width: min(100% - 25px, 980px);
    }
}

@media (max-width: 480px) {
    .docs-header-inner {
        padding: 0 12px;
    }

    .docs-brand-mark {
        width: 38px;
        height: 38px;
    }

    .docs-menu-button {
        width: 38px;
        height: 38px;
    }

    .docs-search-input {
        height: 40px;
        padding-left: 38px;
        font-size: 13px;
    }

    .docs-header-search-icon {
        left: 13px;
    }

    .docs-hero {
        padding: 28px 20px;
    }

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

    .docs-hero-actions {
        flex-direction: column;
    }

    .docs-button {
        width: 100%;
    }

    .docs-support-card {
        padding: 26px 20px;
    }
}

@media print {
    .docs-header,
    .docs-sidebar,
    .docs-overlay,
    .docs-hero-actions,
    .docs-copy-button {
        display: none !important;
    }

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

    .docs-content {
        width: 100%;
        padding: 0;
    }

    .docs-section {
        break-inside: avoid;
    }
}

/* Fix fixed-header content overlap */
.docs-main {
    min-height: 100vh;
}

.docs-content {
    padding-top: 90px;
}

.docs-hero {
    margin-top: 0;
}

section[id] {
    scroll-margin-top: 95px;
}

.docs-brand-logo {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain;
}