/* === 变量系统 (继承自首页契约) === */
        :root {
            --color-primary: #4a8ed7;
            --color-primary-dark: #3a75b8;
            --color-primary-light: #e6f0fa;
            --color-bg-base: #f8fafc;
            --color-bg-surface: #ffffff;
            --color-bg-alt: #f1f5f9;
            --color-text-main: #1e293b;
            --color-text-muted: #64748b;
            --color-border: #e2e8f0;
            --color-success: #10b981;
            
            --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
            
            --radius-main: 20px;
            --radius-sm: 12px;
            --radius-pill: 9999px;
            
            --shadow-float: 0 10px 30px -10px rgba(74, 142, 215, 0.15), 0 4px 10px -5px rgba(15, 23, 42, 0.05);
            --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.05);
            --shadow-inner: inset 0 2px 4px rgba(0,0,0,0.02);
            
            --transition: all 0.25s ease;
        }

        /* === 基础重置 === */
        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-base);
            background-color: var(--color-bg-base);
            color: var(--color-text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

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

        h1, h2, h3, h4, h5, h6, p {
            margin: 0;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* === 布局约束与强制规则 === */
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
        }
        
        .flex-wrap > * {
            min-width: 0;
        }

        .tunnel {
            width: 100%;
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* === 导航壳层 (严格复用) === */
        .sole {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border);
        }

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

        .sole-pod > * {
            min-width: 0;
        }

        .cipher img {
            height: 32px;
            width: auto;
            display: block;
        }

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

        .route > * {
            min-width: 0;
        }

        .crest {
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--transition);
        }

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

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

        /* === 正文模块：Hero (Portal) === */
        .portal {
            padding: 6rem 0 4rem;
            background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
            min-height: 85vh;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

        .portal > * {
            min-width: 0;
        }

        .portal-pod {
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
            width: 100%;
        }

        .portal-pod > * {
            min-width: 0;
        }

        .chain-band {
            flex: 1 1 400px;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            align-items: flex-start;
        }

        .apex-mega {
            font-size: clamp(2.5rem, 4vw, 4rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: #0f172a;
            white-space: normal;
            word-break: keep-all;
        }

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

        .chain-lead {
            font-size: 1.125rem;
            color: var(--color-text-muted);
            max-width: 480px;
            line-height: 1.7;
            word-break: keep-all;
        }

        .warp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            border-radius: var(--radius-pill);
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            background-color: var(--color-primary);
            color: #ffffff;
            box-shadow: 0 4px 14px 0 rgba(74, 142, 215, 0.39);
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .warp:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px 0 rgba(74, 142, 215, 0.5);
        }

        /* === Data UI 承载 (Hero右侧) === */
        .ui-band {
            flex: 1 1 500px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .vault-data {
            background: var(--color-bg-surface);
            border-radius: var(--radius-main);
            border: 1px solid var(--color-border);
            box-shadow: var(--shadow-float);
            width: 100%;
            overflow: hidden;
            transform: translateY(0);
            transition: var(--transition);
        }

        .vault-data:hover {
            transform: translateY(-5px);
        }

        .vault-top {
            background: var(--color-bg-alt);
            padding: 1rem 1.5rem;
            border-bottom: 1px solid var(--color-border);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: var(--color-text-muted);
            font-weight: 500;
        }

        .vault-top > * { min-width: 0; }

        .glyph-pulse {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--color-success);
            position: relative;
        }

        .glyph-pulse::after {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border-radius: 50%;
            background-color: var(--color-success);
            opacity: 0.4;
            animation: pulse-anim 2s infinite ease-in-out;
        }

        @keyframes pulse-anim {
            0% { transform: scale(0.8); opacity: 0.5; }
            100% { transform: scale(2); opacity: 0; }
        }

        .vault-mesh {
            padding: 2.5rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 2rem;
            background: radial-gradient(circle at top right, var(--color-primary-light) 0%, transparent 70%);
        }

        .lens-stat {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .chain-mono {
            font-family: var(--font-mono);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--color-primary-dark);
            line-height: 1;
        }

        .chain-flow {
            font-size: 0.875rem;
            color: var(--color-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* === 侧栏结构：对比价值观 (Aside) === */
        .zone-comparison {
            padding: 6rem 0;
            background-color: var(--color-bg-surface);
        }

        .apex-tunnel {
            font-size: 2.25rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: #0f172a;
            white-space: normal;
            word-break: keep-all;
        }

        .chain-sub {
            text-align: center;
            color: var(--color-text-muted);
            max-width: 600px;
            margin: 0 auto 4rem;
            font-size: 1.125rem;
            word-break: keep-all;
        }

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

        .vault-value {
            background: var(--color-bg-base);
            border-radius: var(--radius-main);
            padding: 2.5rem;
            border: 1px solid transparent;
            transition: var(--transition);
            transform: translateY(0);
        }

        .vault-value:hover {
            background: var(--color-bg-surface);
            border-color: var(--color-border);
            box-shadow: var(--shadow-float);
            transform: translateY(-5px);
        }

        .glyph-pod {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-sm);
            background: var(--color-primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--color-primary);
        }

        .apex-node {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #0f172a;
        }

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

        /* === 证明结构：亚太专线 (Article) === */
        .nexus-proof {
            padding: 6rem 0;
            background-color: var(--color-bg-alt);
        }

        .band-rows {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .cell-row {
            background: var(--color-bg-surface);
            border-radius: var(--radius-sm);
            padding: 1.5rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            border: 1px solid var(--color-border);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .cell-row:hover {
            border-color: var(--color-primary-light);
            box-shadow: var(--shadow-float);
        }

        .cell-row > * { min-width: 0; }

        .row-id {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex: 1 1 200px;
        }

        .row-id > * { min-width: 0; }

        .glyph-flag {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--color-bg-alt);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--color-text-muted);
            border: 1px solid var(--color-border);
        }

        .apex-row {
            font-weight: 600;
            font-size: 1.1rem;
            color: #0f172a;
        }

        .row-metrics {
            flex: 2 1 300px;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .row-metrics > * { min-width: 0; }

        .metric-pod {
            flex: 1;
        }

        .crown-flow {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: var(--color-text-muted);
            margin-bottom: 0.5rem;
        }

        .crown-track {
            height: 6px;
            background: var(--color-bg-base);
            border-radius: var(--radius-pill);
            overflow: hidden;
            box-shadow: var(--shadow-inner);
        }

        .crown-fill {
            height: 100%;
            background: var(--color-primary);
            border-radius: var(--radius-pill);
        }

        .crown-fill.success { background: var(--color-success); }
        .crown-fill.warning { background: #f59e0b; }

        /* === 能力结构：全球覆盖 (Article) === */
        .cloak-capability {
            padding: 6rem 0;
            background-color: var(--color-bg-surface);
        }

        .band-masonry {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .node-region {
            padding: 1.5rem;
            border-radius: var(--radius-sm);
            background: var(--color-bg-base);
            border: 1px solid var(--color-border);
        }

        .apex-region {
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .apex-region > * { min-width: 0; }

        .chain-peer {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            line-height: 1.8;
        }

        .vault-strategy {
            background: linear-gradient(to right, var(--color-bg-base), var(--color-bg-alt));
            padding: 2rem;
            border-radius: var(--radius-sm);
            border-left: 4px solid var(--color-primary);
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .vault-strategy > * { min-width: 0; }

        .strategy-pod {
            flex: 1 1 300px;
        }

        /* === 页脚 (Div role) === */
        .jolt {
            background-color: var(--color-bg-base);
            padding: 4rem 0 2rem;
            border-top: 1px solid var(--color-border);
        }

        .jolt-pod {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .jolt-pod > * { min-width: 0; }

        .base-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: #0f172a;
            letter-spacing: -0.02em;
        }

        .base-route {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .base-route > * { min-width: 0; }

        .jolt-copyright {
            text-align: center;
            color: var(--color-text-muted);
            font-size: 0.875rem;
            padding-top: 2rem;
            border-top: 1px solid var(--color-border);
        }

        /* === 响应式 === */
        @media (max-width: 768px) {
            .portal { padding: 4rem 0; min-height: auto; }
            .sole-pod { flex-direction: column; gap: 1rem; }
            .route { justify-content: center; gap: 1rem; }
            .portal-pod { gap: 3rem; }
            .apex-mega { font-size: 2.25rem; }
            .tunnel { padding: 0 1.5rem; }
            .cell-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
            .row-id, .row-metrics { width: 100%; }
        }

.route-sole{
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
            transition: all 0.25s ease;
        }

.route-sole .route-sole-pod{
            display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
            height: 80px; min-width: 0; max-width: 1320px; margin: 0 auto; padding: 0 2rem;
        }

.route-sole .route-cipher img{ height: 32px; width: auto; object-fit: contain; }

.route-sole .route-route{ display: flex; flex-wrap: wrap; gap: 2.5rem; align-items: center; min-width: 0; }

.route-sole .route-crest{
            text-decoration: none; color: #64748b;
            font-weight: 500; font-size: 0.95rem; transition: all 0.25s ease;
            position: relative; padding: 0.5rem 0;
        }

.route-sole .route-crest:hover, .route-sole .route-crest:focus{ color: #4a8ed7; }

.route-sole .route-crest.active{ color: #1e293b; font-weight: 600; }

.route-sole .route-crest.active::after{
            content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
            background-color: #4a8ed7; border-radius: 2px;
        }

@media (max-width: 768px){.route-sole .route-sole-pod{ height: auto; padding: 1rem 2rem; flex-direction: column; gap: 1rem; }

.route-sole .route-route{ width: 100%; justify-content: center; gap: 1.5rem; }}

@media (max-width: 480px){.route-sole .route-route{ gap: 1rem; flex-wrap: wrap; }

.route-sole .route-crest{ font-size: 0.85rem; }}

.route-sole {
    background: rgb(255, 255, 255);
    background-image: none;
}

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

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

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

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

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

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

.anchor-jolt{
            background-color: #0f172a; color: #cbd5e1;
            padding: 5rem 0 2rem 0; border-top: 1px solid #1e293b;
        }

.anchor-jolt .anchor-jolt-pod{
            max-width: 1320px; margin: 0 auto; padding: 0 2rem;
            display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 4rem;
        }

.anchor-jolt .anchor-base-brand{ font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 1.5rem; display: block; }

.anchor-jolt .anchor-jolt-apex{ color: white; font-size: 1.1rem; font-weight: 600; margin-bottom: 1.5rem; }

.anchor-jolt .anchor-jolt-band{ list-style: none; display: flex; flex-direction: column; gap: 1rem; }

.anchor-jolt .anchor-anchor{ color: #94a3b8; text-decoration: none; transition: all 0.25s ease; }

.anchor-jolt .anchor-anchor:hover, .anchor-jolt .anchor-anchor:focus{ color: white; padding-left: 5px; }

.anchor-jolt .anchor-jolt-bottom{
            max-width: 1320px; margin: 4rem auto 0 auto; padding: 2rem 2rem 0 2rem;
            border-top: 1px solid #1e293b; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
            font-size: 0.875rem; color: #64748b;
        }