/* 视觉基因变量 */
        :root {
            --bg-core: #050608;
            --bg-surface: #0d1017;
            --bg-elevated: #151923;
            --primary: #851af6;
            --primary-glow: rgba(133, 26, 246, 0.4);
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
            --radius-lg: 24px;
            --radius-md: 16px;
            --max-width: 1320px;
            --transition: all 0.25s ease;
        }

        /* 基础重置与排版 */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--bg-core);
            color: var(--text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        
        /* 强制换行与Flex保护 */
        .cipher-break, p, h1, h2, h3, span {
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }
        .pack-flex {
            display: flex;
            flex-wrap: wrap;
        }
        .pack-flex > * {
            min-width: 0;
        }

        /* 布局容器 */
        .layer {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 5%;
        }
        .zone {
            padding: 80px 0;
            position: relative;
        }

        /* --- 导航栏复用样式 (强制保留) --- */
        .crown {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(5, 6, 8, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .tunnel {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 5%;
        }
        .steer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            flex-wrap: wrap;
        }
        .steer > * { min-width: 0; }
        .seal {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        .seal img {
            height: 32px;
            width: auto;
        }
        .mesh {
            display: flex;
            gap: 32px;
            align-items: center;
            flex-wrap: wrap;
        }
        .mesh > * { min-width: 0; }
        .mesh-wire {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--transition);
        }
        .mesh-wire:hover, .mesh-wire.active {
            color: var(--text-main);
        }
        .warp {
            background: linear-gradient(135deg, #a14cfb, #851af6);
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 20px var(--primary-glow);
            transition: var(--transition);
            display: inline-block;
            text-align: center;
        }
        .warp:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(133, 26, 246, 0.6);
        }

        /* --- 页面专属样式 --- */
        
        /* Typography */
        .apex-mega {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.15;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--text-main);
            margin-bottom: 24px;
        }
        .apex-mega span {
            background: linear-gradient(135deg, #fff, #a14cfb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .apex-major {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }
        .cipher-lead {
            font-size: 1.125rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 540px;
        }

        /* Block 1: Cloak (Hero/Acquire) */
        .cloak {
            padding: 100px 0 60px;
            background: radial-gradient(circle at 80% 20%, rgba(133, 26, 246, 0.15) 0%, transparent 40%);
        }
        .cloak-layer {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        .cloak-cipher {
            flex: 1;
            min-width: 320px;
        }
        .cloak-lens-wrap {
            flex: 1.2;
            min-width: 320px;
            position: relative;
        }
        .lens-primary {
            width: 100%;
            height: auto;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255,255,255,0.05);
            display: block;
        }
        .pack-dial {
            display: flex;
            gap: 16px;
            align-items: center;
        }
        .dial-sub {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .dial-sub:hover {
            color: var(--primary);
        }

        /* Block 2: Nexus (Comparison/Platforms) */
        .nexus {
            background: linear-gradient(to bottom, transparent, rgba(13, 16, 23, 0.5));
            border-top: 1px solid rgba(255, 255, 255, 0.03);
        }
        .nexus-layer {
            display: flex;
            gap: 48px;
            align-items: flex-start;
        }
        .nexus-grid {
            flex: 1.5;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            min-width: 0;
        }
        .nexus-lens-wrap {
            flex: 1;
            min-width: 300px;
            position: sticky;
            top: 120px;
        }
        .lens-secondary {
            width: 100%;
            border-radius: var(--radius-lg);
            opacity: 0.8;
            filter: grayscale(20%) contrast(1.1);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* Node (Cards) */
        .node {
            background: var(--bg-surface);
            border-radius: var(--radius-lg);
            padding: 32px;
            border: 1px solid rgba(255, 255, 255, 0.04);
            box-shadow: inset 0 0 40px rgba(0,0,0,0.2), 0 10px 30px rgba(0,0,0,0.2);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .node:hover {
            transform: translateY(-4px);
            border-color: rgba(133, 26, 246, 0.3);
            box-shadow: inset 0 0 40px rgba(0,0,0,0.3), 0 20px 40px rgba(0,0,0,0.4);
        }
        .node-crown {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }
        .node-glyph {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--bg-elevated);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--primary);
        }
        .node-apex {
            font-size: 1.25rem;
            font-weight: 600;
        }
        .node-cipher {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 8px;
            flex-grow: 1;
        }
        .node-meta {
            font-size: 0.8rem;
            color: #64748b;
            margin-bottom: 24px;
        }
        .dial-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 24px;
            border-radius: 12px;
            background: transparent;
            color: var(--text-main);
            border: 1px solid rgba(255, 255, 255, 0.15);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            width: 100%;
        }
        .dial-outline:hover {
            background: var(--bg-elevated);
            border-color: var(--primary);
            color: #fff;
        }

        /* Block 3: Path (Steps) */
        .path {
            background: var(--bg-core);
            text-align: center;
        }
        .path-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }
        .relay {
            padding: 32px 24px;
            position: relative;
        }
        .relay::after {
            content: '';
            position: absolute;
            top: 48px;
            right: -16px;
            width: 32px;
            height: 2px;
            background: linear-gradient(90deg, rgba(133, 26, 246, 0.5), transparent);
        }
        .relay:last-child::after { display: none; }
        .relay-glyph {
            width: 64px;
            height: 64px;
            margin: 0 auto 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(133, 26, 246, 0.1), transparent);
            border: 1px solid rgba(133, 26, 246, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }
        .relay-apex {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .relay-cipher {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Footer */
        .tail {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 60px 0 40px;
            background: var(--bg-surface);
        }
        .tail-layer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }
        .tail-root {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.05em;
            color: var(--text-main);
        }
        .tail-mesh {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .tail-wire {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .tail-wire:hover {
            color: var(--text-main);
        }
        .tail-cipher {
            width: 100%;
            text-align: center;
            color: #475569;
            font-size: 0.85rem;
            margin-top: 40px;
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .cloak-layer, .nexus-layer {
                flex-direction: column;
            }
            .mesh { display: none; } /* 移动端简化导航示意 */
            .nexus-lens-wrap { position: static; margin-top: 32px; }
            .relay::after { display: none; }
        }
        @media (max-width: 768px) {
            .zone { padding: 60px 0; }
            .apex-mega { font-size: 2.25rem; }
            .nexus-grid, .path-grid { grid-template-columns: 1fr; }
        }

.steer-crown .steer-pack{
            display: flex;
            flex-wrap: wrap;
        }

.steer-crown .steer-pack > *{
            min-width: 0;
        }

.steer-crown .steer-tunnel{
            max-width: 1320px;
            margin: 0 auto;
            padding-left: 5vw;
            padding-right: 5vw;
        }

.steer-crown{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(5, 6, 8, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #232836;
            padding: 16px 0;
        }

.steer-crown .steer-steer{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            min-width: 0;
        }

.steer-crown .steer-seal{
            display: flex;
            align-items: center;
            min-width: 0;
        }

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

.steer-crown .steer-mesh{
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            align-items: center;
            min-width: 0;
        }

.steer-crown .steer-mesh-wire{
            color: #94a3b8;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.25s ease;
            padding: 8px 12px;
            border-radius: 8px;
        }

.steer-crown .steer-mesh-wire:hover, .steer-crown .steer-mesh-wire.active{
            color: #f8fafc;
            background: rgba(255, 255, 255, 0.05);
        }

.steer-crown .steer-mesh-wire.active{
            color: #851af6;
        }

.steer-crown .steer-warp{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            background: linear-gradient(135deg, #a14cfb, #851af6);
            color: #fff;
            font-weight: 600;
            font-size: 1.05rem;
            border-radius: 16px;
            transition: all 0.25s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 20px rgba(133, 26, 246, 0.4);
            cursor: pointer;
        }

.steer-crown .steer-warp:hover{
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(133, 26, 246, 0.6);
            background: linear-gradient(135deg, #b570fb, #9333f7);
        }

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

.steer-crown .steer-tunnel{
                padding-left: 20px;
                padding-right: 20px;
            }}

.steer-crown {
    background: rgb(5, 6, 8);
    background-image: none;
}

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

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

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

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

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

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

.anchor-tail .anchor-tunnel{
            max-width: 1320px;
            margin: 0 auto;
            padding-left: 5vw;
            padding-right: 5vw;
        }

.anchor-tail{
            background: #000;
            padding: 80px 0 40px;
            border-top: 1px solid #232836;
        }

.anchor-tail .anchor-anchor{
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

.anchor-tail .anchor-anchor-brand{
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.05em;
            margin-bottom: 16px;
            display: inline-block;
        }

.anchor-tail .anchor-anchor-desc{
            color: #94a3b8;
            font-size: 0.95rem;
            max-width: 300px;
        }

.anchor-tail .anchor-anchor-col h4{
            color: #fff;
            font-size: 1.05rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

.anchor-tail .anchor-anchor-wire{
            display: block;
            color: #94a3b8;
            margin-bottom: 12px;
            font-size: 0.95rem;
            transition: all 0.25s ease;
        }

.anchor-tail .anchor-anchor-wire:hover{
            color: #851af6;
        }

.anchor-tail .anchor-crypt{
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 32px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            color: #64748b;
            font-size: 0.85rem;
        }

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

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

.anchor-tail .anchor-crypt{
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }

.anchor-tail .anchor-tunnel{
                padding-left: 20px;
                padding-right: 20px;
            }}