    /* ── Docs Page ── */
    .docs-page { max-width: 900px; margin: 0 auto; padding: 40px 24px 80px; }
    .docs-header { text-align: center; margin-bottom: 48px; padding: 48px 0 32px; }
    .docs-header h1 {
      font-size: 36px; font-weight: 800; margin-bottom: 12px;
      background: linear-gradient(135deg, #fff 0%, #ccc 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .docs-header p { color: var(--text-dim); font-size: 17px; }
    .docs-toc { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
    .docs-toc a {
      padding: 8px 18px; border-radius: 20px; font-size: 13px; font-weight: 600;
      background: rgba(244,114,43,.1); color: var(--orange);
      border: 1px solid rgba(244,114,43,.2); transition: all .2s;
    }
    .docs-toc a:hover { background: rgba(244,114,43,.2); opacity: 1; }
    .docs-section { margin-bottom: 48px; }
    .docs-section h2 {
      font-size: 24px; font-weight: 700; margin-bottom: 20px;
      padding-bottom: 12px; border-bottom: 1px solid var(--border);
      display: flex; align-items: center; gap: 10px;
    }
    .docs-section h2 .docs-emoji { font-size: 28px; }
    .docs-section h3 { font-size: 17px; font-weight: 600; margin: 20px 0 10px; color: var(--text); }
    .docs-section p, .docs-section li { color: var(--text-dim); font-size: 15px; line-height: 1.7; }
    .docs-section ul { padding-left: 20px; margin: 8px 0; }
    .docs-section li { margin-bottom: 6px; }
    .docs-step-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 20px 0; }
    @media (max-width: 768px) { .docs-step-list { grid-template-columns: 1fr; } }
    .docs-step {
      background: rgba(255,255,255,0.05); border: 1px solid var(--border);
      border-radius: 12px; padding: 24px; text-align: center; transition: all .25s;
    }
    .docs-step:hover { border-color: rgba(244,114,43,.3); transform: translateY(-2px); }
    .docs-step-num {
      width: 36px; height: 36px; border-radius: 50%;
      background: linear-gradient(135deg, var(--orange), var(--gold));
      color: #fff; font-weight: 700; font-size: 16px;
      display: flex; align-items: center; justify-content: center; margin: 0 auto 12px;
    }
    .docs-step h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
    .docs-step p { font-size: 13px; color: var(--text-dim); }
    .docs-api-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
    .docs-api-table th {
      text-align: left; padding: 10px 14px; font-weight: 600;
      background: rgba(244,114,43,.1); color: var(--orange); border-bottom: 2px solid var(--border);
    }
    .docs-api-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--text-dim); }
    .docs-api-table tr:hover td { background: rgba(255,255,255,0.03); }
    .docs-api-table .svc-name { color: var(--text); font-weight: 600; }
    .docs-api-table .svc-port { color: var(--orange); font-family: monospace; font-size: 13px; }
    .docs-code {
      background: rgba(0,0,0,.4); border: 1px solid var(--border);
      border-radius: 8px; padding: 14px 18px; margin: 12px 0;
      font-family: "SF Mono", "Fira Code", monospace; font-size: 13px;
      color: #A5B4FC; overflow-x: auto; line-height: 1.6;
    }
    .docs-concept-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 16px 0; }
    @media (max-width: 768px) { .docs-concept-grid { grid-template-columns: 1fr; } }
    .docs-concept-card {
      background: rgba(255,255,255,0.05); border: 1px solid var(--border);
      border-radius: 12px; padding: 20px;
    }
    .docs-concept-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
    .docs-concept-card p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }

