/* 
         * 基础变量与重置 
         * 遵循品牌色彩系统：#3bc1f5 (Cyan) 
         */
        :root {
            --cyan: #3bc1f5;
            --cyan-glow: rgba(59, 193, 245, 0.3);
            --cyan-dark: #1b8fb8;
            --bg-deep: #070a0f;
            --bg-panel: #111721;
            --bg-surface: #1a2230;
            --border: #283446;
            --text-main: #f0f4f8;
            --text-sub: #94a3b8;
            --radius: 12px;
            --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --transition: 0.15s ease;
        }

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

        body {
            font-family: var(--font);
            background-color: var(--bg-deep);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* 强制结构规则 */
        .route, .pool, .vault, .band {
            display: flex;
            flex-wrap: wrap;
        }
        .route > *, .pool > *, .vault > *, .band > * {
            min-width: 0;
        }

        /* 排版系统 */
        .peak-xl { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; white-space: normal; }
        .peak-lg { font-size: clamp(2rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.2; white-space: normal; }
        .peak-md { font-size: 1.5rem; font-weight: 600; line-height: 1.3; white-space: normal; margin-bottom: 1rem; }
        .byte-lg { font-size: 1.125rem; color: var(--text-sub); line-height: 1.7; }
        .byte { font-size: 1rem; color: var(--text-sub); line-height: 1.7; }
        .highlight { color: var(--cyan); }

        /* 组件：按钮 (warp) */
        .warp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 1.75rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all var(--transition);
            cursor: pointer;
            border: 1px solid transparent;
        }
        .warp-primary {
            background-color: var(--cyan);
            color: var(--bg-deep);
            box-shadow: 0 4px 15px var(--cyan-glow);
        }
        .warp-primary:hover, .warp-primary:focus {
            background-color: #52cbf8;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 193, 245, 0.5);
        }
        .warp-secondary {
            background-color: transparent;
            color: var(--text-main);
            border-color: var(--border);
        }
        .warp-secondary:hover, .warp-secondary:focus {
            border-color: var(--cyan);
            color: var(--cyan);
            background-color: rgba(59, 193, 245, 0.05);
        }

        /* 顶部导航 (crown) */
        .crown {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 72px;
            background: rgba(7, 10, 15, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 2rem;
        }
        .crown .vault {
            width: 100%;
            max-width: 1200px;
            justify-content: space-between;
            align-items: center;
        }
        .mark {
            display: flex;
            align-items: center;
            height: 32px;
        }
        .mark img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }
        .route {
            gap: 2rem;
        }
        .wire {
            color: var(--text-sub);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color var(--transition);
            position: relative;
        }
        .wire:hover, .wire:focus, .wire.active {
            color: var(--text-main);
        }
        .wire.active::after {
            content: '';
            position: absolute;
            bottom: -24px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--cyan);
            box-shadow: 0 -2px 10px var(--cyan-glow);
        }

        /* 英雄区 (nexus) - offset_overlap 蓝图实现 */
        .nexus {
            padding: 160px 2rem 100px;
            position: relative;
            background: radial-gradient(circle at 80% 20%, rgba(59, 193, 245, 0.08) 0%, transparent 40%),
                        linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-panel) 100%);
            display: flex;
            justify-content: center;
            overflow: hidden;
        }
        .nexus .vault {
            max-width: 1200px;
            width: 100%;
            align-items: stretch;
            position: relative;
        }
        /* 文字块：背景条重叠 */
        .pulse {
            flex: 1;
            min-width: 320px;
            z-index: 10;
            background: rgba(17, 23, 33, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 3.5rem;
            border-left: 4px solid var(--cyan);
            border-radius: var(--radius);
            box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.6), inset 1px 1px 0 rgba(255,255,255,0.05);
            transform: translateX(60px); /* 偏移实现重叠 */
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        /* 视觉块：向右下偏移 */
        .flare {
            flex: 1.2;
            min-width: 320px;
            z-index: 1;
            transform: translate(40px, 40px); /* 偏移实现重叠 */
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            background: var(--bg-surface);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .flare-svg {
            width: 100%;
            height: 100%;
            min-height: 400px;
            opacity: 0.8;
        }
        .pulse-actions {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        /* 核心价值区 (tunnel/section) */
        .tunnel {
            padding: 100px 2rem;
            display: flex;
            justify-content: center;
            background-color: var(--bg-deep);
            border-top: 1px solid rgba(255,255,255,0.02);
        }
        .tunnel-alt {
            background-color: var(--bg-panel);
            position: relative;
        }
        .tunnel-alt::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; height: 1px;
            background: linear-gradient(90deg, transparent, var(--border), transparent);
        }
        .tunnel .vault {
            max-width: 1200px;
            width: 100%;
            flex-direction: column;
        }
        .crown-byte {
            text-align: center;
            margin-bottom: 4rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* 文本密集区/导语 (intro text) */
        .lead-byte {
            font-size: 1.125rem;
            line-height: 1.8;
            color: var(--text-sub);
            column-count: 2;
            column-gap: 3rem;
            margin-bottom: 3rem;
            text-align: justify;
            word-break: keep-all;
        }

        /* 特性网格 (pool/node) */
        .pool-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            width: 100%;
        }
        .node {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2.5rem;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .node:hover {
            transform: translateY(-5px);
            border-color: rgba(59, 193, 245, 0.3);
            box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 20px rgba(59, 193, 245, 0.05);
        }
        .node::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 3px;
            background: linear-gradient(90deg, var(--cyan), transparent);
            opacity: 0;
            transition: opacity var(--transition);
        }
        .node:hover::before {
            opacity: 1;
        }
        .glyph-cloak {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            background: rgba(59, 193, 245, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(59, 193, 245, 0.2);
        }
        .glyph {
            width: 28px;
            height: 28px;
            fill: var(--cyan);
        }

        /* 产品展示区 (shell/pod) */
        .cloak {
            padding: 100px 2rem;
            display: flex;
            justify-content: center;
            background: var(--bg-deep);
        }
        .cloak .vault {
            max-width: 1200px;
            width: 100%;
            align-items: center;
            gap: 4rem;
        }
        .cloak-byte {
            flex: 1;
            min-width: 320px;
        }
        .pod {
            flex: 1.2;
            min-width: 320px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0,0,0,0.6);
            border: 1px solid var(--border);
            position: relative;
        }
        .pod::after {
            content: '';
            position: absolute;
            inset: 0;
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
            pointer-events: none;
            border-radius: inherit;
        }
        .lens {
            display: block;
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .pod:hover .lens {
            transform: scale(1.02);
        }
        
        /* 列表样式 */
        .dot-mesh {
            list-style: none;
            margin-top: 2rem;
        }
        .dot-mesh .dot {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1.25rem;
            color: var(--text-sub);
        }
        .dot-mesh .dot::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--cyan);
            box-shadow: 0 0 8px var(--cyan-glow);
        }

        /* 深度阅读/导视卡片 (band/packet) */
        .packet {
            background: linear-gradient(145deg, var(--bg-surface), var(--bg-panel));
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            transition: all var(--transition);
            text-decoration: none;
        }
        .packet:hover {
            border-color: var(--cyan);
            background: linear-gradient(145deg, var(--bg-surface), rgba(59, 193, 245, 0.05));
        }
        .packet .glyph-cloak {
            flex-shrink: 0;
            margin-bottom: 0;
        }
        .packet-cloak {
            flex: 1;
        }

        /* FAQ 区块 */
        .faq-band {
            margin-top: 4rem;
            border-top: 1px solid var(--border);
            padding-top: 4rem;
        }
        .faq-pool {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .faq-dot {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1.5rem;
        }
        .faq-peak {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .faq-peak::before {
            content: 'Q.';
            color: var(--cyan);
            font-weight: 800;
        }

        /* 页脚 (root) */
        .root {
            background-color: #040609;
            border-top: 1px solid var(--border);
            padding: 4rem 2rem;
            display: flex;
            justify-content: center;
        }
        .root .vault {
            max-width: 1200px;
            width: 100%;
            justify-content: space-between;
            align-items: center;
        }
        .base {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-main);
            letter-spacing: 1px;
        }
        .anchor-pool {
            display: flex;
            gap: 1.5rem;
        }
        .anchor {
            color: var(--text-sub);
            font-size: 0.875rem;
            transition: color var(--transition);
        }
        .anchor:hover {
            color: var(--cyan);
        }

        /* 响应式断点 */
        @media (max-width: 1024px) {
            .nexus {
                padding-top: 120px;
            }
            .pulse {
                transform: none;
                margin-bottom: -2rem; /* 保持一定重叠感或紧凑感 */
                z-index: 10;
            }
            .flare {
                transform: none;
                z-index: 1;
            }
            .lead-byte {
                column-count: 1;
            }
            .cloak .vault {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .route {
                display: none; /* 移动端简易处理，隐藏导航或后续加汉堡菜单 */
            }
            .crown {
                justify-content: flex-start;
            }
            .pulse {
                padding: 2rem;
            }
            .peak-xl {
                font-size: 2rem;
            }
            .pool-grid {
                grid-template-columns: 1fr;
            }
            .packet {
                flex-direction: column;
            }
            .root .vault {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }
        }

.route-crown {
    font-family: var(--font);
    line-height: 1.6;
    word-break: break-word;
    color: var(--text-main);
}
.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;
    --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-route, .route-crown .route-vault{
            display: flex;
            flex-wrap: wrap;
        }

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

.route-crown{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 72px;
            background: rgba(7, 10, 15, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid #283446;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 2rem;
        }

.route-crown .route-vault{
            width: 100%;
            max-width: 1200px;
            justify-content: space-between;
            align-items: center;
        }

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

.route-crown .route-mark img{
            height: 100%;
            width: auto;
            object-fit: contain;
        }

.route-crown .route-route{
            gap: 2rem;
        }

.route-crown .route-wire{
            color: #94a3b8;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.15s ease;
            position: relative;
        }

.route-crown .route-wire:hover, .route-crown .route-wire:focus, .route-crown .route-wire.active{
            color: #f0f4f8;
        }

.route-crown .route-wire.active::after{
            content: '';
            position: absolute;
            bottom: -24px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #3bc1f5;
            box-shadow: 0 -2px 10px rgba(59, 193, 245, 0.3);
        }

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

.route-crown{
                justify-content: flex-start;
            }}

.route-crown {
    background: rgb(7, 10, 15);
    background-image: none;
}

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

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

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

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

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

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

.anchor-root .anchor-vault{
            display: flex;
            flex-wrap: wrap;
        }

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

.anchor-root{
            background-color: #040609;
            border-top: 1px solid #283446;
            padding: 4rem 2rem;
            display: flex;
            justify-content: center;
        }

.anchor-root .anchor-vault{
            max-width: 1200px;
            width: 100%;
            justify-content: space-between;
            align-items: center;
        }

.anchor-root .anchor-base{
            font-size: 1.25rem;
            font-weight: 700;
            color: #f0f4f8;
            letter-spacing: 1px;
        }

.anchor-root .anchor-anchor-pool{
            display: flex;
            gap: 1.5rem;
        }

.anchor-root .anchor-anchor{
            color: #94a3b8;
            font-size: 0.875rem;
            transition: color 0.15s ease;
        }

.anchor-root .anchor-anchor:hover{
            color: #3bc1f5;
        }

@media (max-width: 768px){.anchor-root .anchor-vault{
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }}