:root {
            --brand: #ef9116;
            --bg: #0a0a0b;
            --surface: #141417;
            --prose: #d1d1d6;
            --peak: #ffffff;
            --radius: 16px;
            --space-gap: 4rem;
        }

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

        body {
            background-color: var(--bg);
            color: var(--prose);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.7;
            overflow-x: hidden;
            word-break: break-word;
        }

        /* 导航复用块 */
        .prow {
            position: sticky;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 11, 0.8);
            backdrop-filter: blur(12px);
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .shell {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 5vw;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .glyph {
            height: 40px;
            display: flex;
            align-items: center;
        }

        .glyph img {
            height: 100%;
            object-fit: contain;
        }

        .steer {
            display: flex;
            align-items: center;
            min-width: 0;
        }

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

        .steer-nexus {
            color: var(--prose);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.25s ease;
        }

        .steer-nexus:hover {
            color: var(--brand);
        }

        .steer-nexus.active {
            color: var(--brand);
            font-weight: 700;
        }

        .spark {
            background: var(--brand);
            color: #000;
            text-decoration: none;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .spark:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(239, 145, 22, 0.3);
        }

        /* 主体容器 */
        .vault {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5vw;
        }

        /* 1. 全球连接状态监控 (Intro) */
        .aura {
            padding-top: 80px;
            padding-bottom: var(--space-gap);
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .peak-realm {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            color: var(--peak);
            letter-spacing: -0.02em;
            max-width: 800px;
        }

        .vein-stage {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            width: 100%;
        }

        .cell-shard {
            background: var(--surface);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            transition: border-color 0.25s ease;
        }

        .cell-shard:hover {
            border-color: rgba(239, 145, 22, 0.4);
        }

        .dot-pulse {
            width: 10px;
            height: 10px;
            background: #00ff88;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
            display: inline-block;
            margin-right: 0.5rem;
        }

        .grain-peak {
            font-size: 1.25rem;
            color: var(--peak);
            font-weight: 600;
        }

        .prose-meta {
            font-size: 0.9rem;
            opacity: 0.7;
            display: flex;
            justify-content: space-between;
        }

        /* 数据可视化模拟 */
        .optix-line {
            width: 100%;
            height: 40px;
            background: linear-gradient(90deg, transparent 0%, rgba(239, 145, 22, 0.1) 50%, transparent 100%);
            position: relative;
            overflow: hidden;
            border-radius: 4px;
        }

        .optix-line::after {
            content: '';
            position: absolute;
            top: 50%;
            left: -100%;
            width: 100%;
            height: 2px;
            background: var(--brand);
            animation: flow 3s infinite linear;
        }

        @keyframes flow {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* 2. 高级网络与代理配置 (Steps) */
        .field {
            padding: var(--space-gap) 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .peak-major {
            font-size: 2.2rem;
            color: var(--peak);
            margin-bottom: 3rem;
        }

        .kin-flow {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .unit-box {
            background: rgba(255, 255, 255, 0.02);
            border-radius: var(--radius);
            padding: 2.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: flex-start;
        }

        .dot-mark {
            width: 48px;
            height: 48px;
            background: rgba(239, 145, 22, 0.1);
            border: 1px solid var(--brand);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .prose-body {
            flex: 1;
            min-width: 280px;
        }

        .prose-body h3 {
            color: var(--peak);
            margin-bottom: 0.8rem;
            font-size: 1.4rem;
        }

        .vein-code {
            background: #000;
            padding: 1.2rem;
            border-radius: 8px;
            font-family: monospace;
            color: #888;
            margin-top: 1rem;
            font-size: 0.9rem;
            border-left: 3px solid var(--brand);
        }

        /* 3. 弱网环境通讯优化 (Proof) */
        .realm-proof {
            padding: var(--space-gap) 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
            align-items: center;
        }

        .vivid-focus {
            position: relative;
            padding: 2rem;
            background: radial-gradient(circle at center, rgba(239, 145, 22, 0.1) 0%, transparent 70%);
        }

        .vivid-focus svg {
            width: 100%;
            height: auto;
            max-width: 400px;
        }

        .jolt-flock {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .jolt-grain {
            display: flex;
            gap: 1.5rem;
        }

        .jolt-grain span {
            font-weight: 700;
            color: var(--brand);
            font-size: 1.2rem;
        }

        /* 页脚 */
        .hush {
            background: #050506;
            padding: 5rem 5vw 3rem;
            margin-top: var(--space-gap);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .basin {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
        }

        .depth-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--peak);
            margin-bottom: 1.5rem;
        }

        .depth-links {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .depth-links a {
            color: #888;
            text-decoration: none;
            transition: color 0.25s ease;
            font-size: 0.9rem;
        }

        .depth-links a:hover {
            color: var(--brand);
        }

        .stern-info {
            max-width: 1400px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            font-size: 0.85rem;
            color: #555;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .shell {
                flex-direction: column;
                gap: 1.5rem;
            }
            .flock {
                justify-content: center;
                gap: 1rem;
            }
            .aura {
                padding-top: 40px;
            }
            .peak-realm {
                font-size: 2rem;
            }
        }

.path-prow {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--prose);
}
.path-prow,
.path-prow *,
.path-prow *::before,
.path-prow *::after {
    box-sizing: border-box;
}

.path-prow nav,
.path-prow div,
.path-prow section,
.path-prow article,
.path-prow aside,
.path-prow p,
.path-prow h1,
.path-prow h2,
.path-prow h3,
.path-prow h4,
.path-prow h5,
.path-prow h6,
.path-prow a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

.path-prow a.path-steer-nexus {
    --aisite-shell-nav-padding: 0.5rem 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;
}

.path-prow a.path-steer-nexus,
.path-prow a.path-steer-nexus:hover,
.path-prow a.path-steer-nexus:focus,
.path-prow a.path-steer-nexus:active,
.path-prow a.path-steer-nexus.active,
.path-prow a.path-steer-nexus[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);
}

.path-prow .path-shell{
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.path-prow{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 11, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

.path-prow .path-shell{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

.path-prow .path-glyph{
            height: 40px;
            min-width: 0;
        }

.path-prow .path-glyph img{
            height: 100%;
            display: block;
        }

.path-prow .path-steer{
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

.path-prow .path-flock{
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 1.5rem;
        }

.path-prow .path-steer-nexus{
            color: #d1d1d6;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.25s ease;
            position: relative;
            padding: 0.5rem 0;
        }

.path-prow .path-steer-nexus:hover, .path-prow .path-steer-nexus.active{
            color: #ef9116;
        }

.path-prow .path-steer-nexus.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #ef9116;
        }

.path-prow .path-spark{
            display: inline-flex;
            align-items: center;
            background: #ef9116;
            color: #000;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            border: none;
            cursor: pointer;
        }

.path-prow .path-spark:hover{
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(239, 145, 22, 0.3);
        }

@media (max-width: 768px){.path-prow .path-flock{ display: none; }}

.path-prow {
    background: rgb(10, 10, 11);
    background-image: none;
}

.basin-vault {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--prose);
}
.basin-vault,
.basin-vault *,
.basin-vault *::before,
.basin-vault *::after {
    box-sizing: border-box;
}

.basin-vault nav,
.basin-vault div,
.basin-vault section,
.basin-vault article,
.basin-vault aside,
.basin-vault p,
.basin-vault h1,
.basin-vault h2,
.basin-vault h3,
.basin-vault h4,
.basin-vault h5,
.basin-vault h6,
.basin-vault a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

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

.basin-vault .basin-shell{
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.basin-vault .basin-prow{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 11, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

.basin-vault .basin-prow .basin-shell{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

.basin-vault .basin-glyph{
            height: 40px;
            min-width: 0;
        }

.basin-vault .basin-glyph img{
            height: 100%;
            display: block;
        }

.basin-vault .basin-steer{
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

.basin-vault .basin-flock{
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 1.5rem;
        }

.basin-vault .basin-steer-nexus{
            color: #d1d1d6;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.25s ease;
            position: relative;
            padding: 0.5rem 0;
        }

.basin-vault .basin-steer-nexus:hover, .basin-vault .basin-steer-nexus.active{
            color: #ef9116;
        }

.basin-vault .basin-steer-nexus.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #ef9116;
        }

.basin-vault .basin-aura{
            padding: 4rem 0;
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 1.5rem;
            align-items: center;
        }

.basin-vault .basin-aura-prose{
            grid-column: 1 / span 5;
            z-index: 10;
        }

.basin-vault .basin-peak-realm{
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            color: #ffffff;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

.basin-vault .basin-prose-lead{
            font-size: 1.25rem;
            color: #d1d1d6;
            margin-bottom: 2.5rem;
            max-width: 500px;
        }

.basin-vault .basin-mosaic-kin{
            grid-column: 6 / span 7;
            display: grid;
            grid-template-areas: 
                "A A B"
                "A A C"
                "D E C";
            gap: 1rem;
            height: 600px;
        }

.basin-vault .basin-optix-shard{
            border-radius: 16px;
            overflow: hidden;
            background: #1e1e22;
            position: relative;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

.basin-vault .basin-optix-shard img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

.basin-vault .basin-optix-shard:hover img{
            transform: scale(1.05);
        }

.basin-vault .basin-spark{
            display: inline-flex;
            align-items: center;
            background: #ef9116;
            color: #000;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            border: none;
            cursor: pointer;
        }

.basin-vault .basin-spark:hover{
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(239, 145, 22, 0.3);
        }

.basin-vault .basin-vivid{
            padding: 8rem 0;
            background: radial-gradient(circle at 10% 20%, rgba(239, 145, 22, 0.05) 0%, transparent 50%);
        }

.basin-vault .basin-vivid .basin-peak-sub{
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 4rem;
            color: #ffffff;
        }

.basin-vault .basin-vault-kin{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

.basin-vault .basin-cell-shard{
            background: #141417;
            padding: 3rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: border-color 0.25s ease;
        }

.basin-vault .basin-cell-shard:hover{
            border-color: #ef9116;
        }

.basin-vault .basin-dot-aura{
            width: 56px;
            height: 56px;
            background: rgba(239, 145, 22, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: #ef9116;
        }

.basin-vault .basin-cell-shard h3{
            color: #ffffff;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

.basin-vault .basin-stage{
            padding: 8rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
        }

.basin-vault .basin-stage-optix{
            flex: 1;
            min-width: 350px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
        }

.basin-vault .basin-stage-optix img{
            width: 100%;
            display: block;
        }

.basin-vault .basin-stage-prose{
            flex: 1;
            min-width: 350px;
        }

.basin-vault .basin-realm-pathway{
            padding: 8rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

.basin-vault .basin-path-kin{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
        }

.basin-vault .basin-path-grain{
            background: rgba(255,255,255,0.02);
            padding: 2rem;
            border-radius: 16px;
            text-decoration: none;
            color: inherit;
            display: block;
            transition: background 0.25s ease;
        }

.basin-vault .basin-path-grain:hover{
            background: rgba(255,255,255,0.05);
        }

.basin-vault .basin-path-grain h4{
            color: #ef9116;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

.basin-vault .basin-stern{
            background: #050506;
            padding: 6rem 0 3rem;
            margin-top: 4rem;
        }

.basin-vault .basin-stern-basin{
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

.basin-vault .basin-stern-brand h2{
            color: #ffffff;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

.basin-vault .basin-stern-kin h5{
            color: #ffffff;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

.basin-vault .basin-stern-nexus{
            display: block;
            color: #d1d1d6;
            text-decoration: none;
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

.basin-vault .basin-stern-nexus:hover{
            color: #ef9116;
        }

.basin-vault .basin-stern-depth{
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.85rem;
            color: #666;
        }

@media (max-width: 1024px){.basin-vault .basin-aura{ display: block; }

.basin-vault .basin-aura-prose{ margin-bottom: 3rem; }

.basin-vault .basin-mosaic-kin{ height: 400px; }

.basin-vault .basin-stern-basin{ grid-template-columns: 1fr 1fr; }}

@media (max-width: 768px){.basin-vault .basin-flock{ display: none; }

.basin-vault .basin-vault-kin, .basin-vault .basin-path-kin, .basin-vault .basin-stern-basin{ grid-template-columns: 1fr; }

.basin-vault .basin-stage-optix, .basin-vault .basin-stage-prose{ min-width: 100%; }

.basin-vault .basin-peak-realm{ font-size: 2.5rem; }}