/* ==========================================================================
           视觉基因与变量系统 (继承首页契约)
           ========================================================================== */
        :root {
            --bg-deep: #05080f;
            --surface-one: #0d121c;
            --surface-two: #151c28;
            --surface-glass: rgba(13, 18, 28, 0.7);
            
            --accent-core: #5bcbe1;
            --accent-glow: rgba(91, 203, 225, 0.25);
            --accent-mute: rgba(91, 203, 225, 0.1);
            
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
            --text-dark: #000000;
            
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-full: 9999px;
            
            --border-subtle: 1px solid #232d3d;
            --shadow-float: 0 24px 50px rgba(0,0,0,0.5);
            --shadow-pulse: 0 0 20px var(--accent-glow);
            
            --transition-base: 0.25s ease;
            --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            
            --layout-max: 1200px;
            --space-edge: 5%;
        }

        /* ==========================================================================
           基础重置
           ========================================================================== */
        *, *::before, *::after {
            box-sizing: border-box;
            min-width: 0;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-sans);
            background-color: var(--bg-deep);
            color: var(--text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

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

        /* ==========================================================================
           全局排版与通用组件
           ========================================================================== */
        .apex-giant {
            margin: 0 0 24px 0;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: #ffffff;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .apex-focus {
            margin: 0 0 16px 0;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.01em;
            color: var(--text-main);
            white-space: normal;
        }

        .apex-node {
            margin: 0 0 12px 0;
            font-size: 1.25rem;
            font-weight: 700;
            color: #ffffff;
            white-space: normal;
        }

        .cipher-lead {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: var(--text-muted);
            margin: 0 0 40px 0;
            max-width: 600px;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .cipher-base {
            color: var(--text-muted);
            margin: 0;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .pulse-bolt {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 36px;
            background: var(--accent-core);
            color: var(--text-dark);
            font-weight: 700;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-pulse);
            transition: all var(--transition-base);
            border: 1px solid transparent;
            cursor: pointer;
        }

        .pulse-bolt:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(91, 203, 225, 0.4);
            background: #ffffff;
        }

        .pulse-wire {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 36px;
            background: transparent;
            color: var(--text-main);
            font-weight: 600;
            border-radius: var(--radius-md);
            border: 1px solid #334155;
            transition: all var(--transition-base);
            cursor: pointer;
        }

        .pulse-wire:hover {
            border-color: var(--accent-core);
            color: var(--accent-core);
            background: var(--accent-mute);
        }

        .tunnel-core {
            display: block;
            width: 100%;
        }

        .zone-bound {
            max-width: var(--layout-max);
            margin: 0 auto;
            padding: 0 var(--space-edge);
        }

        /* ==========================================================================
           导航区域 (强制复用并补充样式)
           ========================================================================== */
        .crown-zone {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: var(--surface-glass);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: var(--border-subtle);
        }

        .orbit-mesh {
            max-width: var(--layout-max);
            margin: 0 auto;
            padding: 16px var(--space-edge);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

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

        .orbit-pod {
            display: flex;
            gap: 32px;
            align-items: center;
            flex-wrap: wrap;
        }

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

        .orbit-wire:hover {
            color: var(--text-main);
        }

        .orbit-wire.active {
            color: var(--accent-core);
            position: relative;
        }
        
        .orbit-wire.active::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent-core);
            box-shadow: 0 -2px 10px var(--accent-glow);
        }

        @media (max-width: 768px) {
            .orbit-pod {
                display: none; /* 移动端简化，此处为满足结构要求静默处理 */
            }
        }

        /* ==========================================================================
           1. 口袋里的安全网络边界 (Hero - text_dominant 变体)
           ========================================================================== */
        .portal-veil {
            padding: 200px 0 120px;
            position: relative;
            background: radial-gradient(circle at 70% 30%, var(--accent-mute) 0%, transparent 60%);
            overflow: hidden;
        }

        .portal-veil::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 0;
            pointer-events: none;
        }

        .portal-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 1;
        }

        .portal-cipher {
            flex: 1 1 500px;
            min-width: 0;
        }

        .pod-sync {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 40px;
        }

        .portal-lens {
            flex: 1 1 400px;
            min-width: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* SVG 数据结构承载 */
        .glyph-structure {
            width: 100%;
            max-width: 480px;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
        }
        
        .glyph-orbit {
            transform-origin: center;
            animation: spin 20s linear infinite;
        }
        
        .glyph-pulse {
            animation: breathe 3s ease-in-out infinite alternate;
        }

        @keyframes spin {
            100% { transform: rotate(360deg); }
        }
        @keyframes breathe {
            0% { opacity: 0.4; transform: scale(0.98); }
            100% { opacity: 1; transform: scale(1.02); }
        }

        /* ==========================================================================
           2. 移动端专属架构优化 (Feature Data 变体)
           ========================================================================== */
        .zone-matrix {
            padding: 100px 0;
            background: var(--surface-one);
            border-top: var(--border-subtle);
            border-bottom: var(--border-subtle);
        }

        .matrix-crown {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px auto;
        }

        .pod-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .packet-data {
            flex: 1 1 300px;
            min-width: 0;
            background: var(--surface-two);
            border: var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            position: relative;
            overflow: hidden;
            transition: transform var(--transition-base), box-shadow var(--transition-base);
        }

        .packet-data:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-float);
            border-color: rgba(91, 203, 225, 0.3);
        }

        .glyph-seal {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-md);
            background: var(--accent-mute);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            border: 1px solid rgba(91, 203, 225, 0.2);
            color: var(--accent-core);
        }
        
        .glyph-seal svg {
            width: 28px;
            height: 28px;
        }

        .data-metric {
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px dashed #334155;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .metric-band {
            height: 4px;
            background: #334155;
            border-radius: 2px;
            flex-grow: 1;
            margin-right: 16px;
            overflow: hidden;
        }

        .metric-fill {
            height: 100%;
            background: var(--accent-core);
            border-radius: 2px;
        }

        .metric-value {
            font-family: monospace;
            color: var(--accent-core);
            font-size: 0.9rem;
            font-weight: 700;
        }

        /* ==========================================================================
           3. 克制、专注、极简无装饰 (UI Philosophy 变体)
           ========================================================================== */
        .visor-philosophy {
            padding: 120px 0;
            background: var(--bg-deep);
        }

        .philosophy-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: stretch;
            gap: 60px;
        }

        .philosophy-cipher {
            flex: 1 1 450px;
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .peg-mesh {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 32px;
        }

        .peg-row {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background: var(--surface-one);
            padding: 20px;
            border-radius: var(--radius-md);
            border: 1px solid transparent;
            transition: all var(--transition-base);
        }
        
        .peg-row:hover {
            border-color: #232d3d;
            background: var(--surface-two);
        }

        .peg-dot {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--accent-mute);
            border: 2px solid var(--accent-core);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .peg-dot::inner {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-core);
        }

        .philosophy-ui {
            flex: 1 1 450px;
            min-width: 0;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* 纯CSS构建的抽象UI面板 */
        .cloak-mockup {
            width: 320px;
            height: 640px;
            background: #ffffff; /* 浅色模式隐喻 */
            border-radius: 40px;
            padding: 20px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.8), inset 0 0 0 8px #1e293b;
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .mockup-crown {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 10px 20px;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .mockup-pill {
            width: 60px;
            height: 16px;
            background: #e2e8f0;
            border-radius: 8px;
        }

        .mockup-node-tunnel {
            flex-grow: 1;
            background: #f8fafc;
            border-radius: 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
            border: 1px solid #e2e8f0;
        }

        .mockup-ring {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 8px solid var(--accent-core);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .mockup-ring::after {
            content: '';
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--accent-mute);
        }

        .mockup-band {
            width: 80%;
            height: 12px;
            background: #e2e8f0;
            border-radius: 6px;
        }

        .mockup-node-sub {
            height: 120px;
            background: #f1f5f9;
            border-radius: 20px;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }
        
        .mockup-band {
            width: 15%;
            background: #cbd5e1;
            border-radius: 4px;
        }
        .mockup-band:nth-child(1) { height: 40%; }
        .mockup-band:nth-child(2) { height: 70%; }
        .mockup-band:nth-child(3) { height: 100%; background: var(--accent-core); }
        .mockup-band:nth-child(4) { height: 60%; }
        .mockup-band:nth-child(5) { height: 30%; }

        /* ==========================================================================
           页脚区域 (继承基底)
           ========================================================================== */
        .anchor-crypt {
            border-top: var(--border-subtle);
            background: var(--surface-one);
            padding: 60px 0 40px;
        }

        .crypt-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 60px;
        }

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

        .crypt-sigil {
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .crypt-pod {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
        }

        .crypt-col {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .crypt-apex {
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .crypt-wire {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        .crypt-wire:hover {
            color: var(--accent-core);
        }

        .crypt-heel {
            border-top: 1px solid #1e293b;
            padding-top: 24px;
            text-align: center;
            font-size: 0.85rem;
            color: #64748b;
        }

        /* ==========================================================================
           响应式调整
           ========================================================================== */
        @media (max-width: 1024px) {
            .portal-veil { padding: 150px 0 80px; }
            .zone-matrix { padding: 80px 0; }
            .visor-philosophy { padding: 80px 0; }
        }

        @media (max-width: 768px) {
            .portal-grid,
            .philosophy-grid {
                flex-direction: column;
            }
            .pod-sync {
                flex-direction: column;
                width: 100%;
            }
            .pulse-bolt,
            .pulse-wire {
                width: 100%;
            }
            .matrix-crown {
                text-align: left;
            }
            .crypt-pod {
                flex-direction: column;
                gap: 30px;
            }
        }

.route-crown-zone {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-main);
}
.route-crown-zone,
.route-crown-zone *,
.route-crown-zone *::before,
.route-crown-zone *::after {
    box-sizing: border-box;
}

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

.route-crown-zone p,
.route-crown-zone h1,
.route-crown-zone h2,
.route-crown-zone h3,
.route-crown-zone h4,
.route-crown-zone h5,
.route-crown-zone h6 {
    text-decoration: none;
}

.route-crown-zone img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.route-crown-zone {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.route-crown-zone a.route-orbit-wire {
    --aisite-shell-nav-padding: 8px 16px;
    --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;
}

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

.route-crown-zone{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(5, 8, 15, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #232d3d;
        }

.route-crown-zone .route-orbit-mesh{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

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

.route-crown-zone .route-sigil img{
            height: 28px;
            width: auto;
            display: block;
        }

.route-crown-zone .route-orbit-pod{
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

.route-crown-zone .route-orbit-wire{
            padding: 8px 16px;
            font-size: 0.95rem;
            color: #94a3b8;
            border-radius: 6px;
            transition: all 0.25s ease;
            font-weight: 500;
        }

.route-crown-zone .route-orbit-wire:hover, .route-crown-zone .route-orbit-wire.active{
            color: #5bcbe1;
            background: rgba(91, 203, 225, 0.1);
        }

@media (max-width: 768px){.route-crown-zone .route-orbit-mesh{
                flex-direction: column;
                height: auto;
                padding: 16px 24px;
                gap: 16px;
            }

.route-crown-zone .route-orbit-pod{
                justify-content: center;
            }}

.route-crown-zone {
    background: rgb(5, 8, 15);
    background-image: none;
}

.anchor-anchor-crypt {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-main);
}
.anchor-anchor-crypt,
.anchor-anchor-crypt *,
.anchor-anchor-crypt *::before,
.anchor-anchor-crypt *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-anchor-crypt .anchor-zone-bound{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

.anchor-anchor-crypt{
            background: #000000;
            border-top: 1px solid #232d3d;
            padding: 60px 0 40px;
            text-align: center;
        }

.anchor-anchor-crypt .anchor-crypt-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }

.anchor-anchor-crypt .anchor-crypt-mesh{
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 32px;
            margin-bottom: 40px;
        }

.anchor-anchor-crypt .anchor-crypt-wire{
            color: #94a3b8;
            font-size: 0.95rem;
            transition: all 0.25s ease;
        }

.anchor-anchor-crypt .anchor-crypt-wire:hover{
            color: #5bcbe1;
        }

.anchor-anchor-crypt .anchor-crypt-cipher{
            color: #475569;
            font-size: 0.85rem;
        }