:root {
            --bg-deep: #070a0f;
            --bg-panel: #111721;
            --bg-surface: #1a2230;
            --text-main: #f0f4f8;
            --text-sub: #94a3b8;
            --accent: #3bc1f5;
            --accent-glow: rgba(59, 193, 245, 0.2);
            --radius: 12px;
            --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --shadow-base: 0 4px 15px rgba(0,0,0,0.3);
            --shadow-hover: 0 20px 50px rgba(0,0,0,0.5);
            --border: 1px solid #283446;
            --transition: 0.15s ease;
        }

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

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

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

        a:hover {
            color: var(--accent);
        }

        /* 强制复用的Header样式 */
        .crown {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(7, 10, 15, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .vault {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            min-width: 0;
        }
        .mark {
            display: flex;
            align-items: center;
            min-width: 0;
        }
        .mark img {
            height: 32px;
            width: auto;
        }
        .route {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            min-width: 0;
        }
        .dot {
            min-width: 0;
        }
        .wire {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-sub);
            padding: 0.5rem 0;
            position: relative;
        }
        .wire:hover, .wire.active {
            color: var(--text-main);
        }
        .wire.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }

        /* 主内容容器 */
        main {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        /* Hero: 高效节点管理机制 (错位重叠创意) */
        .nexus {
            display: flex;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            padding: 120px 2rem 100px;
            position: relative;
            align-items: center;
            width: 100%;
        }
        
        .nexus::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 70%;
            height: 100%;
            background: radial-gradient(circle at 80% 50%, rgba(59, 193, 245, 0.08) 0%, transparent 60%);
            z-index: 0;
            pointer-events: none;
        }

        .cloak-left {
            flex: 1;
            min-width: 320px;
            position: relative;
            z-index: 2;
            padding-right: 2rem;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .cloak-right {
            flex: 1;
            min-width: 320px;
            position: relative;
            z-index: 1;
            /* 错位重叠核心 */
            margin-left: -5%;
            margin-top: 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .peak-xl {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
            white-space: normal;
        }
        
        .peak-xl span {
            color: var(--accent);
            display: block;
        }

        .byte-lead {
            font-size: 1.25rem;
            color: var(--text-sub);
            margin-bottom: 2.5rem;
            max-width: 600px;
            word-break: keep-all;
        }

        .warp-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            background-color: var(--accent);
            color: var(--bg-deep);
            box-shadow: 0 4px 15px var(--accent-glow);
            transition: transform var(--transition), box-shadow var(--transition);
            border: 1px solid transparent;
        }

        .warp-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(59, 193, 245, 0.4);
            color: var(--bg-deep);
        }

        /* SVG动效容器 */
        .radar {
            width: 100%;
            max-width: 500px;
            aspect-ratio: 1;
            background: var(--bg-panel);
            border-radius: var(--radius);
            border: var(--border);
            box-shadow: var(--shadow-hover);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .radar svg {
            width: 100%;
            height: 100%;
        }

        @keyframes pulse-ring {
            0% { transform: scale(0.8); opacity: 0.8; }
            100% { transform: scale(1.5); opacity: 0; }
        }
        @keyframes dash-flow {
            to { stroke-dashoffset: -20; }
        }
        .glyph-wave {
            animation: pulse-ring 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
            transform-origin: center;
        }
        .glyph-path {
            stroke-dasharray: 10;
            animation: dash-flow 1s linear infinite;
        }

        /* 步骤: 订阅链接批量导入 */
        .tunnel {
            display: flex;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 4rem auto;
            padding: 4rem 2rem;
            background: linear-gradient(145deg, var(--bg-panel) 0%, var(--bg-deep) 100%);
            border-radius: var(--radius);
            border: var(--border);
            width: calc(100% - 4rem);
            gap: 4rem;
        }

        .tunnel-cloak {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .peak {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            white-space: normal;
        }

        .pool {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .pool-dot {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            min-width: 0;
            padding: 1.5rem;
            background: var(--bg-surface);
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.05);
            transition: transform var(--transition), background var(--transition);
        }

        .pool-dot:hover {
            transform: translateX(8px);
            background: rgba(59, 193, 245, 0.05);
            border-color: rgba(59, 193, 245, 0.2);
        }

        .pool-glyph {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
            color: var(--accent);
        }

        .tunnel-visual {
            flex: 1;
            min-width: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pod-sync {
            width: 100%;
            max-width: 400px;
            aspect-ratio: 4/3;
            background: var(--bg-surface);
            border-radius: var(--radius);
            position: relative;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
        }

        .band-loader {
            height: 4px;
            background: rgba(255,255,255,0.1);
            border-radius: 2px;
            overflow: hidden;
            position: relative;
        }
        .band-loader::after {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            width: 50%;
            height: 100%;
            background: var(--accent);
            animation: sync-load 2s ease-in-out infinite;
        }
        @keyframes sync-load {
            0% { left: -50%; }
            100% { left: 100%; }
        }

        /* 能力: 剪贴板与二维码解析 */
        .vault-grid {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        .peak-center {
            text-align: center;
            font-size: 2.25rem;
            font-weight: 700;
        }
        .byte-center {
            text-align: center;
            color: var(--text-sub);
            max-width: 700px;
            margin: 1rem auto 0;
        }

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

        .flare {
            background: var(--bg-surface);
            border-radius: var(--radius);
            padding: 2.5rem;
            border: var(--border);
            box-shadow: var(--shadow-base);
            transition: transform var(--transition), box-shadow var(--transition);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            position: relative;
            overflow: hidden;
        }

        .flare::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            opacity: 0;
            transition: opacity var(--transition);
        }

        .flare:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }
        
        .flare:hover::before {
            opacity: 1;
        }

        .flare-glyph {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: var(--bg-panel);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(59, 193, 245, 0.2);
            color: var(--accent);
        }

        .flare-glyph svg {
            width: 28px;
            height: 28px;
        }

        /* 结尾: 真连接延迟测速 */
        .cloak {
            max-width: 1200px;
            margin: 4rem auto 8rem;
            padding: 4rem 2rem;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            background: radial-gradient(circle at 50% 100%, rgba(59, 193, 245, 0.05) 0%, transparent 60%);
            border-top: 1px solid rgba(255,255,255,0.05);
            align-items: center;
            gap: 4rem;
        }

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

        .cloak-visual {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .band-test {
            display: flex;
            align-items: center;
            padding: 1rem;
            background: var(--bg-panel);
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.05);
            gap: 1rem;
        }

        .band-name {
            font-family: monospace;
            font-size: 0.9rem;
            width: 120px;
            color: var(--text-sub);
        }

        .band-band-wrap {
            flex: 1;
            height: 6px;
            background: rgba(255,255,255,0.05);
            border-radius: 3px;
            overflow: hidden;
        }

        .band-band {
            height: 100%;
            border-radius: 3px;
        }
        
        .band-value {
            font-size: 0.85rem;
            font-weight: 600;
            width: 60px;
            text-align: right;
        }

        .color-good { background: #10b981; color: #10b981; }
        .color-warn { background: #f59e0b; color: #f59e0b; }
        .color-bad { background: #ef4444; color: #ef4444; }

        @keyframes bar-grow {
            from { width: 0; }
        }
        
        .band-band {
            animation: bar-grow 1.5s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
        }

        /* Footer */
        .root {
            background: var(--bg-panel);
            border-top: var(--border);
            padding: 4rem 2rem 2rem;
            margin-top: auto;
        }

        .root-mesh {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            justify-content: space-between;
        }

        .root-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 1rem;
        }

        .root-byte {
            color: var(--text-sub);
            font-size: 0.9rem;
            max-width: 300px;
            margin-bottom: 2rem;
        }

        .root-pool {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
        }

        .root-col {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            min-width: 120px;
        }

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

        .root-wire {
            color: var(--text-sub);
            font-size: 0.9rem;
        }
        
        .root-wire:hover {
            color: var(--accent);
        }

        .root-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            color: var(--text-sub);
            font-size: 0.85rem;
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .nexus {
                padding: 80px 2rem 60px;
            }
            .cloak-right {
                margin-left: 0;
                margin-top: 4rem;
            }
            .tunnel {
                width: calc(100% - 2rem);
                margin: 2rem auto;
                padding: 3rem 2rem;
            }
        }

        @media (max-width: 768px) {
            .nexus, .tunnel, .cloak {
                flex-direction: column;
            }
            .peak-xl {
                font-size: 2rem;
            }
            .cloak-left {
                padding-right: 0;
            }
            .flare-mesh {
                grid-template-columns: 1fr;
            }
            .route {
                gap: 1rem;
                margin-top: 1rem;
                width: 100%;
                justify-content: flex-start;
            }
            .root-pool {
                flex-direction: column;
                gap: 2rem;
            }
        }

.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;
            }}