/* === 视觉契约 & 基因参数 === */
        :root {
            --brand-color: #dc5486;
            --brand-color-hover: #c44070;
            --brand-glow: rgba(220, 84, 134, 0.3);
            
            --bg-base: #f9f9fa;
            --bg-surface: #ffffff;
            --bg-deep: #16161a;
            --bg-deep-surface: #24242c;
            
            --text-primary: #1a1a24;
            --text-secondary: #5c5c6b;
            --text-muted: #9494a3;
            --text-on-dark: #f0f0f4;
            --text-on-dark-muted: #a0a0b0;
            
            --border-color: #eaeaea;
            --border-dark: rgba(255, 255, 255, 0.1);
            
            --radius-sm: 11px;
            --radius-md: 14px;
            --radius-lg: 17px;
            
            --shadow-sm: 0 4px 12px rgba(28, 28, 38, 0.08);
            --shadow-md: 0 16px 40px rgba(28, 28, 38, 0.12);
            --shadow-glow: 0 8px 30px var(--brand-glow);
            
            --transition: 0.25s ease;
            --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        /* === 基础重置 === */
        *, *::before, *::after {
            box-sizing: border-box;
            min-width: 0; /* Flex safe */
        }
        
        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-base);
            background-color: var(--bg-base);
            color: var(--text-primary);
            line-height: 1.6;
            word-break: break-word;
            overflow-wrap: break-word;
            -webkit-font-smoothing: antialiased;
        }

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

        /* === 排版系统 === */
        .apex {
            font-weight: 700;
            white-space: normal;
            letter-spacing: -0.02em;
            margin: 0 0 1rem 0;
        }
        
        .apex-1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; }
        .apex-2 { font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.2; }
        .apex-3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); line-height: 1.3; }
        
        .cipher {
            font-size: clamp(1rem, 1.5vw, 1.125rem);
            color: var(--text-secondary);
            margin: 0 0 1.5rem 0;
            word-break: keep-all; /* 中文优化 */
        }
        
        .cipher-dark {
            color: var(--text-on-dark-muted);
        }

        /* === 布局容器 === */
        .veil {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

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

        .pack-col {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .pack-center {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        /* === 强制导航栏样式复用 (直接复用结构对应的样式) === */
        .crown {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(249, 249, 250, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-color);
            transition: all var(--transition);
        }

        .helm {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            height: 72px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

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

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

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

        .wire {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-secondary);
            position: relative;
        }

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

        .wire.active::after {
            content: '';
            position: absolute;
            bottom: -24px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--brand-color);
            border-radius: 3px 3px 0 0;
        }

        /* === 页面变体：Hero 区块 (Dark Mode 结合浮动卡片) === */
        .portal {
            min-height: 95vh;
            padding-top: 120px;
            padding-bottom: 80px;
            background: linear-gradient(135deg, var(--bg-deep) 0%, #0d0d12 100%);
            color: var(--text-on-dark);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        /* 背景装饰几何体 */
        .portal::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -5%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(220, 84, 134, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .portal .veil {
            position: relative;
            z-index: 1;
        }

        .portal-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        /* 行动按钮语法 */
        .warp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            background-color: var(--brand-color);
            color: #ffffff;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: var(--radius-sm);
            border: none;
            box-shadow: var(--shadow-glow);
            cursor: pointer;
            transition: all var(--transition);
            text-align: center;
        }

        .warp:hover, .warp:focus {
            background-color: var(--brand-color-hover);
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(220, 84, 134, 0.4);
        }

        /* 英雄区：数据特征点 */
        .pulse-pack {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        
        .pulse-bit {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .pulse-glyph {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(220, 84, 134, 0.1);
            border: 1px solid rgba(220, 84, 134, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-color);
        }

        .pulse-cipher {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--text-on-dark);
        }

        /* 英雄区：创意种子 card_float */
        .float-stage {
            position: relative;
            height: 500px;
            width: 100%;
            perspective: 1000px;
        }

        .vault-float {
            position: absolute;
            background: rgba(36, 36, 44, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--border-dark);
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.1);
            transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .vault-float:hover {
            transform: translateY(-10px) scale(1.02) !important; /* 覆盖内联动画 */
        }

        .vault-primary {
            top: 10%;
            right: 10%;
            width: 320px;
            z-index: 2;
            animation: float-slow 6s ease-in-out infinite;
        }

        .vault-secondary {
            bottom: 15%;
            left: 0;
            width: 280px;
            z-index: 1;
            animation: float-slow 8s ease-in-out infinite alternate;
        }

        @keyframes float-slow {
            0% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0); }
        }

        .data-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-dark);
        }
        .data-row:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .data-tag { color: var(--text-on-dark-muted); font-size: 0.9rem; }
        .data-value { font-weight: 700; color: var(--text-on-dark); font-size: 1.2rem; display: flex; align-items: center; gap: 0.5rem; }
        .data-highlight { color: #4ade80; } /* 绿色表示良好状态 */

        /* === 页面变体：Technology 区块 (文本层次与图解) === */
        .nexus {
            padding: 100px 0;
            background-color: var(--bg-base);
            position: relative;
        }

        .nexus-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .route-flow {
            background: var(--bg-surface);
            border-radius: var(--radius-lg);
            padding: 3rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
            position: relative;
        }

        .route-node {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            position: relative;
            padding-bottom: 3rem;
        }
        
        .route-node:last-child {
            padding-bottom: 0;
        }

        .route-node::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 48px;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--brand-color) 0%, rgba(220, 84, 134, 0.1) 100%);
        }

        .route-node:last-child::before {
            display: none;
        }

        .route-glyph {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: var(--bg-base);
            border: 2px solid var(--brand-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-color);
            z-index: 2;
            flex-shrink: 0;
        }

        .route-cipher h3 {
            margin: 0 0 0.5rem 0;
            font-size: 1.25rem;
            color: var(--text-primary);
        }

        .route-cipher p {
            margin: 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* === 页面变体：Compatibility 区块 (网格卡片) === */
        .cloak {
            padding: 100px 0;
            background-color: var(--bg-surface);
        }

        .cloak .pack-center {
            margin-bottom: 4rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .pod-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        /* 沿用首页卡片表面语法 */
        .pod-node {
            background: rgba(255, 255, 255, 0.95);
            padding: 2.5rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .pod-node:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: rgba(220, 84, 134, 0.3);
        }

        .pod-glyph {
            width: 64px;
            height: 64px;
            border-radius: var(--radius-md);
            background: linear-gradient(135deg, rgba(220, 84, 134, 0.1) 0%, transparent 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--brand-color);
        }

        .pod-node h3 {
            font-size: 1.4rem;
            margin: 0 0 1rem 0;
            color: var(--text-primary);
        }

        .pod-node p {
            color: var(--text-secondary);
            margin: 0;
            flex-grow: 1;
        }

        /* === 页脚 === */
        .core {
            background-color: var(--bg-deep);
            color: var(--text-on-dark-muted);
            padding: 60px 0 30px;
            border-top: 1px solid #2a2a35;
        }

        .anchor-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .anchor-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-on-dark);
            margin-bottom: 1rem;
            display: inline-block;
        }

        .anchor-apex {
            color: var(--text-on-dark);
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .anchor-mesh {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .anchor-wire {
            color: var(--text-on-dark-muted);
            font-size: 0.95rem;
        }

        .anchor-wire:hover {
            color: var(--brand-color);
        }

        .abyss {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
            font-size: 0.85rem;
        }

        /* === 响应式断点 === */
        @media (max-width: 1024px) {
            .portal-grid,
            .nexus-layout {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .float-stage {
                height: 400px;
            }
            
            .vault-primary {
                position: relative;
                top: 0; right: 0;
                width: 100%;
                max-width: 400px;
                margin: 0 auto;
            }
            
            .vault-secondary {
                display: none; /* 移动端简化视觉 */
            }

            .anchor-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .mesh {
                display: none; /* 移动端菜单折叠，依赖JS或CSS Checkbox，此处保持HTML结构不破坏前提下简化 */
            }
            
            .helm {
                justify-content: center; /* 居中Logo */
            }

            .apex-1 { font-size: 2rem; }
            .apex-2 { font-size: 1.75rem; }
            
            .portal { padding-top: 100px; padding-bottom: 60px; }
            .nexus, .cloak { padding: 60px 0; }
            
            .pod-grid {
                grid-template-columns: 1fr;
            }

            .anchor-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .route-node { flex-direction: column; align-items: center; text-align: center; }
            .route-node::before { display: none; }
        }

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

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

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

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

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

.route-crown a.route-wire {
    --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;
}

.route-crown a.route-wire,
.route-crown a.route-wire:hover,
.route-crown a.route-wire:focus,
.route-crown a.route-wire:active,
.route-crown a.route-wire.active,
.route-crown a.route-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 .route-helm{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.route-crown{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            z-index: 100;
            padding: 1rem 0;
            transition: all 0.25s ease;
        }

.route-crown .route-helm{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1.5rem;
        }

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

.route-crown .route-seal img{
            height: 36px;
            width: auto;
            display: block;
        }

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

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

.route-crown .route-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #5c5c6b;
            position: relative;
            padding: 0.5rem 0;
        }

.route-crown .route-wire:hover{
            color: #dc5486;
        }

.route-crown .route-wire.active{
            color: #dc5486;
            font-weight: 600;
        }

.route-crown .route-wire.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #dc5486;
            border-radius: 2px;
        }

@media (max-width: 768px){.route-crown .route-mesh{
                display: none; 
            }}

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

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

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

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

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

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

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

.anchor-core .anchor-apex{
            font-weight: 700;
            color: #1a1a24;
            word-break: keep-all;
            overflow-wrap: break-word;
            white-space: normal;
        }

.anchor-core .anchor-cipher{
            word-break: keep-all;
            overflow-wrap: break-word;
            color: #5c5c6b;
        }

.anchor-core .anchor-apex-3{ font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.3; }

.anchor-core .anchor-tunnel-inner{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.anchor-core .anchor-pack{
            display: flex;
            flex-wrap: wrap;
        }

.anchor-core .anchor-pack > *{
            min-width: 0;
        }

.anchor-core .anchor-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #5c5c6b;
            position: relative;
            padding: 0.5rem 0;
        }

.anchor-core .anchor-wire:hover{
            color: #dc5486;
        }

.anchor-core .anchor-wire.active{
            color: #dc5486;
            font-weight: 600;
        }

.anchor-core .anchor-wire.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #dc5486;
            border-radius: 2px;
        }

.anchor-core{
            background-color: #111116;
            color: #ffffff;
            padding: 5rem 0 3rem;
        }

.anchor-core .anchor-core-grid{
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

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

.anchor-core .anchor-anchor .anchor-apex-3{
            color: #ffffff;
            margin-bottom: 1rem;
        }

.anchor-core .anchor-anchor .anchor-wire{
            color: #9494a3;
            font-size: 0.95rem;
            padding: 0;
            display: inline-block;
        }

.anchor-core .anchor-anchor .anchor-wire:hover{
            color: #ffffff;
        }

.anchor-core .anchor-moat{
            border-top: 1px solid #3a3a46;
            padding-top: 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            color: #9494a3;
            font-size: 0.875rem;
        }

.anchor-core .anchor-moat > *{ min-width: 0; }

.anchor-core .anchor-brand-cipher{
            font-size: 1.75rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: #ffffff;
            margin-bottom: 1rem;
        }

@media (max-width: 1024px){.anchor-core .anchor-core-grid{
                grid-template-columns: 1fr 1fr 1fr;
            }}

@media (max-width: 768px){.anchor-core .anchor-core-grid{
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

.anchor-core .anchor-moat{
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }}