/* ==========================================================================
           基础变量与重置 (继承首页视觉契约)
           ========================================================================== */
        :root {
            --brand-primary: #37b9e9;
            --brand-primary-hover: #2ba0cf;
            --brand-primary-light: rgba(55, 185, 233, 0.1);
            --text-main: #334155;
            --text-heading: #0f172a;
            --text-muted: #64748b;
            --bg-page: #ffffff;
            --bg-surface: #f8fafc;
            --bg-dark-slate: #0f172a;
            --border-light: #e2e8f0;
            --border-dark: #1e293b;
            --radius-sm: 5px;
            --radius-md: 8px;
            --radius-lg: 11px;
            --shadow-subtle: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            --shadow-float: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-dark: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --shadow-glow: 0 4px 14px rgba(55, 185, 233, 0.35);
            --transition-base: 0.25s ease;
            --font-base: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --container-width: 1200px;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            min-width: 0; /* Flex约束 */
        }

        body {
            font-family: var(--font-base);
            color: var(--text-main);
            background-color: var(--bg-page);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-base);
        }

        ul, ol {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* 文本换行约束 */
        .lore, .crux {
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .lore-cn {
            word-break: keep-all;
        }

        /* ==========================================================================
           导航栏组件 (严格复用)
           ========================================================================== */
        .brow {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-light);
        }

        .brow-mesh {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .sigil img {
            height: 32px;
            width: auto;
        }

        .flow {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .wire {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-muted);
            padding: 0.5rem 0;
            position: relative;
        }

        .wire:hover {
            color: var(--brand-primary);
        }

        .wire.active {
            color: var(--brand-primary);
            font-weight: 600;
        }

        .wire.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--brand-primary);
            border-radius: 2px;
        }

        @media (max-width: 768px) {
            .brow-mesh {
                flex-direction: column;
                gap: 1rem;
            }
            .flow {
                gap: 1rem;
                justify-content: center;
            }
        }

        /* ==========================================================================
           主容器与通用布局
           ========================================================================== */
        .hive {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .pod-mesh {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 5rem 2rem;
            width: 100%;
        }

        /* ==========================================================================
           Hero 视觉展示区 (Asymmetric Grid 变体)
           ========================================================================== */
        .nova {
            background: radial-gradient(circle at 100% 0%, #f0f9ff 0%, #ffffff 60%);
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--border-light);
        }

        .nova-mesh {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 6rem 2rem;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 4rem;
            align-items: center;
        }

        .nova-crux {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            color: var(--text-heading);
            line-height: 1.15;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            white-space: normal;
        }

        .nova-lore {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            max-width: 500px;
            line-height: 1.6;
        }

        .knot-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .ping-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: var(--brand-primary);
            color: #ffffff;
            padding: 1rem 2rem;
            border-radius: var(--radius-md);
            font-weight: 600;
            box-shadow: var(--shadow-glow);
            transition: all var(--transition-base);
            cursor: pointer;
            border: none;
        }

        .ping-primary:hover, .ping-primary:focus {
            background: var(--brand-primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(55, 185, 233, 0.45);
        }

        .ping-ghost {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: transparent;
            color: var(--text-heading);
            padding: 1rem 2rem;
            border-radius: var(--radius-md);
            font-weight: 600;
            border: 1px solid var(--border-light);
            transition: all var(--transition-base);
        }

        .ping-ghost:hover, .ping-ghost:focus {
            background: var(--bg-surface);
            border-color: #cbd5e1;
        }

        .nova-lens-mesh {
            position: relative;
            z-index: 1;
        }

        .nova-lens-mesh::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -10%;
            width: 100%;
            height: 100%;
            background: var(--brand-primary-light);
            border-radius: var(--radius-lg);
            z-index: -1;
            transform: rotate(3deg);
        }

        .nova-lens {
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-float);
            border: 1px solid var(--border-light);
            background: #fff;
            overflow: hidden;
        }

        @media (max-width: 992px) {
            .nova-mesh {
                grid-template-columns: 1fr;
                gap: 3rem;
                padding: 4rem 2rem;
            }
            .nova-lens-mesh {
                max-width: 600px;
                margin: 0 auto;
            }
        }

        /* ==========================================================================
           全平台原生支持 (对比类 Article)
           ========================================================================== */
        .pod-platforms {
            background-color: var(--bg-page);
        }

        .crux-pod {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-heading);
            text-align: center;
            margin-bottom: 1rem;
        }

        .lore-center {
            text-align: center;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 4rem auto;
            font-size: 1.1rem;
        }

        .knot-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .shard-platform {
            background: #ffffff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 2.5rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-subtle);
            position: relative;
            overflow: hidden;
        }

        .shard-platform:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-float);
            border-color: var(--brand-primary-light);
        }

        .glyph-pod {
            width: 56px;
            height: 56px;
            background: var(--bg-surface);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--brand-primary);
        }

        .crux-shard {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-heading);
            margin-bottom: 0.75rem;
        }

        .lore-shard {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .wire-download {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--brand-primary);
            font-weight: 600;
            font-size: 0.95rem;
        }

        .wire-download svg {
            transition: transform var(--transition-base);
        }

        .wire-download:hover svg {
            transform: translateY(2px);
        }

        /* ==========================================================================
           极速部署指南 (流程类 Div)
           ========================================================================== */
        .vault-deploy {
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }

        .knot-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            counter-reset: deploy-step;
        }

        .blip-step {
            position: relative;
            padding-left: 1rem;
        }

        .blip-step::before {
            counter-increment: deploy-step;
            content: "0" counter(deploy-step);
            display: block;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--brand-primary-light);
            line-height: 1;
            margin-bottom: 1rem;
            font-family: monospace;
        }

        .crux-step {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text-heading);
            margin-bottom: 0.5rem;
        }

        .lore-step {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* ==========================================================================
           版本发布说明 (数据承载 Article - 继承首页暗色卡片语法)
           ========================================================================== */
        .pod-release {
            background-color: var(--bg-page);
        }

        .slate-data {
            background: var(--bg-dark-slate);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-dark);
            padding: 3rem;
            border: 1px solid var(--border-dark);
            color: #f8fafc;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .crux-slate {
            font-size: 1.75rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1.5rem;
        }

        .lore-slate {
            color: #94a3b8;
            margin-bottom: 2rem;
        }

        .band-flow {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .band-blip {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .glyph-check {
            color: var(--brand-primary);
            flex-shrink: 0;
            margin-top: 0.25rem;
        }

        .lore-blip {
            color: #cbd5e1;
            font-size: 0.95rem;
        }

        .slate-hash {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .crux-hash {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #94a3b8;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .lore-code {
            font-family: monospace;
            font-size: 0.85rem;
            color: var(--brand-primary);
            word-break: break-all;
            display: block;
            margin-bottom: 0.5rem;
            background: rgba(0,0,0,0.2);
            padding: 0.5rem;
            border-radius: 4px;
        }

        @media (max-width: 992px) {
            .slate-data {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                padding: 2rem;
            }
        }

        /* ==========================================================================
           页脚组件
           ========================================================================== */
        .heel {
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border-light);
            padding: 4rem 0 2rem;
        }

        .heel-mesh {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .crux-root {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-heading);
            letter-spacing: -0.02em;
        }

        .knot-tail {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .wire-tail {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .wire-tail:hover {
            color: var(--brand-primary);
        }

        .lore-echo {
            color: #94a3b8;
            font-size: 0.85rem;
            text-align: center;
            margin-top: 2rem;
        }

.orbit-brow {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: #334155;
}
.orbit-brow,
.orbit-brow *,
.orbit-brow *::before,
.orbit-brow *::after {
    box-sizing: border-box;
}

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

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

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

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

.orbit-brow a.orbit-wire {
    --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;
}

.orbit-brow a.orbit-wire,
.orbit-brow a.orbit-wire:hover,
.orbit-brow a.orbit-wire:focus,
.orbit-brow a.orbit-wire:active,
.orbit-brow a.orbit-wire.active,
.orbit-brow a.orbit-wire[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);
}

.orbit-brow{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #e2e8f0;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
        }

.orbit-brow .orbit-brow-mesh{
            max-width: 1300px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
        }

.orbit-brow .orbit-brow-mesh > *{ min-width: 0; }

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

.orbit-brow .orbit-sigil > *{ min-width: 0; }

.orbit-brow .orbit-sigil img{
            height: 36px;
            width: auto;
            display: block;
        }

.orbit-brow .orbit-flow{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.orbit-brow .orbit-flow > *{ min-width: 0; }

.orbit-brow .orbit-wire{
            font-size: 0.95rem;
            font-weight: 600;
            color: #64748b;
            transition: color 0.25s ease;
            position: relative;
        }

.orbit-brow .orbit-wire:hover, .orbit-brow .orbit-wire.active{
            color: #37b9e9;
        }

.orbit-brow .orbit-wire.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #37b9e9;
            border-radius: 2px;
        }

.orbit-brow {
    background: rgb(255, 255, 255);
    background-image: none;
}

.root-heel {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: #334155;
}
.root-heel,
.root-heel *,
.root-heel *::before,
.root-heel *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.root-heel .root-wire{
            font-size: 0.95rem;
            font-weight: 600;
            color: #64748b;
            transition: color 0.25s ease;
            position: relative;
        }

.root-heel .root-wire:hover, .root-heel .root-wire.active{
            color: #37b9e9;
        }

.root-heel .root-wire.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #37b9e9;
            border-radius: 2px;
        }

.root-heel{
            background: #020617;
            color: #64748b;
            padding: 5rem 2rem 2rem 2rem;
            word-break: break-word;
            font-size: 0.95rem;
        }

.root-heel .root-root-mesh{
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 4rem;
            margin-bottom: 4rem;
        }

.root-heel .root-root-col{
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 1.25rem;
        }

.root-heel .root-root-col > *{ min-width: 0; }

.root-heel .root-crux-root{
            color: #f8fafc;
            font-weight: 700;
            font-size: 1.1rem;
            margin: 0 0 0.5rem 0;
        }

.root-heel .root-root-col .root-wire{
            color: #94a3b8;
            font-weight: 400;
        }

.root-heel .root-root-col .root-wire:hover{
            color: #37b9e9;
        }

.root-heel .root-tail{
            max-width: 1300px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid #1e293b;
            text-align: center;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }

.root-heel .root-tail > *{ min-width: 0; }