/* 
         * 视觉基因：杂志专题型 
         * 色彩系统：#e2566b (Nova Red), 极简黑白灰层次
         */
        :root {
            --nova-primary: #e2566b;
            --nova-primary-dark: #c03d50;
            --nova-dark: #0a0b0d;
            --nova-dark-layer: #16181d;
            --nova-light: #f8f9fa;
            --nova-gray: #8a8d93;
            --nova-text-main: #2c3038;
            --nova-text-inverse: #e9ecef;
            --radius-md: 12px;
            --radius-lg: 16px;
            --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
            --shadow-hover: 0 15px 40px rgba(226, 86, 107, 0.15);
            --transition: 0.15s ease;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--nova-light);
            color: var(--nova-text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* 强制文本换行与基础排版 */
        .echo {
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all; /* 中文优化 */
        }
        
        .apex {
            white-space: normal;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        /* 强制Flex规则 */
        .pool, .band, .orbit, .mesh {
            display: flex;
            flex-wrap: wrap;
        }
        .pool > *, .band > *, .orbit > *, .mesh > * {
            min-width: 0;
        }

        /* --- 导航区域 (Crown) --- */
        .crown {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(10, 11, 13, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding: 1rem 5vw;
            justify-content: space-between;
            align-items: center;
        }

        .crest {
            display: flex;
            align-items: center;
            height: 32px;
        }
        
        .crest img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }

        .mesh {
            gap: 2rem;
            align-items: center;
        }

        .wire {
            color: var(--nova-text-inverse);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color var(--transition);
            position: relative;
        }

        .wire:hover, .wire.active {
            color: var(--nova-primary);
        }

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

        /* --- Hero区域 (Vault - Split Diagonal) --- */
        .vault {
            position: relative;
            background: var(--nova-dark);
            color: var(--nova-text-inverse);
            min-height: 90vh;
            padding-top: 80px; /* 抵消固定导航 */
            overflow: hidden;
            align-items: center;
        }

        .vault-echo-veil {
            flex: 1 1 45%;
            padding: 5rem 2rem 5rem 5vw;
            z-index: 2;
        }

        .vault-lens-veil {
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            z-index: 1;
            /* 核心蓝图：对角线分割 (15-30度) */
            clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
            background: var(--nova-dark-layer);
        }

        .vault-lens-veil img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.85;
            mix-blend-mode: luminosity;
            transition: opacity var(--transition);
        }
        
        .vault-lens-veil::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, var(--nova-dark) 0%, rgba(10,11,13,0) 40%);
        }

        .vault .apex {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff 0%, #a0a5b0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .vault .echo {
            font-size: 1.15rem;
            color: var(--nova-gray);
            margin-bottom: 2.5rem;
            max-width: 500px;
        }

        /* 标签/属性标识 */
        .seal-band {
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .seal-fiber {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: var(--nova-primary);
            background: rgba(226, 86, 107, 0.1);
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-weight: 600;
        }

        /* 交互按钮 (Warp) */
        .warp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1rem 2.5rem;
            background: var(--nova-primary);
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 30px;
            border: 2px solid var(--nova-primary);
            transition: all var(--transition);
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(226, 86, 107, 0.3);
        }

        .warp:hover {
            background: transparent;
            color: var(--nova-primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(226, 86, 107, 0.1);
        }
        
        .warp-ghost {
            background: transparent;
            color: var(--nova-text-inverse);
            border-color: rgba(255,255,255,0.2);
            box-shadow: none;
        }
        
        .warp-ghost:hover {
            border-color: #fff;
            color: #fff;
        }

        .dart-band {
            gap: 1rem;
            align-items: center;
        }

        /* --- 隐私防护区 (Article: Shell) --- */
        .veil {
            background: var(--nova-dark-layer);
            color: var(--nova-text-inverse);
            padding: 8rem 5vw;
        }

        .veil-orbit {
            max-width: 1400px;
            margin: 0 auto;
            gap: 5rem;
            align-items: center;
        }

        .veil-lens-veil {
            flex: 1 1 40%;
            position: relative;
        }

        .veil-lens-veil img {
            width: 100%;
            border-radius: var(--radius-lg);
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.05);
        }
        
        /* 装饰性数据流效果 */
        .data-overlay {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, var(--nova-primary) 0%, transparent 70%);
            opacity: 0.15;
            filter: blur(20px);
            z-index: 0;
        }

        .veil-echo-veil {
            flex: 1 1 50%;
            z-index: 1;
        }

        .veil .apex {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
            color: #fff;
        }
        
        .veil .lead-echo {
            font-size: 1.25rem;
            color: var(--nova-gray);
            margin-bottom: 3rem;
            border-left: 3px solid var(--nova-primary);
            padding-left: 1.5rem;
        }

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

        .feature-fiber {
            background: rgba(255,255,255,0.02);
            padding: 2rem;
            border-radius: var(--radius-md);
            border: 1px solid rgba(255,255,255,0.05);
            transition: transform var(--transition);
        }
        
        .feature-fiber:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.04);
        }

        .feature-fiber .glyph {
            width: 48px;
            height: 48px;
            color: var(--nova-primary);
            margin-bottom: 1.5rem;
        }

        .feature-fiber h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: #fff;
        }
        
        .feature-fiber p {
            color: var(--nova-gray);
            font-size: 0.95rem;
        }

        /* --- 站内内容承接/专题切片 (Aside: Tube) --- */
        .tube {
            padding: 8rem 5vw;
            background: #fff;
        }

        .tube-crown {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
        }

        .tube-crown .apex {
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            color: var(--nova-dark);
            margin-bottom: 1rem;
        }
        
        .tube-crown .echo {
            color: #555;
            font-size: 1.15rem;
        }

        .shard-pool {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .shard {
            background: var(--nova-light);
            border-radius: var(--radius-lg);
            padding: 3rem 2.5rem;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0,0,0,0.04);
            box-shadow: var(--shadow-soft);
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }

        .shard::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--nova-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .shard:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            background: #fff;
        }
        
        .shard:hover::before {
            transform: scaleX(1);
        }

        .shard-glyph {
            width: 56px;
            height: 56px;
            background: rgba(226, 86, 107, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--nova-primary);
            margin-bottom: 2rem;
        }
        
        .shard-glyph svg {
            width: 28px;
            height: 28px;
        }

        .shard h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--nova-dark);
        }

        .shard p {
            color: #555;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            flex-grow: 1;
        }
        
        /* 增加信息密度：路径卡内的子摘要 */
        .shard-sub-pool {
            margin-top: auto;
            border-top: 1px solid rgba(0,0,0,0.05);
            padding-top: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .shard-sub-fiber {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: #666;
        }
        
        .shard-sub-fiber svg {
            width: 14px;
            height: 14px;
            color: var(--nova-primary);
        }

        .shard-dart {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--nova-primary);
            font-weight: 600;
            margin-top: 1.5rem;
            font-size: 0.95rem;
        }
        
        .shard:hover .shard-dart svg {
            transform: translateX(5px);
        }
        
        .shard-dart svg {
            transition: transform var(--transition);
        }

        /* --- 价值主张/信任区 (Article: Proof) --- */
        .proof-cloak {
            padding: 8rem 5vw;
            background: var(--nova-light);
            border-top: 1px solid rgba(0,0,0,0.03);
        }
        
        .proof-orbit {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .proof-crown {
            margin-bottom: 5rem;
        }
        
        .proof-crown .apex {
            font-size: clamp(2rem, 3.5vw, 2.5rem);
            color: var(--nova-dark);
            margin-bottom: 1rem;
            max-width: 600px;
        }

        .node-pool {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .node {
            display: flex;
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 3rem;
            gap: 3rem;
            align-items: center;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(0,0,0,0.02);
            transition: transform var(--transition);
        }
        
        .node:hover {
            transform: translateX(10px);
            border-color: rgba(226, 86, 107, 0.2);
        }
        
        .node-num {
            font-size: 4rem;
            font-weight: 900;
            color: rgba(226, 86, 107, 0.1);
            line-height: 1;
        }

        .node-echo-veil {
            flex: 1;
        }

        .node h3 {
            font-size: 1.5rem;
            color: var(--nova-dark);
            margin-bottom: 1rem;
        }

        .node p {
            color: #555;
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
        }

        /* --- 页脚 (Tail) --- */
        .tail {
            background: #050608;
            color: var(--nova-gray);
            padding: 4rem 5vw 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        
        .tail-orbit {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .tail-brand {
            flex: 1 1 300px;
        }
        
        .tail-brand h2 {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }
        
        .tail-brand p {
            font-size: 0.9rem;
            max-width: 300px;
        }

        .tail-mesh {
            display: flex;
            gap: 4rem;
            flex-wrap: wrap;
        }
        
        .tail-pool {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .tail-pool h4 {
            color: #fff;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }
        
        .tail-pool a {
            color: var(--nova-gray);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color var(--transition);
        }
        
        .tail-pool a:hover {
            color: var(--nova-primary);
        }

        .tail-base {
            max-width: 1400px;
            margin: 2rem auto 0;
            text-align: center;
            font-size: 0.85rem;
        }

        /* --- 响应式断点 --- */
        @media (max-width: 1024px) {
            .vault-lens-veil {
                width: 50%;
            }
            .veil-orbit {
                flex-direction: column;
                gap: 4rem;
            }
            .veil-lens-veil, .veil-echo-veil {
                flex: 1 1 100%;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .crown {
                padding: 1rem 5vw;
                flex-direction: column;
                gap: 1rem;
            }
            .mesh {
                gap: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            /* Mobile Hero: 改变对角线方向为水平偏斜或堆叠 */
            .vault {
                flex-direction: column;
                padding-top: 120px;
            }
            .vault-echo-veil {
                flex: 1 1 100%;
                order: 2;
                padding: 3rem 5vw;
            }
            .vault-lens-veil {
                position: relative;
                width: 100%;
                height: 40vh;
                order: 1;
                clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
            }
            
            .node {
                flex-direction: column;
                gap: 1.5rem;
                padding: 2rem;
            }
            .node:hover {
                transform: translateY(-5px);
            }
            
            .dart-band {
                flex-direction: column;
                align-items: stretch;
            }
            .warp {
                text-align: center;
            }
        }

.helm-crown.helm-pool {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--nova-text-main);
}
.helm-crown.helm-pool,
.helm-crown.helm-pool *,
.helm-crown.helm-pool *::before,
.helm-crown.helm-pool *::after {
    box-sizing: border-box;
}

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

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

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

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

.helm-crown.helm-pool a.helm-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;
}

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

.helm-crown.helm-pool .helm-pool, .helm-crown.helm-pool .helm-mesh{
            display: flex;
            flex-wrap: wrap;
        }

.helm-crown.helm-pool .helm-pool > *, .helm-crown.helm-pool .helm-mesh > *{
            min-width: 0;
        }

.helm-crown.helm-pool .helm-crown{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(10, 11, 13, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding: 1rem 5vw;
            justify-content: space-between;
            align-items: center;
        }

.helm-crown.helm-pool .helm-crest{
            display: flex;
            align-items: center;
            height: 32px;
        }

.helm-crown.helm-pool .helm-crest img{
            height: 100%;
            width: auto;
            object-fit: contain;
        }

.helm-crown.helm-pool .helm-mesh{
            gap: 2rem;
            align-items: center;
        }

.helm-crown.helm-pool .helm-wire{
            color: #e9ecef;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.15s ease;
            position: relative;
        }

.helm-crown.helm-pool .helm-wire:hover, .helm-crown.helm-pool .helm-wire.active{
            color: #e2566b;
        }

.helm-crown.helm-pool .helm-wire.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #e2566b;
            border-radius: 2px;
        }

@media (max-width: 768px){.helm-crown.helm-pool .helm-crown{
                padding: 1rem 5vw;
                flex-direction: column;
                gap: 1rem;
            }

.helm-crown.helm-pool .helm-mesh{
                gap: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }}

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

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

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

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

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

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

.crypt-tail .crypt-echo{
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all; 
        }

.crypt-tail{
            background: #050608;
            color: #8a8d93;
            padding: 4rem 5vw 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

.crypt-tail .crypt-tail-orbit{
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

.crypt-tail .crypt-tail-brand{
            flex: 1 1 300px;
        }

.crypt-tail .crypt-tail-brand h2{
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

.crypt-tail .crypt-tail-brand p{
            font-size: 0.9rem;
            max-width: 300px;
        }

.crypt-tail .crypt-tail-mesh{
            display: flex;
            gap: 4rem;
            flex-wrap: wrap;
        }

.crypt-tail .crypt-tail-pool{
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

.crypt-tail .crypt-tail-pool h4{
            color: #fff;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

.crypt-tail .crypt-tail-pool a{
            color: #8a8d93;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.15s ease;
        }

.crypt-tail .crypt-tail-pool a:hover{
            color: #e2566b;
        }

.crypt-tail .crypt-tail-base{
            max-width: 1400px;
            margin: 2rem auto 0;
            text-align: center;
            font-size: 0.85rem;
        }