.docs-layout{
    display:grid;
    grid-template-columns:260px 1fr;
    min-height:calc(100vh - 80px);
}

.docs-sidebar{
    background:#0b0b0b;
    border-right:1px solid rgba(255,255,255,.08);
    padding:40px 24px;
    position:sticky;
    top:80px;
    height:calc(100vh - 80px);
    overflow-y:auto;
}

.docs-sidebar-section{
    margin-bottom:36px;
}

.docs-sidebar-title{
    color:#ff7a1a;
    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:16px;
}

.docs-sidebar-link{
    display:block;
    padding:10px 14px;
    margin-bottom:6px;
    color:#cfcfcf;
    text-decoration:none;
    border-radius:8px;
}

.docs-sidebar-link:hover{
    background:rgba(255,122,26,.10);
    color:#fff;
}

.docs-sidebar-link.active{
    background:#ff7a1a;
    color:#000;
    font-weight:700;
}

.docs-content{
    padding:60px;
    max-width:960px;
}

.docs-page{
    max-width:900px;
}

.docs-header{
    margin-bottom:48px;
}

.docs-eyebrow{
    color:#f97316;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:12px;
}

.docs-header h1{
    font-size:52px;
    line-height:1.08;
    margin:0 0 18px;
    color:#ffffff;
}

.docs-lead{
    font-size:18px;
    line-height:1.7;
    color:var(--color-text-secondary);
    max-width:760px;
}

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

.docs-section h2{
    font-size:30px;
    margin-bottom:22px;
    color:#ffffff;
}

.docs-section h3{
    font-size:18px;
    margin:0 0 8px;
    color:#ffffff;
}

.docs-section p{
    font-size:16px;
    line-height:1.75;
    color:var(--color-text-secondary);
    margin:0 0 16px;
}

.docs-steps{
    display:grid;
    gap:24px;
}

.docs-step{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:28px;
    background:#0f172a;
    border:1px solid rgba(59,130,246,.35);
    border-radius:20px;
    transition:.2s ease;
}

.docs-step:hover{
    border-color:#f97316;
    transform:translateY(-2px);
}

.docs-step-number{
    flex:0 0 42px;
    width:42px;
    height:42px;
    border-radius:50%;
    background:#f97316;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:800;
}

.docs-code{
    margin-top:20px;
    padding:28px;
    background:#0f172a;
    border:1px solid rgba(59,130,246,.35);
    border-radius:20px;
    overflow-x:auto;
    box-shadow:0 10px 30px rgba(0,0,0,.35);
    font-size:14px;
    line-height:1.8;
}

.docs-code code{
    font-family:Consolas, Monaco, "Courier New", monospace;
    color:#f8fafc;
}

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

.docs-card{
    padding:22px;
    border:1px solid rgba(255,255,255,.10);
    border-radius:18px;
    background:#111111;
}

.docs-list{
    padding-left:22px;
    color:var(--color-text-secondary);
    line-height:1.8;
}

.docs-next{
    padding:28px;
    border-radius:22px;
    background:rgba(249,115,22,.08);
    border:1px solid rgba(249,115,22,.35);
}

.docs-button{
    display:inline-flex;
    margin-top:10px;
    padding:12px 18px;
    border-radius:999px;
    background:#f97316;
    color:#000;
    text-decoration:none;
    font-weight:800;
}

.docs-button:hover{
    background:#ea580c;
}

@media (max-width: 768px) {
    .docs-page {
        padding: 32px 22px 64px;
    }

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

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

    .docs-step {
        padding: 18px;
    }
}                                                                                      .docs-page {
    color: #f8fafc;
}

.docs-header h1,
.docs-section h2,
.docs-section h3 {
    color: #f8fafc;
}

.docs-lead,
.docs-section p,
.docs-list {
    color: #cbd5e1;
}

.docs-step,
.docs-card {
    background: #111827;
    border-color: #1f2937;
}

.docs-step h3,
.docs-card h3 {
    color: #ffffff;
}

.docs-step p,
.docs-card p {
    color: #cbd5e1;
}

.docs-code {
    background: #111827;
    color: #f8fafc;
    border: 1px solid #1f2937;
}

.docs-next {
    background: #111827;
    border-color: #f97316;
}

.docs-next h2 {
    color: #ffffff;
}

.docs-next p {
    color: #cbd5e1;
}                                                                                     .auth-page {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 96px 24px 80px;
}

.auth-card {
    width: 100%;
    max-width: 460px;
    padding: 36px;
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 22px;
}

.auth-card h1 {
    margin: 0 0 14px;
    color: #f8fafc;
    font-size: 40px;
    line-height: 1.15;
}

.auth-lead {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 28px;
}

.auth-form {
    display: grid;
    gap: 18px;
}

.auth-field {
    display: grid;
    gap: 8px;
}

