:root {
      --primary: #99d54a;
      --primary-dark: #7ab332;
      --dark-surface: #1e293b;
      --text-main: #334155;
      --text-muted: #64748b;
      --text-light: #f8fafc;
      --bg-light: #f1f5f9;
      --bg-white: #ffffff;
      --radius-sm: 13px;
      --radius-md: 16px;
      --radius-lg: 19px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      color: var(--text-main);
      background-color: var(--bg-light);
      line-height: 1.6;
      word-break: break-word;
      overflow-wrap: break-word;
    }

    /* 导航栏样式 (按要求完全复用) */
    .peak.orbit {
      background-color: #0f172a;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(12px);
    }

    .nexus {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem 1.5rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
    }

    .sigil {
      display: flex;
      align-items: center;
    }

    .lens {
      height: 38px;
      width: auto;
      display: block;
    }

    .array.cluster {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      align-items: center;
    }

    .ray {
      color: #94a3b8;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: color 0.35s ease;
      padding: 0.4rem 0.8rem;
      border-radius: var(--radius-sm);
    }

    .ray:hover,
    .ray.active {
      color: var(--primary);
      background: rgba(153, 213, 74, 0.1);
    }

    /* 主舞台基础配置 */
    main {
      display: flex;
      flex-direction: column;
      gap: 3.5rem;
      padding-bottom: 4rem;
    }

    /* 模块1: Intro (Hero变体) */
    .vista.vessel {
      background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
      color: var(--text-light);
      padding: 4.5rem 1.5rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .aura {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 2.5rem;
      align-items: center;
    }

    .pod-aura {
      flex: 1 1 480px;
      min-width: 0;
    }

    .crest {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 1.2rem;
      color: var(--text-light);
      white-space: normal;
    }

    .crest span {
      color: var(--primary);
    }

    .lore {
      font-size: 1.1rem;
      color: #94a3b8;
      margin-bottom: 2rem;
      line-height: 1.7;
    }

    .pulse-warp {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .pulse {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--primary);
      color: #0f172a;
      padding: 0.9rem 2rem;
      border-radius: var(--radius-md);
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 8px 20px -6px rgba(153, 213, 74, 0.4);
      transition: all 0.35s ease;
    }

    .pulse:hover {
      background: #a9e259;
      transform: translateY(-2px);
      box-shadow: 0 12px 24px -6px rgba(153, 213, 74, 0.6);
    }

    .surge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.08);
      color: var(--text-light);
      padding: 0.9rem 2rem;
      border-radius: var(--radius-md);
      font-weight: 600;
      text-decoration: none;
      border: 1px solid rgba(255, 255, 255, 0.15);
      transition: all 0.35s ease;
    }

    .surge:hover {
      background: rgba(255, 255, 255, 0.15);
      color: var(--primary);
    }

    /* UI 模拟表达组件 (Data UI) */
    .shard-mote {
      flex: 1 1 480px;
      min-width: 0;
      background: #090d16;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
      overflow: hidden;
    }

    .vein {
      background: #1e293b;
      padding: 0.75rem 1.2rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mote-cluster {
      display: flex;
      gap: 0.5rem;
    }

    .mote-dot {
      width: 11px;
      height: 11px;
      border-radius: 50%;
    }

    .mote-dot.red { background: #ef4444; }
    .mote-dot.yellow { background: #f59e0b; }
    .mote-dot.green { background: #10b981; }

    .lore-mote {
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-size: 0.82rem;
      color: #94a3b8;
    }

    .fold-code {
      padding: 1.25rem;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-size: 0.88rem;
      line-height: 1.6;
      overflow-x: auto;
    }

    .code-line {
      display: flex;
      flex-wrap: nowrap;
      gap: 1rem;
      padding: 0.15rem 0.4rem;
      border-radius: 4px;
    }

    .code-line.diff-add {
      background: rgba(16, 185, 129, 0.18);
      color: #34d399;
    }

    .code-line.diff-remove {
      background: rgba(239, 68, 68, 0.18);
      color: #f87171;
    }

    .code-num {
      color: #475569;
      user-select: none;
      min-width: 24px;
    }

    /* 模块2: Comparison (版本控制与代码冲突) */
    .zenith.fold {
      max-width: 1100px;
      margin: 0 auto;
      width: 90%;
    }

    .crest-vein {
      text-align: center;
      margin-bottom: 3rem;
    }

    .crest-sub {
      font-size: 2rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 0.6rem;
    }

    .lore-sub {
      color: var(--text-muted);
      font-size: 1.05rem;
      max-width: 680px;
      margin: 0 auto;
    }

    .prism-cluster {
      display: flex;
      flex-wrap: wrap;
      gap: 1.8rem;
    }

    .prism {
      flex: 1 1 300px;
      min-width: 0;
      background: var(--bg-white);
      padding: 2rem;
      border-radius: var(--radius-md);
      border: 1px solid #e2e8f0;
      box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
      transition: all 0.35s ease;
      display: flex;
      flex-direction: column;
    }

    .prism:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.1);
      border-color: rgba(153, 213, 74, 0.6);
    }

    .rune-aura {
      width: 52px;
      height: 52px;
      background: rgba(153, 213, 74, 0.15);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.4rem;
      color: var(--primary-dark);
    }

    .prism-crest {
      font-size: 1.25rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 0.75rem;
    }

    .prism-desc {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 1.2rem;
      flex-grow: 1;
    }

    .code-pill {
      background: #0f172a;
      color: #e2e8f0;
      padding: 0.75rem 1rem;
      border-radius: var(--radius-sm);
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-size: 0.8rem;
      overflow-x: auto;
    }

    /* 模块3: Capability (服务器与本地同步 - Aside) */
    aside.nova.aura {
      background: var(--bg-white);
      border-top: 1px solid #e2e8f0;
      border-bottom: 1px solid #e2e8f0;
      padding: 4rem 1.5rem;
      width: 100%;
    }

    .halo-vessel {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 3rem;
      align-items: center;
    }

    .sync-tree {
      flex: 1 1 450px;
      min-width: 0;
      background: #0f172a;
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      color: #f8fafc;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-size: 0.88rem;
      box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.2);
    }

    .tree-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 0.5rem 0.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .tree-row:last-child {
      border-bottom: none;
    }

    .tree-status {
      font-size: 0.75rem;
      padding: 0.2rem 0.6rem;
      border-radius: 99px;
      font-weight: 600;
    }

    .tree-status.same { background: rgba(16, 185, 129, 0.2); color: #34d399; }
    .tree-status.update { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }
    .tree-status.orphan { background: rgba(239, 68, 68, 0.2); color: #f87171; }

    .sync-info {
      flex: 1 1 450px;
      min-width: 0;
    }

    .sync-info h2 {
      font-size: 2rem;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .sync-info p {
      color: var(--text-muted);
      font-size: 1.05rem;
      margin-bottom: 1.5rem;
    }

    .feature-motes {
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }

    .feature-mote {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      color: #334155;
      font-weight: 600;
    }

    .feature-mote svg {
      flex-shrink: 0;
      color: var(--primary-dark);
      margin-top: 2px;
    }

    /* 模块4: Advanced Capability (数据合并与注册表) */
    .halo.vessel {
      max-width: 1100px;
      margin: 0 auto;
      width: 90%;
    }

    .grid-matrix {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    .matrix-shard {
      flex: 1 1 320px;
      min-width: 0;
      background: var(--bg-white);
      border-radius: var(--radius-md);
      padding: 1.8rem;
      border: 1px solid #e2e8f0;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    .matrix-shard h3 {
      font-size: 1.15rem;
      color: #0f172a;
      font-weight: 700;
      margin-bottom: 0.6rem;
    }

    .matrix-shard p {
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.6;
    }

    /* 页脚样式 */
    .nadir.wake {
      background: #0f172a;
      color: #94a3b8;
      padding: 3.5rem 1.5rem 2rem 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .echo-vessel {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2.5rem;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .echo-brand {
      flex: 1 1 300px;
      min-width: 0;
    }

    .echo-brand-crest {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--text-light);
      margin-bottom: 0.8rem;
    }

    .echo-links {
      display: flex;
      flex-wrap: wrap;
      gap: 3rem;
    }

    .echo-col {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .echo-col h4 {
      color: var(--text-light);
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 0.4rem;
    }

    .echo-col a {
      color: #94a3b8;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.35s ease;
    }

    .echo-col a:hover {
      color: var(--primary);
    }

    .copyright {
      max-width: 1100px;
      margin: 2rem auto 0 auto;
      text-align: center;
      font-size: 0.85rem;
      color: #64748b;
    }

    /* 响应式调整 */
    @media (max-width: 768px) {
      .array.cluster {
        gap: 0.5rem;
      }
      .ray {
        font-size: 0.85rem;
        padding: 0.3rem 0.5rem;
      }
      .crest {
        font-size: 2rem;
      }
      .crest-sub,
      .sync-info h2 {
        font-size: 1.6rem;
      }
      .prism,
      .matrix-shard,
      .pod-aura,
      .shard-mote,
      .sync-tree,
      .sync-info {
        flex: 1 1 100%;
      }
    }

.helm-peak.helm-orbit {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
}
.helm-peak.helm-orbit,
.helm-peak.helm-orbit *,
.helm-peak.helm-orbit *::before,
.helm-peak.helm-orbit *::after {
    box-sizing: border-box;
}

.helm-peak.helm-orbit [role="navigation"],
.helm-peak.helm-orbit div,
.helm-peak.helm-orbit section,
.helm-peak.helm-orbit article,
.helm-peak.helm-orbit aside,
.helm-peak.helm-orbit p,
.helm-peak.helm-orbit h1,
.helm-peak.helm-orbit h2,
.helm-peak.helm-orbit h3,
.helm-peak.helm-orbit h4,
.helm-peak.helm-orbit h5,
.helm-peak.helm-orbit h6,
.helm-peak.helm-orbit a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.helm-peak.helm-orbit p,
.helm-peak.helm-orbit h1,
.helm-peak.helm-orbit h2,
.helm-peak.helm-orbit h3,
.helm-peak.helm-orbit h4,
.helm-peak.helm-orbit h5,
.helm-peak.helm-orbit h6 {
    text-decoration: none;
}

.helm-peak.helm-orbit img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.helm-peak.helm-orbit {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.helm-peak.helm-orbit a.helm-ray {
    --aisite-shell-nav-padding: 0;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.helm-peak.helm-orbit a.helm-ray,
.helm-peak.helm-orbit a.helm-ray:hover,
.helm-peak.helm-orbit a.helm-ray:focus,
.helm-peak.helm-orbit a.helm-ray:active,
.helm-peak.helm-orbit a.helm-ray.active,
.helm-peak.helm-orbit a.helm-ray[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.helm-peak.helm-orbit .helm-cluster, .helm-peak.helm-orbit .helm-orbit, .helm-peak.helm-orbit .helm-nexus, .helm-peak.helm-orbit .helm-array{
            display: flex;
            flex-wrap: wrap;
        }

.helm-peak.helm-orbit .helm-cluster > *, .helm-peak.helm-orbit .helm-orbit > *, .helm-peak.helm-orbit .helm-nexus > *, .helm-peak.helm-orbit .helm-array > *{
            min-width: 0;
        }

.helm-peak.helm-orbit .helm-peak{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(15, 23, 42, 0.05);
            box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -1px rgba(15, 23, 42, 0.04);
        }

.helm-peak.helm-orbit .helm-nexus{
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

.helm-peak.helm-orbit .helm-sigil{
            width: 140px;
            display: flex;
            align-items: center;
        }

.helm-peak.helm-orbit .helm-sigil .helm-lens{
            max-width: 100%;
            height: auto;
            display: block;
        }

.helm-peak.helm-orbit .helm-array{
            gap: 2.5rem;
            align-items: center;
        }

.helm-peak.helm-orbit .helm-ray{
            text-decoration: none;
            color: #334155;
            font-weight: 600;
            font-size: 1.05rem;
            transition: 0.35s ease;
            position: relative;
        }

.helm-peak.helm-orbit .helm-ray:hover{
            color: #7ab332;
        }

.helm-peak.helm-orbit .helm-ray.active{
            color: #7ab332;
        }

.helm-peak.helm-orbit .helm-ray.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #99d54a;
            border-radius: 3px;
        }

@media (max-width: 768px){.helm-peak.helm-orbit .helm-nexus{
                flex-direction: column;
                gap: 1.5rem;
            }

.helm-peak.helm-orbit .helm-array{
                justify-content: center;
                gap: 1.2rem;
            }}

.nadir-tail.nadir-nadir {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
}
.nadir-tail.nadir-nadir,
.nadir-tail.nadir-nadir *,
.nadir-tail.nadir-nadir *::before,
.nadir-tail.nadir-nadir *::after {
    box-sizing: border-box;
}

.nadir-tail.nadir-nadir [role="navigation"],
.nadir-tail.nadir-nadir div,
.nadir-tail.nadir-nadir section,
.nadir-tail.nadir-nadir article,
.nadir-tail.nadir-nadir aside,
.nadir-tail.nadir-nadir p,
.nadir-tail.nadir-nadir h1,
.nadir-tail.nadir-nadir h2,
.nadir-tail.nadir-nadir h3,
.nadir-tail.nadir-nadir h4,
.nadir-tail.nadir-nadir h5,
.nadir-tail.nadir-nadir h6,
.nadir-tail.nadir-nadir a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.nadir-tail.nadir-nadir p,
.nadir-tail.nadir-nadir h1,
.nadir-tail.nadir-nadir h2,
.nadir-tail.nadir-nadir h3,
.nadir-tail.nadir-nadir h4,
.nadir-tail.nadir-nadir h5,
.nadir-tail.nadir-nadir h6 {
    text-decoration: none;
}

.nadir-tail.nadir-nadir img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.nadir-tail.nadir-nadir {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.nadir-tail.nadir-nadir a,
.nadir-tail.nadir-nadir a:hover,
.nadir-tail.nadir-nadir a:focus,
.nadir-tail.nadir-nadir a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.nadir-tail.nadir-nadir .nadir-cluster, .nadir-tail.nadir-nadir .nadir-fold, .nadir-tail.nadir-nadir .nadir-vein{
            display: flex;
            flex-wrap: wrap;
        }

.nadir-tail.nadir-nadir .nadir-cluster > *, .nadir-tail.nadir-nadir .nadir-fold > *, .nadir-tail.nadir-nadir .nadir-vein > *{
            min-width: 0;
        }

.nadir-tail.nadir-nadir .nadir-vessel, .nadir-tail.nadir-nadir .nadir-lore, .nadir-tail.nadir-nadir .nadir-crest{
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all; 
        }

.nadir-tail.nadir-nadir .nadir-ray{
            text-decoration: none;
            color: #334155;
            font-weight: 600;
            font-size: 1.05rem;
            transition: 0.35s ease;
            position: relative;
        }

.nadir-tail.nadir-nadir .nadir-ray:hover{
            color: #7ab332;
        }

.nadir-tail.nadir-nadir .nadir-ray.active{
            color: #7ab332;
        }

.nadir-tail.nadir-nadir .nadir-ray.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #99d54a;
            border-radius: 3px;
        }

.nadir-tail.nadir-nadir .nadir-nadir{
            background: #0f172a;
            color: #f8fafc;
            padding: 5rem 2rem 3rem;
            margin-top: auto;
        }

.nadir-tail.nadir-nadir .nadir-nadir .nadir-vessel{
            max-width: 1400px;
            margin: 0 auto;
            justify-content: space-between;
            gap: 4rem;
        }

.nadir-tail.nadir-nadir .nadir-nadir .nadir-fold{
            flex-direction: column;
            gap: 1.5rem;
            min-width: 250px;
            flex: 1;
        }

.nadir-tail.nadir-nadir .nadir-nadir .nadir-crest{
            color: #99d54a;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

.nadir-tail.nadir-nadir .nadir-nadir .nadir-lore{
            color: #94a3b8;
            font-size: 0.95rem;
        }

.nadir-tail.nadir-nadir .nadir-nadir .nadir-cluster{
            flex-direction: column;
            gap: 1rem;
        }

.nadir-tail.nadir-nadir .nadir-nadir .nadir-ray{
            color: #cbd5e1;
            font-size: 0.95rem;
        }

.nadir-tail.nadir-nadir .nadir-nadir .nadir-ray:hover{
            color: #99d54a;
        }

.nadir-tail.nadir-nadir .nadir-nadir .nadir-vein{
            max-width: 1400px;
            margin: 4rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            justify-content: space-between;
            color: #64748b;
            font-size: 0.9rem;
        }

@media (max-width: 768px){.nadir-tail.nadir-nadir .nadir-nadir .nadir-vessel{
                flex-direction: column;
                gap: 2.5rem;
            }}