/* ============================================================
   public-docs.css
   Split out of public.css for maintainability.
   Aggregated via @import in public.css.
   ============================================================ */

/* ============================================================
   public/docs.html
   ============================================================ */

        :root {
            --sky: #0284c7;
            --sky-l: #0ea5e9;
            --cyan: #0891b2;
            --teal: #0d9488;
            --emerald: #059669;
            --amber: #d97706;
            --rose: #e11d48;
            --slate: #475569;
            --bg: #ffffff;
            --bg-alt: #f0f9ff;
            --border: rgba(0, 0, 0, 0.08);
            --text-1: #0f172a;
            --text-2: #334155;
            --text-3: #94a3b8;
            --sky-d:  #0369a1;
        }

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

        body {
            margin: 0;
            padding: 0;
            background: var(--bg);
            color: var(--text-1);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
        }

        /* Nav styles live in public-nav.css; do not duplicate here. */

        /* ------------------------------------------------------------------ */
        /* Hero (light / white background)                                    */
        /* ------------------------------------------------------------------ */
        .docs-hero {
            position: relative;
            background: var(--bg);
            padding: 80px 2rem 80px;
            text-align: center;
            overflow: hidden;
            border-bottom: 1px solid var(--border);
        }

        /* Aurora orbs */
        .docs-hero__orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(72px);
        }

        .docs-hero__orb--a {
            width: 560px;
            height: 560px;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, transparent 65%);
            top: -180px;
            left: 10%;
            animation: float-orb 10s ease-in-out infinite;
        }

        .docs-hero__orb--b {
            width: 480px;
            height: 480px;
            background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 65%);
            top: -120px;
            right: 8%;
            animation: float-orb-b 13s ease-in-out infinite;
        }

        .docs-hero__orb--c {
            width: 360px;
            height: 360px;
            background: radial-gradient(circle, rgba(5, 150, 105, 0.12) 0%, transparent 65%);
            bottom: -80px;
            left: 50%;
            transform: translateX(-50%);
            animation: float-orb 16s ease-in-out infinite reverse;
        }

        @keyframes float-orb {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33%       { transform: translate(30px, -20px) scale(1.05); }
            66%       { transform: translate(-20px, 15px) scale(0.97); }
        }

        @keyframes float-orb-b {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33%       { transform: translate(-25px, 20px) scale(1.04); }
            66%       { transform: translate(20px, -15px) scale(0.98); }
        }

        .docs-hero__container {
            position: relative;
            max-width: 700px;
            margin: 0 auto;
            z-index: 1;
        }

        .docs-hero__eyebrow {
            display: inline-block;
            padding: 0.3rem 0.9rem;
            border-radius: 99px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            background: rgba(2, 132, 199, 0.1);
            color: var(--sky);
            border: 1px solid rgba(2, 132, 199, 0.2);
            margin-bottom: 1.25rem;
        }

        .docs-hero__title {
            font-size: 3rem;
            font-weight: 800;
            margin: 0 0 1.25rem 0;
            letter-spacing: -0.03em;
            line-height: 1.1;
            background: linear-gradient(135deg, var(--text-1) 0%, var(--sky) 60%, var(--teal) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .docs-hero__subtitle {
            font-size: 1.125rem;
            font-weight: 400;
            color: var(--color-text-secondary);
            margin: 0 auto;
            line-height: 1.7;
            max-width: 580px;
        }

        /* ------------------------------------------------------------------ */
        /* Docs layout: sidebar + content                                      */
        /* ------------------------------------------------------------------ */
        .docs-body {
            background: var(--bg-alt);
            min-height: calc(100vh - 400px);
        }

        .docs-layout {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2.5rem 2rem;
            display: flex;
            gap: 2rem;
            align-items: flex-start;
        }

        /* ------------------------------------------------------------------ */
        /* Sidebar TOC                                                         */
        /* ------------------------------------------------------------------ */
        .docs-sidebar {
            width: 268px;
            flex-shrink: 0;
            padding-bottom: 2rem;
            /* The list is ~2500px of links against a page tens of thousands of
               pixels long. Left static it scrolled away after the first article,
               so choosing a second section meant scrolling all the way back to
               the top. Pin it and let it scroll within itself instead.
               .docs-layout is align-items: flex-start, which sticky needs. */
            position: sticky;
            top: 76px;
            max-height: calc(100vh - 92px);
            overflow-y: auto;
            overscroll-behavior: contain;
            scrollbar-width: thin;
        }

        /* Keep the rail unobtrusive until the pointer is over it. */
        .docs-sidebar::-webkit-scrollbar {
            width: 8px;
        }

        .docs-sidebar::-webkit-scrollbar-thumb {
            background: transparent;
            border-radius: 4px;
        }

        .docs-sidebar:hover::-webkit-scrollbar-thumb {
            background: #cbd5e1;
        }

        .docs-sidebar__group {
            margin-bottom: 1rem;
        }

        .docs-sidebar__pillar {
            display: inline-flex;
            align-items: center;
            padding: 0.2rem 0.6rem;
            border-radius: 99px;
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin: 0 0 0.5rem 0.375rem;
        }

        /* Pillar pill colors */
        .docs-sidebar__group--pam .docs-sidebar__pillar {
            background: rgba(14, 165, 233, 0.10);
            color: var(--sky-l);
        }

        .docs-sidebar__group--iam .docs-sidebar__pillar {
            background: rgba(5, 150, 105, 0.10);
            color: var(--emerald);
        }

        .docs-sidebar__group--iga .docs-sidebar__pillar {
            background: rgba(13, 148, 136, 0.10);
            color: var(--teal);
        }

        .docs-sidebar__group--compliance .docs-sidebar__pillar {
            background: rgba(217, 119, 6, 0.10);
            color: var(--amber);
        }

        .docs-sidebar__group--secops .docs-sidebar__pillar {
            background: rgba(225, 29, 72, 0.10);
            color: var(--rose);
        }

        .docs-sidebar__group--platform .docs-sidebar__pillar {
            background: rgba(71, 85, 105, 0.10);
            color: var(--slate);
        }

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

        .docs-sidebar__item {
            margin: 0;
            padding: 0;
        }

        .docs-sidebar__link {
            display: block;
            padding: 0.3125rem 0.625rem 0.3125rem 0.75rem;
            font-size: 0.8125rem;
            color: var(--color-text-secondary);
            text-decoration: none;
            border-left: 2px solid transparent;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            transition: color 0.15s, background 0.15s, border-color 0.15s;
        }

        .docs-sidebar__link:hover {
            color: var(--text-1);
            background: #e2e8f0;
        }

        .docs-sidebar__link.is-active {
            color: var(--text-1);
            font-weight: 600;
        }

        /* Pillar group container border */
        .docs-sidebar__group--pam .docs-sidebar__items {
            border-left: 2px solid var(--sky-l);
        }

        .docs-sidebar__group--iam .docs-sidebar__items {
            border-left: 2px solid var(--emerald);
        }

        .docs-sidebar__group--iga .docs-sidebar__items {
            border-left: 2px solid var(--teal);
        }

        .docs-sidebar__group--compliance .docs-sidebar__items {
            border-left: 2px solid var(--amber);
        }

        .docs-sidebar__group--secops .docs-sidebar__items {
            border-left: 2px solid var(--rose);
        }

        .docs-sidebar__group--platform .docs-sidebar__items {
            border-left: 2px solid var(--slate);
        }

        /* Active link background + pillar-colored left border */
        .docs-sidebar__group--pam .docs-sidebar__link.is-active {
            border-left-color: var(--sky-l);
            background: rgba(14, 165, 233, 0.07);
        }

        .docs-sidebar__group--iam .docs-sidebar__link.is-active {
            border-left-color: var(--emerald);
            background: rgba(5, 150, 105, 0.07);
        }

        .docs-sidebar__group--iga .docs-sidebar__link.is-active {
            border-left-color: var(--teal);
            background: rgba(13, 148, 136, 0.07);
        }

        .docs-sidebar__group--compliance .docs-sidebar__link.is-active {
            border-left-color: var(--amber);
            background: rgba(217, 119, 6, 0.07);
        }

        .docs-sidebar__group--secops .docs-sidebar__link.is-active {
            border-left-color: var(--rose);
            background: rgba(225, 29, 72, 0.07);
        }

        .docs-sidebar__group--platform .docs-sidebar__link.is-active {
            border-left-color: var(--slate);
            background: rgba(71, 85, 105, 0.07);
        }

        /* ------------------------------------------------------------------ */
        /* Content area                                                        */
        /* ------------------------------------------------------------------ */
        .docs-content {
            flex: 1;
            min-width: 0;
        }

        /* ------------------------------------------------------------------ */
        /* Article blocks                                                      */
        /* ------------------------------------------------------------------ */
        .docs-article {
            background: var(--bg);
            border: 1px solid #e2e8f0;
            border-radius: var(--radius-lg);
            padding: 2rem 2.25rem;
            margin-bottom: 1.75rem;
            scroll-margin-top: 80px;
        }

        .docs-article__header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.25rem;
        }

        .docs-badge {
            display: inline-block;
            padding: 0.25rem 0.6875rem;
            border-radius: 99px;
            font-size: 0.6875rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            flex-shrink: 0;
        }

        .docs-badge--pam {
            background: rgba(14, 165, 233, 0.10);
            color: var(--sky);
        }

        .docs-badge--iam {
            background: rgba(5, 150, 105, 0.10);
            color: var(--emerald);
        }

        .docs-badge--iga {
            background: rgba(13, 148, 136, 0.10);
            color: var(--teal);
        }

        .docs-badge--compliance {
            background: rgba(217, 119, 6, 0.10);
            color: var(--amber);
        }

        .docs-badge--secops {
            background: rgba(225, 29, 72, 0.10);
            color: var(--rose);
        }

        .docs-badge--platform {
            background: rgba(71, 85, 105, 0.10);
            color: var(--slate);
        }

        .docs-article__title {
            font-size: 1.375rem;
            font-weight: 700;
            color: var(--text-1);
            margin: 0;
            letter-spacing: -0.02em;
        }

        .docs-article p {
            font-size: 0.9375rem;
            color: var(--slate);
            line-height: 1.75;
            margin: 0 0 1rem 0;
        }

        .docs-article p:last-of-type {
            margin-bottom: 1.5rem;
        }

        /* Media placeholder (div) */
        div.docs-media {
            background: var(--color-bg-secondary);
            border: 2px dashed #cbd5e1;
            border-radius: 12px;
            aspect-ratio: 16 / 9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-text-muted);
            font-size: 0.875rem;
            margin-bottom: 1.75rem;
        }

        /* Screenshot images */
        img.docs-media {
            border-radius: 12px;
            margin-bottom: 1.75rem;
            max-width: 100%;
            width: 100%;
            height: auto;
            display: block;
            border: 1px solid #e2e8f0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

        /* Config section */
        .docs-config-heading {
            font-size: 0.8125rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--color-text-secondary);
            margin: 0 0 0.625rem 0;
        }

        .docs-config-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.375rem;
        }

        .docs-config-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: var(--slate);
        }

        .docs-config-list li::before {
            content: '';
            display: block;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--color-text-muted);
            margin-top: 0.45rem;
            flex-shrink: 0;
        }

        /* ------------------------------------------------------------------ */
        /* Modern SDK/CLI/Agent doc components                                 */
        /* ------------------------------------------------------------------ */

        /* In-article tab switcher (pure CSS, radio inputs) */
        .dt-input { display: none; }
        .dt-bar {
            display: flex;
            gap: 0;
            border: 1px solid var(--border);
            border-radius: 8px;
            background: var(--bg-alt);
            padding: 3px;
            margin: 1.25rem 0 0;
            width: fit-content;
            max-width: 100%;
            flex-wrap: wrap;
        }
        .dt-label {
            padding: 0.375rem 1rem;
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--text-3);
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all 0.15s;
            white-space: nowrap;
            user-select: none;
        }
        .dt-label:hover { color: var(--text-1); }
        .dt-panel { display: none; margin-top: 1rem; }

        /* Active tab + visible panel, matched by position rather than by id.
           The template emits the inputs, the .dt-bar labels, and the .dt-panels
           panels in the same order, so the Nth input drives the Nth label and
           the Nth panel. Adding a tab needs no CSS change (up to 8 per group). */
        .dt-input:nth-of-type(1):checked ~ .dt-bar .dt-label:nth-child(1),
        .dt-input:nth-of-type(2):checked ~ .dt-bar .dt-label:nth-child(2),
        .dt-input:nth-of-type(3):checked ~ .dt-bar .dt-label:nth-child(3),
        .dt-input:nth-of-type(4):checked ~ .dt-bar .dt-label:nth-child(4),
        .dt-input:nth-of-type(5):checked ~ .dt-bar .dt-label:nth-child(5),
        .dt-input:nth-of-type(6):checked ~ .dt-bar .dt-label:nth-child(6),
        .dt-input:nth-of-type(7):checked ~ .dt-bar .dt-label:nth-child(7),
        .dt-input:nth-of-type(8):checked ~ .dt-bar .dt-label:nth-child(8) {
            background: #fff;
            color: var(--text-1);
            box-shadow: 0 1px 3px rgba(0,0,0,0.10);
        }
        .dt-input:nth-of-type(1):checked ~ .dt-panels .dt-panel:nth-child(1),
        .dt-input:nth-of-type(2):checked ~ .dt-panels .dt-panel:nth-child(2),
        .dt-input:nth-of-type(3):checked ~ .dt-panels .dt-panel:nth-child(3),
        .dt-input:nth-of-type(4):checked ~ .dt-panels .dt-panel:nth-child(4),
        .dt-input:nth-of-type(5):checked ~ .dt-panels .dt-panel:nth-child(5),
        .dt-input:nth-of-type(6):checked ~ .dt-panels .dt-panel:nth-child(6),
        .dt-input:nth-of-type(7):checked ~ .dt-panels .dt-panel:nth-child(7),
        .dt-input:nth-of-type(8):checked ~ .dt-panels .dt-panel:nth-child(8) { display: block; }

        /* Dark code block */
        .docs-code {
            background: var(--color-text);
            border-radius: 8px;
            padding: 1rem 1.25rem;
            font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
            font-size: 0.8125rem;
            line-height: 1.65;
            overflow-x: auto;
            color: #e2e8f0;
            margin: 0.75rem 0 0;
        }
        .docs-code .kw { color: #93c5fd; }
        .docs-code .fn { color: #86efac; }
        .docs-code .str { color: #fde68a; }
        .docs-code .ty { color: #c4b5fd; }
        .docs-code .op { color: var(--color-text-muted); }
        .docs-code .attr { color: #f9a8d4; }
        .docs-code .num { color: #fb923c; }
        .docs-code .cm { color: var(--color-text-secondary); font-style: italic; }

        /* Step card row */
        .docs-steps {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin: 1.25rem 0;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            overflow: hidden;
        }
        .docs-step {
            display: flex;
            gap: 1rem;
            padding: 1rem 1.25rem;
            border-bottom: 1px solid var(--border);
            background: var(--bg);
        }
        .docs-step:last-child { border-bottom: none; }
        .docs-step__num {
            flex-shrink: 0;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--sky);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 0.1rem;
        }
        .docs-step__body { flex: 1; min-width: 0; }
        .docs-step__title {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-1);
            margin-bottom: 0.25rem;
        }
        .docs-step__desc {
            font-size: 0.8125rem;
            color: var(--text-2);
            line-height: 1.55;
        }
        .docs-step__desc code {
            font-family: 'SF Mono', Consolas, monospace;
            font-size: 0.775rem;
            background: rgba(0,0,0,0.05);
            padding: 0.1em 0.35em;
            border-radius: 4px;
        }

        /* Callout / info box */
        .docs-callout {
            display: flex;
            gap: 0.75rem;
            padding: 0.875rem 1rem;
            border-radius: 8px;
            font-size: 0.8375rem;
            line-height: 1.55;
            margin: 1.25rem 0;
        }
        .docs-callout--info {
            background: rgba(2,132,199,0.06);
            border: 1px solid rgba(2,132,199,0.18);
            color: #0c4a6e;
        }
        .docs-callout--warn {
            background: rgba(217,119,6,0.06);
            border: 1px solid rgba(217,119,6,0.20);
            color: #78350f;
        }
        .docs-callout svg { flex-shrink: 0; margin-top: 0.05rem; }
        .docs-callout code {
            font-family: 'SF Mono', Consolas, monospace;
            font-size: 0.775rem;
            background: rgba(0,0,0,0.07);
            padding: 0.1em 0.35em;
            border-radius: 4px;
        }

        /* Command reference table */
        .docs-cmd-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.8125rem;
            margin: 1rem 0 0;
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
        }
        .docs-cmd-table th {
            background: var(--bg-alt);
            font-weight: 600;
            text-align: left;
            padding: 0.625rem 1rem;
            color: var(--text-1);
            border-bottom: 1px solid var(--border);
        }
        .docs-cmd-table td {
            padding: 0.625rem 1rem;
            border-bottom: 1px solid var(--border);
            color: var(--text-2);
            vertical-align: top;
        }
        .docs-cmd-table tr:last-child td { border-bottom: none; }
        .docs-cmd-table td:first-child {
            font-family: 'SF Mono', Consolas, monospace;
            font-size: 0.775rem;
            color: var(--text-1);
            white-space: nowrap;
        }

        /* Agent info card */
        .docs-agent-card {
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.25rem;
            margin: 1.25rem 0;
            background: var(--bg);
        }
        .docs-agent-card + .docs-agent-card { margin-top: 1rem; }
        .docs-agent-card__head {
            display: flex;
            align-items: flex-start;
            gap: 0.875rem;
            margin-bottom: 1rem;
        }
        .docs-agent-icon {
            width: 40px;
            height: 40px;
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #fff;
        }
        .docs-agent-icon--transit { background: linear-gradient(135deg, #0284c7, #0891b2); }
        .docs-agent-icon--mcp     { background: linear-gradient(135deg, #7c3aed, #6d28d9); }
        .docs-agent-icon--scan    { background: linear-gradient(135deg, #059669, #0d9488); }
        .docs-agent-icon--windows { background: linear-gradient(135deg, #b45309, #d97706); }
        .docs-agent-icon svg { width: 20px; height: 20px; }

        /* Inline "no tokens required" badge inside an agent card.
           This element had no rule at all. Its inline SVG carries a viewBox but
           no width or height, so it stretched to the card's full width and
           rendered a 720px shield above the install steps. Sizing the icon is
           what actually fixes it; the rest just makes the badge read as a badge. */
        .docs-agent-card__nhi-note {
            /* flex + fit-content, not inline-flex: as an inline box the code
               label that follows it wrapped onto the same line. */
            display: flex;
            width: fit-content;
            align-items: center;
            gap: 0.4375rem;
            margin-bottom: 1rem;
            padding: 0.3125rem 0.625rem;
            border-radius: 999px;
            background: #ecfdf5;
            color: #047857;
            font-size: 0.8125rem;
            font-weight: 600;
            line-height: 1.4;
        }

        .docs-agent-card__nhi-note svg {
            width: 15px;
            height: 15px;
            flex-shrink: 0;
        }
        .docs-agent-card__title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-1);
        }
        .docs-agent-card__subtitle {
            font-size: 0.8125rem;
            color: var(--text-3);
            margin-top: 0.125rem;
        }

        /* Install method pill toggle */
        .docs-code-label {
            display: inline-block;
            font-size: 0.6875rem;
            font-weight: 700;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            color: var(--text-3);
            margin-bottom: 0.375rem;
            margin-top: 1rem;
        }
        .docs-code-label:first-child { margin-top: 0; }

        /* ------------------------------------------------------------------ */
        /* Footer                                                              */
        /* ------------------------------------------------------------------ */
        .landing-footer {
            background: var(--text-1);
            color: var(--color-text-muted);
            padding: 3rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .landing-footer__container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .landing-footer__content {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .landing-footer__brand {
            font-size: 1.125rem;
            font-weight: 600;
            color: #ffffff;
        }

        .landing-footer__links {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .landing-footer__link {
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 0.9375rem;
            transition: color 0.2s;
        }

        .landing-footer__link:hover {
            color: #e2e8f0;
        }

        /* Mobile nav styles live in public-nav.css; do not duplicate here. */

        /* ------------------------------------------------------------------ */
        /* Responsive -- mobile                                                */
        /* ------------------------------------------------------------------ */
        @media (max-width: 768px) {
            .docs-hero {
                padding: 48px 1.25rem 48px;
                margin-bottom: 0;
                border-bottom: none;
            }

            .docs-body {
                padding-top: 0;
                margin-top: 0;
            }

            .docs-hero__title {
                font-size: 2rem;
            }

            .docs-hero__subtitle {
                font-size: 0.9375rem;
                max-width: 100%;
            }

            /* Sidebar becomes sticky horizontal pill bar below nav */
            .docs-layout {
                flex-direction: column;
                padding: 0;
                gap: 0;
                max-width: 100%;
                width: 100%;
            }

            .docs-sidebar {
                width: 100%;
                position: sticky;
                top: 60px;
                z-index: 900;
                background: var(--bg);
                border-bottom: 1px solid #e2e8f0;
                padding: 0.625rem 1rem;
                overflow-x: auto;
                overflow-y: hidden;
                display: flex;
                gap: 0.375rem;
                flex-wrap: nowrap;
                -webkit-overflow-scrolling: touch;
                align-items: center;
                scrollbar-width: none;
            }

            .docs-sidebar::-webkit-scrollbar {
                display: none;
            }

            .docs-sidebar__group {
                display: flex;
                align-items: center;
                gap: 0.375rem;
                margin: 0;
                flex-shrink: 0;
            }

            .docs-sidebar__pillar {
                display: none;
            }

            .docs-sidebar__items {
                display: flex;
                gap: 0.375rem;
                border-left: none !important;
                padding: 0;
                margin: 0;
            }

            .docs-sidebar__item {
                flex-shrink: 0;
                list-style: none;
            }

            .docs-sidebar__link {
                white-space: nowrap;
                padding: 0.3125rem 0.75rem;
                border: 1px solid #e2e8f0;
                border-left: 1px solid #e2e8f0;
                border-radius: 99px;
                background: #f8fafc;
                font-size: 0.75rem;
            }

            .docs-sidebar__link.is-active {
                background: var(--text-1);
                color: #ffffff;
                border-color: var(--text-1);
            }

            .docs-sidebar__group--pam .docs-sidebar__link.is-active { border-color: var(--sky-l); background: var(--sky-l); }
            .docs-sidebar__group--iam .docs-sidebar__link.is-active { border-color: var(--emerald); background: var(--emerald); }
            .docs-sidebar__group--iga .docs-sidebar__link.is-active { border-color: var(--teal); background: var(--teal); }
            .docs-sidebar__group--compliance .docs-sidebar__link.is-active { border-color: var(--amber); background: var(--amber); }
            .docs-sidebar__group--secops .docs-sidebar__link.is-active { border-color: var(--rose); background: var(--rose); }
            .docs-sidebar__group--platform .docs-sidebar__link.is-active { border-color: var(--slate); background: var(--slate); }

            .docs-content {
                padding: 1rem;
                max-width: 100%;
                box-sizing: border-box;
                overflow-x: hidden;
            }

            .docs-article {
                padding: 1.25rem 1rem;
                border-radius: var(--radius-md);
                max-width: 100%;
                box-sizing: border-box;
                scroll-margin-top: 120px;
            }

            .docs-article p {
                font-size: 0.875rem;
                word-wrap: break-word;
                overflow-wrap: break-word;
            }

            .docs-article__title {
                font-size: 1.125rem;
            }

            .docs-article__header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.375rem;
            }

            img.docs-media {
                max-width: 100%;
                height: auto;
            }

            .docs-code {
                font-size: 0.75rem;
                padding: 0.75rem 1rem;
            }

            .docs-step {
                gap: 0.75rem;
                padding: 0.875rem 1rem;
            }

            .docs-cmd-table {
                display: block;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }

            .docs-cmd-table td:first-child {
                white-space: normal;
                word-break: break-all;
            }

            .dt-bar {
                width: 100%;
            }

            .dt-label {
                padding: 0.3125rem 0.75rem;
                font-size: 0.75rem;
            }

            .docs-callout {
                gap: 0.5rem;
                padding: 0.75rem;
                font-size: 0.8125rem;
            }

            .docs-agent-card__head {
                flex-direction: column;
                gap: 0.5rem;
            }

            .landing-footer__content {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .landing-footer__links {
                flex-direction: column;
                gap: 1rem;
            }
        }
    


/* Footer (.pub-footer) styles live in public-nav.css. */

/* Docs-specific step num color variants */
.docs-step__num--blue { background: linear-gradient(135deg,#0284c7,#0891b2); }
.docs-step__num--purple { background: #6d28d9; }
.docs-step__num--amber { background: linear-gradient(135deg,#b45309,#d97706); }

/* Docs tab group wrapper (replaces inline position:relative) */
.dt-tab-group { position: relative; }