.auth-field label {
    color: #f8fafc;
    font-size: 14px;
    font-weight: 600;
}

.auth-field input {
    width: 100%;
    padding: 13px 14px;
    border-radius: 12px;
    border: 1px solid #374151;
    background: #020617;
    color: #f8fafc;
    font-size: 15px;
}

.auth-field input::placeholder {
    color: #64748b;
}

.auth-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    font-size: 14px;
}

.auth-row a,
.auth-footer a {
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
}

.auth-checkbox {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #cbd5e1;
}

.auth-button {
    margin-top: 4px;
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 13px 18px;
    background: #f97316;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.auth-button:hover {
    background: #ea580c;
}

.auth-note {
    margin-top: 26px;
    padding: 18px;
    border-radius: 16px;
    background: #020617;
    border: 1px solid #1f2937;
}

.auth-note h3 {
    color: #f8fafc;
    font-size: 16px;
    margin: 0 0 8px;
}

.auth-note p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.auth-footer {
    margin-top: 24px;
    color: #cbd5e1;
    text-align: center;
}                                                                                      .auth-checkbox a {
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
}

.auth-checkbox a:hover {
    text-decoration: underline;
}                                                                                      .site-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    padding: 48px 0;
    border-top: 1px solid var(--color-border);
}

.footer-brand {
    max-width: 420px;
}

.footer-brand h3 {
    margin: 0 0 12px;
}

.footer-brand p {
    margin: 0;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h4 {
    margin: 0 0 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #f97316;
}

.footer-column a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
}

.footer-column a:hover {
    color: #f97316;
}

@media (max-width: 900px) {

    .site-footer {
        flex-direction: column;
        gap: 36px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 32px;
    }

}                                                                                    .docs-content .guides-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
    margin-top: 36px;
}

.docs-content .guide-card {
    display: flex !important;
    flex-direction: column !important;
    min-height: 270px;
    padding: 26px;
    background: linear-gradient(145deg, #0b1324, #07101f);
    border: 1px solid #263c68;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: .25s ease;
}

.docs-content .guide-card:hover {
    transform: translateY(-4px);
    border-color: #6b7cff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
}

.docs-content .guide-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: rgba(99, 102, 241, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: .25s;
}

.docs-content .guide-card:hover .guide-icon {
    transform: scale(1.08);
}

.docs-content .guide-card h3 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.docs-content .guide-card p {
    margin: 0;
    color: #b8bfd1;
    line-height: 1.65;
    font-size: 16px;
}

.docs-content .guide-link {
    margin-top: auto;
    padding-top: 26px;
    color: #6b7cff;
    font-weight: 800;
}

.docs-content .docs-back-link {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--color-orange);
    text-decoration: none;
    font-weight: 800;
}

.docs-content .docs-back-link:hover {
    text-decoration: underline;
}

.docs-content .guide-steps {
    display: grid;
    gap: 18px;
    margin: 36px 0 42px;
}

.docs-content .guide-step {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: #0d1425;
    border: 1px solid #263c68;
    border-radius: 14px;
}

.docs-content .guide-step span {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 999px;
    background: var(--color-orange);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.docs-content .guide-step h3 {
    margin: 0 0 8px;
}

.docs-content .guide-step p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.6;
}

.docs-content .docs-next-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--color-orange);
    text-decoration: none;
    font-weight: 800;
}

.docs-content .docs-next-link:hover {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .docs-content .guides-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 700px) {
    .docs-content .guides-grid {
        grid-template-columns: 1fr !important;
    }
}                                                                                  /* ==========================================================
   API REFERENCE
========================================================== */

.api-reference-header{
    margin-bottom:40px;
}

.api-reference-header h1{
    margin-bottom:16px;
}

.api-reference-header .docs-lead{
    max-width:760px;
}

.api-reference-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:28px;
    margin-top:40px;
}

.api-card{
    display:flex;
    flex-direction:column;
    justify-content:space-between;

    padding:32px;
    min-height:220px;

    background:#0f172a;
    border:1px solid #1d4ed8;
    border-radius:18px;

    text-decoration:none;
    transition:.25s ease;
}

.api-card:hover{
    transform:translateY(-4px);
    border-color:#3b82f6;
    box-shadow:0 14px 40px rgba(30,64,175,.20);
}

.api-card h3{
    margin-bottom:14px;
    color:#ffffff;
    font-size:28px;
}

.api-card p{
    color:var(--color-text-secondary);
    line-height:1.7;
}

.api-card span{
    margin-top:28px;
    font-weight:700;
    color:#60a5fa;
}                                                                                      .usage-simulate-actions {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.usage-simulate-actions button {
    border: 0;
    border-radius: 12px;
    padding: 11px 15px;
    background: #f97316;
    color: #050505;
    font-weight: 800;
    cursor: pointer;
}

.usage-simulate-actions button:hover {
    opacity: .9;
}                                                                                                                                                            