:root {
            /* 旗舰品牌舞台型配色 - 以 #f6dd61 为核心，搭配温暖通透的背景 */
            --primary: #f6dd61;
            --primary-hover: #e5c942;
            --primary-light: rgba(246, 221, 97, 0.15);
            --dark: #1a1c23;
            --dark-soft: #2d313f;
            --text-main: #333847;
            --text-muted: #646a7c;
            --bg-page: #fdfcf9;
            --bg-surface: #ffffff;
            --bg-alt: #f5f4ef;
            
            /* 基因参数 */
            --radius-sm: 8px;
            --radius: 16px;
            --radius-lg: 24px;
            --shadow-sm: 0 2px 8px rgba(26, 28, 35, 0.04);
            --shadow-md: 0 8px 24px rgba(26, 28, 35, 0.06), 0 2px 6px rgba(26, 28, 35, 0.03);
            --shadow-lg: 0 20px 40px rgba(26, 28, 35, 0.08), 0 8px 16px rgba(26, 28, 35, 0.04);
            --transition: all 0.35s ease;
            
            /* 排版与间距 */
            --tunnel-width: 1280px;
            --space-xs: 8px;
            --space-sm: 16px;
            --space-md: 32px;
            --space-lg: 64px;
            --space-xl: 100px;
        }

        /* 全局重置与基础规范 */
        * {
            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-page);
            color: var(--text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* 强制：文本换行规范 */
        .byte, .apex, .wire, .ping, .term {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        .byte {
            word-break: keep-all; /* 中文词组完整 */
        }
        .apex {
            white-space: normal;
        }

        /* 容器组件：tunnel (限制宽度居中) */
        .tunnel {
            max-width: var(--tunnel-width);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
            width: 100%;
        }

        /* 强制：Flexbox规范 */
        .chain, .warp, .band, .pool, .crest, .vault {
            display: flex;
            flex-wrap: wrap;
        }
        .chain > *, .warp > *, .band > *, .pool > *, .crest > *, .vault > * {
            min-width: 0;
        }

        /* --- 导航区域 (crest, chain, wire) --- */
        .crest-shell {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(253, 252, 249, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.03);
        }
        
        .crest {
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .core {
            display: flex;
            align-items: center;
        }
        .core img {
            height: 32px;
            width: auto;
            display: block;
        }

        .chain {
            gap: 8px;
            align-items: center;
        }

        .wire {
            text-decoration: none;
            color: var(--text-main);
            font-weight: 500;
            font-size: 15px;
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }
        .wire:hover, .wire:focus {
            background-color: var(--primary-light);
            color: var(--dark);
        }
        .wire.active {
            background-color: var(--primary);
            color: var(--dark);
        }

        /* 按钮组件：ping */
        .ping {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            background-color: var(--primary);
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            border: 2px solid transparent;
            cursor: pointer;
        }
        .ping:hover, .ping:focus {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(246, 221, 97, 0.4);
        }
        .ping-alt {
            background-color: transparent;
            border-color: var(--dark-soft);
            color: var(--dark-soft);
        }
        .ping-alt:hover, .ping-alt:focus {
            background-color: var(--dark-soft);
            color: #fff;
            box-shadow: 0 6px 16px rgba(45, 49, 63, 0.2);
        }

        /* --- Hero区域 (warp, offset_overlap 蓝图) --- */
        .warp-shell {
            background: linear-gradient(180deg, rgba(246, 221, 97, 0.05) 0%, rgba(253, 252, 249, 0) 100%);
            padding-top: var(--space-xl);
            padding-bottom: var(--space-xl);
            overflow: hidden;
        }
        
        .warp {
            position: relative;
            align-items: center;
            justify-content: center;
        }

        /* offset_overlap: 文字块 (flare) */
        .flare {
            position: relative;
            z-index: 2;
            background: var(--bg-surface);
            padding: 56px 48px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            max-width: 580px;
            margin-right: -80px; /* 故意重叠偏移 */
            border-left: 8px solid var(--primary);
        }

        .flare .apex {
            font-size: 42px;
            line-height: 1.2;
            color: var(--dark);
            font-weight: 800;
            margin-bottom: 24px;
            letter-spacing: -0.5px;
        }
        
        .flare .byte {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .flare-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* offset_overlap: 图片/视觉块 (shell) */
        .shell {
            position: relative;
            z-index: 1;
            transform: translate(40px, 60px); /* 故意向右下偏移 */
            max-width: 650px;
            width: 100%;
            border-radius: var(--radius);
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
            box-shadow: var(--shadow-md);
            padding: 2px; /* 创造边框效果 */
            overflow: hidden;
        }
        
        .shell-inner {
            background: var(--dark);
            border-radius: calc(var(--radius) - 2px);
            padding: 40px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Hero区视觉SVG (代表代理中枢) */
        .optic-svg {
            width: 100%;
            height: auto;
            display: block;
        }

        /* --- 特性网格区域 (mesh, pool, node) --- */
        .mesh-shell {
            padding: var(--space-xl) 0;
            background-color: var(--bg-page);
        }

        .mesh-crest {
            text-align: center;
            margin-bottom: var(--space-lg);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .mesh-crest .apex {
            font-size: 36px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 16px;
        }
        .mesh-crest .byte {
            font-size: 18px;
            color: var(--text-muted);
        }

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

        .node {
            background: var(--bg-surface);
            border-radius: var(--radius);
            padding: 40px 32px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.02);
            position: relative;
            overflow: hidden;
        }
        
        .node::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .node:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        .node:hover::before {
            transform: scaleX(1);
        }

        .dot {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--dark);
        }
        .dot svg {
            width: 28px;
            height: 28px;
        }

        .node .apex {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--dark);
        }

        .node .byte {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* --- 产品展示区域 (band, optic) --- */
        .band-shell {
            padding: var(--space-xl) 0;
            background-color: var(--bg-surface);
            border-top: 1px solid rgba(0,0,0,0.03);
            border-bottom: 1px solid rgba(0,0,0,0.03);
        }

        .band {
            align-items: center;
            gap: 64px;
        }

        .band-byte {
            flex: 1;
            min-width: 300px;
        }

        .band-byte .apex {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--dark);
        }

        .band-byte .byte {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 24px;
            line-height: 1.8;
        }

        .blip-chain {
            list-style: none;
            margin-top: 32px;
        }
        .blip-chain .blip {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        .blip-dot {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 16px;
            margin-top: 2px;
        }
        .blip-dot svg {
            width: 14px;
            height: 14px;
            color: var(--dark);
        }
        .blip-byte .apex {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--dark);
        }
        .blip-byte .byte {
            font-size: 14px;
            margin-bottom: 0;
        }

        .band-visual {
            flex: 1.2;
            min-width: 300px;
            position: relative;
        }

        /* 强制：图片使用规范 */
        .optic {
            width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            display: block;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .band-visual::after {
            content: '';
            position: absolute;
            inset: -20px -20px -20px 20px;
            background: var(--primary-light);
            border-radius: var(--radius);
            z-index: -1;
        }

        /* --- 快速操作/导览区域 (steer, packet) --- */
        .steer-shell {
            padding: var(--space-xl) 0;
            background: linear-gradient(to bottom, var(--bg-page) 0%, var(--bg-alt) 100%);
        }

        .steer-crest {
            text-align: center;
            margin-bottom: var(--space-lg);
        }
        .steer-crest .apex {
            font-size: 32px;
            font-weight: 700;
        }

        .steer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
        }

        .packet {
            background: var(--bg-surface);
            padding: 32px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            text-decoration: none;
            display: flex;
            flex-direction: column;
            height: 100%;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .packet:hover, .packet:focus {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary);
        }

        .packet .dot {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--bg-alt);
            margin-bottom: 20px;
        }
        .packet:hover .dot {
            background: var(--primary-light);
        }

        .packet .apex {
            font-size: 20px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 12px;
        }
        .packet .byte {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 24px;
            flex-grow: 1;
        }
        .packet-wire {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: auto;
        }
        .packet-wire svg {
            width: 16px;
            height: 16px;
            transition: transform 0.2s ease;
        }
        .packet:hover .packet-wire svg {
            transform: translateX(4px);
        }

        /* --- 页脚区域 (tail, vault, term) --- */
        .tail {
            background-color: var(--dark);
            color: #ffffff;
            padding: 80px 0 40px;
        }

        .vault {
            justify-content: space-between;
            gap: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 32px;
        }

        .vault-brand {
            flex: 1;
            min-width: 250px;
            max-width: 400px;
        }
        .vault-brand .apex {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 16px;
            letter-spacing: 1px;
        }
        .vault-brand .byte {
            color: rgba(255,255,255,0.6);
            font-size: 14px;
        }

        .vault-links {
            display: flex;
            gap: 64px;
            flex-wrap: wrap;
        }
        .vault-col {
            display: flex;
            flex-direction: column;
            gap: 16px;
            min-width: 120px;
        }
        .vault-col .apex {
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 8px;
        }
        .term {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s ease;
        }
        .term:hover, .term:focus {
            color: var(--primary);
        }

        .vault-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            color: rgba(255,255,255,0.4);
            font-size: 13px;
        }

        /* 响应式断点 */
        @media (max-width: 1024px) {
            .warp {
                flex-direction: column;
            }
            .flare {
                margin-right: 0;
                margin-bottom: -60px; /* 保持垂直方向的重叠 */
                max-width: 100%;
            }
            .shell {
                transform: translate(0, 0);
                max-width: 100%;
            }
            .band {
                flex-direction: column;
            }
            .band-visual::after {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .crest {
                flex-direction: column;
                height: auto;
                padding: 16px 0;
                gap: 16px;
            }
            .chain {
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
            }
            .flare {
                padding: 32px 24px;
                margin-bottom: -30px;
            }
            .flare .apex {
                font-size: 32px;
            }
            .shell-inner {
                padding: 24px;
            }
            .pool {
                grid-template-columns: 1fr;
            }
            .steer-grid {
                grid-template-columns: 1fr;
            }
            .vault {
                flex-direction: column;
            }
            .vault-links {
                gap: 32px;
            }
            .space-xl {
                padding-top: 60px;
                padding-bottom: 60px;
            }
        }

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

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

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

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

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

.route-crest-shell a.route-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-crest-shell a.route-wire,
.route-crest-shell a.route-wire:hover,
.route-crest-shell a.route-wire:focus,
.route-crest-shell a.route-wire:active,
.route-crest-shell a.route-wire.active,
.route-crest-shell 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-crest-shell .route-wire{
            word-break: break-word;
            overflow-wrap: break-word;
        }

.route-crest-shell .route-tunnel{
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
            width: 100%;
        }

.route-crest-shell .route-chain, .route-crest-shell .route-crest{
            display: flex;
            flex-wrap: wrap;
        }

.route-crest-shell .route-chain > *, .route-crest-shell .route-crest > *{
            min-width: 0;
        }

.route-crest-shell{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(253, 252, 249, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.03);
        }

.route-crest-shell .route-crest{
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

.route-crest-shell .route-core{
            display: flex;
            align-items: center;
        }

.route-crest-shell .route-core img{
            height: 32px;
            width: auto;
            display: block;
        }

.route-crest-shell .route-chain{
            gap: 8px;
            align-items: center;
        }

.route-crest-shell .route-wire{
            text-decoration: none;
            color: #333847;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.35s ease;
        }

.route-crest-shell .route-wire:hover, .route-crest-shell .route-wire:focus{
            background-color: rgba(246, 221, 97, 0.15);
            color: #1a1c23;
        }

.route-crest-shell .route-wire.active{
            background-color: #f6dd61;
            color: #1a1c23;
        }

@media (max-width: 768px){.route-crest-shell .route-crest{
                flex-direction: column;
                height: auto;
                padding: 16px 0;
                gap: 16px;
            }

.route-crest-shell .route-chain{
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
            }}

.route-crest-shell {
    background: rgb(253, 252, 249);
    background-image: none;
}

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

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

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

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

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

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

.vault-tail .vault-byte, .vault-tail .vault-apex, .vault-tail .vault-term{
            word-break: break-word;
            overflow-wrap: break-word;
        }

.vault-tail .vault-byte{
            word-break: keep-all; 
        }

.vault-tail .vault-apex{
            white-space: normal;
        }

.vault-tail .vault-tunnel{
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
            width: 100%;
        }

.vault-tail .vault-vault{
            display: flex;
            flex-wrap: wrap;
        }

.vault-tail .vault-vault > *{
            min-width: 0;
        }

.vault-tail{
            background-color: #1a1c23;
            color: #ffffff;
            padding: 80px 0 40px;
        }

.vault-tail .vault-vault{
            justify-content: space-between;
            gap: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 32px;
        }

.vault-tail .vault-vault-brand{
            flex: 1;
            min-width: 250px;
            max-width: 400px;
        }

.vault-tail .vault-vault-brand .vault-apex{
            font-size: 28px;
            font-weight: 800;
            color: #f6dd61;
            margin-bottom: 16px;
            letter-spacing: 1px;
        }

.vault-tail .vault-vault-brand .vault-byte{
            color: rgba(255,255,255,0.6);
            font-size: 14px;
        }

.vault-tail .vault-vault-links{
            display: flex;
            gap: 64px;
            flex-wrap: wrap;
        }

.vault-tail .vault-vault-col{
            display: flex;
            flex-direction: column;
            gap: 16px;
            min-width: 120px;
        }

.vault-tail .vault-vault-col .vault-apex{
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 8px;
        }

.vault-tail .vault-term{
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s ease;
        }

.vault-tail .vault-term:hover, .vault-tail .vault-term:focus{
            color: #f6dd61;
        }

.vault-tail .vault-vault-bottom{
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            color: rgba(255,255,255,0.4);
            font-size: 13px;
        }

@media (max-width: 768px){.vault-tail .vault-vault{
                flex-direction: column;
            }

.vault-tail .vault-vault-links{
                gap: 32px;
            }}