/* CSS Variables - 继承首页视觉基因 */
        :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;
            
            --radius-main: 20px;
            --radius-small: 12px;
            --radius-pill: 9999px;
            
            --shadow-soft: 0 4px 10px -5px rgba(15, 23, 42, 0.05);
            --shadow-rich: 0 10px 30px -10px rgba(74, 142, 215, 0.15), 0 4px 10px -5px rgba(15, 23, 42, 0.05);
            --shadow-glow: 0 4px 14px 0 rgba(74, 142, 215, 0.39);
            
            --transition-base: all 0.25s ease;
            --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            
            --space-pod: max(2rem, 5vw);
            --width-pod: 1200px;
        }

        /* Base Reset */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-base);
            background-color: var(--color-bg-base);
            color: var(--color-text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img, svg {
            max-width: 100%;
            display: block;
        }

        /* 强制文本换行 */
        .chain, .apex, .apex-mega {
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }

        .chain {
            word-break: keep-all;
        }

        /* Flexbox 强制规则 */
        .band {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }
        
        .band > * {
            min-width: 0;
        }

        /* Typography */
        .apex-mega {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: #0f172a;
            margin-bottom: 1.5rem;
        }

        .apex {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.01em;
            margin-bottom: 1rem;
        }

        .apex-sub {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .chain-lead {
            font-size: clamp(1.125rem, 2vw, 1.25rem);
            color: var(--color-text-muted);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .chain-norm {
            color: var(--color-text-muted);
            line-height: 1.6;
        }

        /* Header / Nav (强制复用并补充必要布局样式) */
        .sole {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border);
            transition: var(--transition-base);
        }

        .sole-pod {
            max-width: var(--width-pod);
            margin: 0 auto;
            padding: 1rem var(--space-pod);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

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

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

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

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

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

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

        /* Buttons / Action */
        .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;
            border: none;
            cursor: pointer;
            transition: var(--transition-base);
            background-color: var(--color-primary);
            color: white;
            box-shadow: var(--shadow-glow);
        }

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

        .warp-alt {
            background-color: var(--color-bg-surface);
            color: var(--color-text-main);
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--color-border);
        }

        .warp-alt:hover, .warp-alt:focus {
            border-color: var(--color-primary);
            color: var(--color-primary);
            transform: translateY(-2px);
        }

        /* Layout Containers */
        .tunnel-pod {
            max-width: var(--width-pod);
            margin: 0 auto;
            padding: 0 var(--space-pod);
        }

        .tunnel {
            padding: 6rem 0;
            position: relative;
        }

        .zone-alt {
            background-color: var(--color-bg-surface);
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

        /* Hero / Portal (Role: Intro) */
        .portal {
            padding-top: calc(80px + 4rem);
            padding-bottom: 6rem;
            background: linear-gradient(135deg, var(--color-bg-base) 0%, #eef2f6 100%);
            min-height: 85vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .portal-band {
            align-items: center;
            justify-content: space-between;
        }

        .portal-lens-chain {
            flex: 1 1 500px;
            z-index: 2;
        }

        .portal-lens-visual {
            flex: 1 1 400px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        /* 纯CSS视觉焦点 (替代图片) */
        .mesh-abstract {
            width: 100%;
            max-width: 500px;
            aspect-ratio: 1;
            position: relative;
        }

        .mesh-orb {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, var(--color-primary-light), var(--color-primary) 70%);
            top: 10%;
            left: 10%;
            right: 10%;
            bottom: 10%;
            opacity: 0.8;
            filter: blur(20px);
            animation: float-slow 8s ease-in-out infinite alternate;
        }

        .mesh-ring {
            position: absolute;
            top: 5%;
            left: 5%;
            right: 5%;
            bottom: 5%;
            border: 2px dashed var(--color-primary);
            border-radius: 50%;
            opacity: 0.3;
            animation: spin-slow 20s linear infinite;
        }
        
        .mesh-ring-inner {
            position: absolute;
            top: 20%;
            left: 20%;
            right: 20%;
            bottom: 20%;
            border: 1px solid var(--color-primary-dark);
            border-radius: 50%;
            opacity: 0.2;
            animation: spin-slow 15s linear infinite reverse;
        }

        .mesh-glyph {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: var(--radius-main);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-rich);
            color: var(--color-primary);
            z-index: 3;
        }

        @keyframes float-slow {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(-20px, 20px) scale(1.05); }
        }

        @keyframes spin-slow {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Cards / Nodes */
        .node {
            background: var(--color-bg-surface);
            padding: 2.5rem;
            border-radius: var(--radius-main);
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--color-border);
            transition: var(--transition-base);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .node:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-rich);
            border-color: var(--color-primary-light);
        }

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

        .glyph-vault svg {
            width: 28px;
            height: 28px;
        }

        /* Specific Sections */
        .platforms-band > .node {
            flex: 1 1 300px;
        }

        /* Detail Section (Performance) */
        .detail-band {
            align-items: center;
        }

        .detail-lens-chain {
            flex: 1 1 450px;
        }

        .detail-lens-visual {
            flex: 1 1 450px;
            background: var(--color-bg-surface);
            border-radius: var(--radius-main);
            padding: 2rem;
            box-shadow: var(--shadow-rich);
            border: 1px solid var(--color-border);
        }

        /* CSS 数据流可视化 */
        .stream-track {
            height: 8px;
            background: var(--color-bg-alt);
            border-radius: 4px;
            margin: 1.5rem 0 0.5rem;
            overflow: hidden;
            position: relative;
        }

        .stream-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--color-primary), #60a5fa);
            border-radius: 4px;
            width: 95%;
            position: relative;
        }
        
        .stream-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transform: translateX(-100%);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            100% { transform: translateX(100%); }
        }

        .stream-flow {
            display: flex;
            justify-content: space-between;
            font-size: 0.875rem;
            color: var(--color-text-muted);
            font-weight: 500;
        }

        /* Anti-detect Section */
        .shield-band {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .shield-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .shield-cell {
            padding: 2rem;
            background: var(--color-bg-base);
            border-radius: var(--radius-main);
            border: 1px solid var(--color-border);
        }

        /* Footer */
        .jolt {
            background-color: var(--color-bg-surface);
            border-top: 1px solid var(--color-border);
            padding: 4rem 0 2rem;
        }

        .jolt-band {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .jolt-brand {
            flex: 1 1 300px;
        }

        .jolt-brand span {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-text-main);
            display: block;
            margin-bottom: 1rem;
        }

        .jolt-links {
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
        }

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

        .jolt-column strong {
            color: var(--color-text-main);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

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

        /* Media Queries */
        @media (max-width: 1024px) {
            .portal {
                min-height: auto;
            }
            .mesh-abstract {
                max-width: 400px;
            }
        }

        @media (max-width: 768px) {
            .route {
                display: none; /* 移动端简易处理，实际应有菜单切换逻辑 */
            }
            .portal-lens-chain {
                text-align: center;
            }
            .band {
                flex-direction: column;
            }
            .apex-mega {
                font-size: 2.2rem;
            }
            .tunnel {
                padding: 4rem 0;
            }
            .jolt-links {
                gap: 2rem;
                flex-direction: column;
            }
        }

.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;
        }