/* === 变量系统 (继承自首页) === */
        :root {
            --color-bg: #090a10;
            --color-bg-alt: #121420;
            --color-primary: #2f34d1;
            --color-primary-light: #5257f5;
            --color-primary-glow: rgba(47, 52, 209, 0.3);
            --color-text-main: #f1f5f9;
            --color-text-muted: #94a3b8;
            --color-border: rgba(255, 255, 255, 0.08);
            --color-vault-bg: rgba(255, 255, 255, 0.02);
            --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
            --radius-md: 8px;
            --radius-lg: 12px;
            --transition: 0.15s ease;
        }

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

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

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

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

        /* === 强制文本换行与Flex规则 === */
        .cipher, 
        .apex, 
        p, h1, h2, h3, h4, span, div {
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .cluster-flex,
        .vault-cluster,
        .node-cluster,
        .sole-cluster {
            display: flex;
            flex-wrap: wrap;
        }

        .cluster-flex > *,
        .vault-cluster > *,
        .node-cluster > *,
        .sole-cluster > * {
            min-width: 0;
        }

        /* === 容器布局 === */
        .site-mantle {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .tube-bound {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .core-zone {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* === 导航栏 (复用结构样式) === */
        .crown-helm {
            background: rgba(9, 10, 16, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 1rem 0;
        }

        .helm-layout {
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        .sigil-mark img {
            height: 28px;
            width: auto;
        }

        .route-mesh {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            flex: 1;
            justify-content: center;
        }
        
        .route-mesh > * { min-width: 0; }

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

        .route-wire:hover, 
        .route-wire.active {
            color: var(--color-text-main);
        }

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

        /* === 按钮/行动入口语法 === */
        .pulse-key {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 1.75rem;
            border-radius: var(--radius-md);
            font-weight: 600;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all var(--transition);
            white-space: normal;
            text-align: center;
        }

        .pulse-primary {
            background-color: var(--color-primary);
            color: #fff;
            box-shadow: 0 4px 14px var(--color-primary-glow);
        }

        .pulse-primary:hover,
        .pulse-primary:focus {
            background-color: var(--color-primary-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px var(--color-primary-glow);
        }

        .pulse-ghost {
            background-color: transparent;
            color: var(--color-text-main);
            border: 1px solid var(--color-border);
        }

        .pulse-ghost:hover {
            background-color: var(--color-vault-bg);
            border-color: var(--color-text-muted);
        }

        /* === 1. Hero区块 (section - intro) === */
        .cloak-zone {
            padding: calc(clamp(3rem, 6vw, 7rem) * 1.5) 0 clamp(3rem, 6vw, 7rem);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        /* 脉冲背景动效 */
        .cloak-zone::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80vw;
            height: 80vw;
            max-width: 800px;
            max-height: 800px;
            background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 60%);
            opacity: 0.5;
            z-index: 0;
            pointer-events: none;
        }

        .cloak-layout {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .aura-apex {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
            white-space: normal;
        }

        .aura-apex span {
            background: linear-gradient(135deg, #fff 0%, var(--color-text-muted) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .aura-apex .highlight-cipher {
            background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .aura-cipher {
            font-size: clamp(1.125rem, 2vw, 1.375rem);
            color: var(--color-text-muted);
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            word-break: keep-all;
        }
        
        .cloak-actions {
            justify-content: center;
            gap: 1rem;
        }

        /* === 2. 功能专线区块 (div - capability) === */
        .capability-zone {
            padding: clamp(3rem, 5vw, 6rem) 0;
            background: linear-gradient(to bottom, transparent, rgba(18, 20, 32, 0.4) 50%, transparent);
        }

        .zone-crown {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .zone-apex {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
        }

        .zone-cipher {
            color: var(--color-text-muted);
            font-size: 1.125rem;
        }

        .vault-cluster {
            gap: 2rem;
            justify-content: center;
        }

        .vault-cell {
            flex: 1 1 320px;
            background: var(--color-bg-alt);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
            position: relative;
            overflow: hidden;
        }

        .vault-cell::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
            opacity: 0;
            transition: opacity var(--transition);
        }

        .vault-cell:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.4);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .vault-cell:hover::before {
            opacity: 1;
        }

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

        .vault-apex {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

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

        /* === 3. 游戏支持区块 (aside - detail) === */
        .detail-zone {
            padding: clamp(3rem, 5vw, 6rem) 0;
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
            background-color: var(--color-bg-alt);
        }

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

        .detail-cipher {
            max-width: 500px;
        }

        .detail-apex {
            font-size: clamp(2rem, 3.5vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1.25rem;
            line-height: 1.2;
        }

        .detail-cipher {
            color: var(--color-text-muted);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .node-cluster {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .node-cell {
            background: var(--color-bg);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            transition: border-color var(--transition);
        }

        .node-cell:hover {
            border-color: var(--color-primary);
        }

        .node-glyph {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(47, 52, 209, 0.1);
            border-radius: 10px;
            color: var(--color-primary-light);
        }

        .node-mantle {
            flex: 1;
            min-width: 0;
        }

        .node-apex {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .node-cipher {
            color: var(--color-text-muted);
            font-size: 0.9rem;
        }

        /* === 4. 转化区块 (div - closing) === */
        .closing-zone {
            padding: clamp(4rem, 8vw, 8rem) 0;
            text-align: center;
            position: relative;
        }

        .closing-mantle {
            background: linear-gradient(145deg, var(--color-bg-alt) 0%, rgba(47, 52, 209, 0.1) 100%);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: clamp(3rem, 5vw, 5rem) 2rem;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .closing-apex {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .closing-cipher {
            color: var(--color-text-muted);
            font-size: 1.125rem;
            margin-bottom: 2.5rem;
        }

        /* === 页脚 (继承结构) === */
        .sole-anchor {
            border-top: 1px solid var(--color-border);
            padding: 4rem 0 2rem;
            background: var(--color-bg);
            margin-top: auto;
        }

        .sole-cluster {
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .sole-brand {
            max-width: 300px;
        }
        
        .sole-brand-cipher {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .sole-cipher {
            color: var(--color-text-muted);
            font-size: 0.9rem;
        }

        .sole-helm {
            display: flex;
            gap: 4rem;
            flex-wrap: wrap;
        }
        
        .sole-helm > * { min-width: 0; }

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

        .sole-apex {
            font-weight: 600;
            color: var(--color-text-main);
            margin-bottom: 0.5rem;
        }

        .sole-wire {
            color: var(--color-text-muted);
            font-size: 0.9rem;
        }

        .sole-wire:hover {
            color: var(--color-primary-light);
        }

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

        /* === 响应式断点 === */
        @media (max-width: 1024px) {
            .detail-layout {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .detail-cipher {
                max-width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .helm-layout {
                flex-direction: column;
                gap: 1rem;
            }
            .route-mesh {
                gap: 1rem;
            }
            .vault-cell {
                flex: 1 1 100%;
            }
            .node-cluster {
                grid-template-columns: 1fr;
            }
            .sole-helm {
                gap: 2rem;
                flex-direction: column;
            }
        }

.helm-crown-helm {
    font-family: var(--font-sans);
    line-height: 1.6;
    word-break: break-word;
    color: var(--color-text-main);
}
.helm-crown-helm,
.helm-crown-helm *,
.helm-crown-helm *::before,
.helm-crown-helm *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.helm-crown-helm .helm-cluster-flex{
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

.helm-crown-helm .helm-tube-bound{
            width: 100%;
            max-width: 1360px;
            margin: 0 auto;
            padding-left: clamp(1rem, 4vw, 2rem);
            padding-right: clamp(1rem, 4vw, 2rem);
        }

.helm-crown-helm{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(9, 10, 16, 0.8);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 1rem 0;
        }

.helm-crown-helm .helm-helm-layout{
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

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

.helm-crown-helm .helm-sigil-mark img{
            height: 100%;
            object-fit: contain;
        }

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

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

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

.helm-crown-helm .helm-route-wire.active{
            color: #f1f5f9;
        }

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

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

.helm-crown-helm .helm-pulse-key{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 1.75rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            border: 1px solid transparent;
            gap: 0.5rem;
        }

.helm-crown-helm .helm-pulse-primary{
            background-color: #2f34d1;
            color: #fff;
            box-shadow: 0 4px 14px rgba(47, 52, 209, 0.3);
        }

.helm-crown-helm .helm-pulse-primary:hover{
            background-color: #5257f5;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(47, 52, 209, 0.3);
        }

.helm-crown-helm {
    background: rgb(9, 10, 16);
    background-image: none;
}

.anchor-sole-anchor {
    font-family: var(--font-sans);
    line-height: 1.6;
    word-break: break-word;
    color: var(--color-text-main);
}
.anchor-sole-anchor,
.anchor-sole-anchor *,
.anchor-sole-anchor *::before,
.anchor-sole-anchor *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-sole-anchor .anchor-cluster-flex{
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

.anchor-sole-anchor .anchor-tube-bound{
            width: 100%;
            max-width: 1360px;
            margin: 0 auto;
            padding-left: clamp(1rem, 4vw, 2rem);
            padding-right: clamp(1rem, 4vw, 2rem);
        }

.anchor-sole-anchor{
            background: #050608;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 4rem 0 2rem;
            margin-top: auto;
        }

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

@media (max-width: 768px){.anchor-sole-anchor .anchor-base-cluster{
                grid-template-columns: 1fr;
                gap: 2rem;
            }}

.anchor-sole-anchor .anchor-root-brand{
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #fff;
            margin-bottom: 1rem;
        }

.anchor-sole-anchor .anchor-root-cipher{
            color: #94a3b8;
            font-size: 0.9rem;
            max-width: 400px;
        }

.anchor-sole-anchor .anchor-root-apex{
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            white-space: normal;
        }

.anchor-sole-anchor .anchor-cluster-links{
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

.anchor-sole-anchor .anchor-root-wire{
            color: #94a3b8;
            font-size: 0.9rem;
        }

.anchor-sole-anchor .anchor-root-wire:hover{
            color: #5257f5;
        }

.anchor-sole-anchor .anchor-base-legal{
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #94a3b8;
            font-size: 0.85rem;
        }