/* 基础变量与重置 */
        :root {
            --accent: #e37317;
            --accent-rgb: 227, 115, 23;
            --bg-deep: #0a0a0c;
            --bg-surface: #121216;
            --bg-surface-elevated: #1a1a22;
            --text-main: #f3f4f6;
            --text-muted: #9ca3af;
            --text-dark: #6b7280;
            --radius: 18px;
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.1);
            --transition: 0.25s ease;
        }

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

        body {
            background-color: var(--bg-deep);
            color: var(--text-main);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans CJK SC", sans-serif;
            line-height: 1.7;
            overflow-x: hidden;
            word-break: break-word;
        }

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

        /* 统一页面容器包装 */
        .proxy-mesh {
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* 复用首页导航栏样式 */
        .route-nexus {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 10, 12, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .proxy-tunnel {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .route-orbit {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .core-sign {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            font-size: 1.25rem;
            color: #ffffff;
        }

        .core {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .core img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .orbit-flow {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .orbit-path {
            padding: 8px 16px;
            font-size: 0.9rem;
            color: var(--text-muted);
            border-radius: 8px;
        }

        .orbit-path:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.05);
        }

        .orbit-path.active {
            color: var(--accent);
            background: rgba(227, 115, 23, 0.1);
            font-weight: 600;
        }

        /* 1. Intro Section (Hero: mosaic_collage) */
        .flare-warp {
            padding: 80px 0 100px 0;
            background: radial-gradient(circle at 50% 0%, rgba(227, 115, 23, 0.08) 0%, transparent 60%);
            position: relative;
        }

        .warp-mesh {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            align-items: center;
        }

        .warp-mesh > div {
            flex: 1;
            min-width: 300px;
        }

        .warp-peak {
            font-size: clamp(2.2rem, 5vw, 3.2rem);
            line-height: 1.15;
            font-weight: 800;
            letter-spacing: -1px;
            color: #ffffff;
            margin-bottom: 24px;
            word-break: keep-all;
        }

        .warp-peak span {
            color: var(--accent);
        }

        .warp-byte {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 580px;
            line-height: 1.8;
        }

        .warp-flow {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .dial-hook {
            padding: 14px 32px;
            border-radius: var(--radius);
            font-weight: 600;
            border: 1px solid transparent;
            background: var(--accent);
            color: #ffffff;
            box-shadow: 0 8px 24px rgba(227, 115, 23, 0.35);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .dial-hook:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(227, 115, 23, 0.5);
        }

        .dial-ping {
            padding: 14px 32px;
            border-radius: var(--radius);
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            color: #ffffff;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .dial-ping:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* Mosaic Collage 视觉区 */
        .mosaic-collage {
            position: relative;
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: repeat(12, 1fr);
            height: 420px;
            background: rgba(255, 255, 255, 0.01);
            border-radius: var(--radius);
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.03);
            overflow: hidden;
        }

        .mosaic-block {
            background: var(--bg-surface);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 16px;
            transition: var(--transition);
        }

        .mosaic-block:hover {
            transform: scale(1.03);
            border-color: var(--accent);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .mosaic-1 {
            grid-column: 1 / 7;
            grid-row: 1 / 7;
            background: linear-gradient(135deg, #1e1e24 0%, #121216 100%);
        }

        .mosaic-2 {
            grid-column: 7 / 13;
            grid-row: 2 / 6;
        }

        .mosaic-3 {
            grid-column: 1 / 6;
            grid-row: 7 / 13;
        }

        .mosaic-4 {
            grid-column: 6 / 13;
            grid-row: 6 / 12;
            background: linear-gradient(135deg, rgba(227, 115, 23, 0.15) 0%, rgba(18, 18, 22, 0.8) 100%);
            border-color: rgba(227, 115, 23, 0.3);
        }

        .mosaic-byte {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 8px;
            text-align: center;
        }

        .mosaic-value {
            font-size: 1.4rem;
            font-weight: 800;
            color: #ffffff;
        }

        .mosaic-accent {
            color: var(--accent);
        }

        /* 2. Steps Section (Article) */
        .ray-mesh {
            padding: 100px 0;
            background: var(--bg-surface);
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            position: relative;
        }

        .ray-tunnel {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .ray-peak {
            font-size: 2.2rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 16px;
            color: #ffffff;
        }

        .ray-byte {
            font-size: 1.1rem;
            color: var(--text-muted);
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px auto;
        }

        .ray-pool {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }

        .peer-block {
            flex: 1;
            min-width: 300px;
            background: var(--bg-deep);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .peer-block:hover {
            transform: translateY(-4px);
            border-color: rgba(227, 115, 23, 0.3);
            box-shadow: var(--shadow-lg);
        }

        .peer-block::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: transparent;
            transition: var(--transition);
        }

        .peer-block:hover::before {
            background: var(--accent);
        }

        .peer-flag {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(227, 115, 23, 0.1);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.25rem;
            margin-bottom: 24px;
        }

        .peer-peak {
            font-size: 1.4rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
        }

        .peer-byte {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .peer-byte ul {
            margin-top: 16px;
            padding-left: 20px;
        }

        .peer-byte li {
            margin-bottom: 8px;
        }

        /* 3. Device Config (Div) */
        .tunnel-pool {
            padding: 100px 0;
            background: var(--bg-deep);
        }

        .tunnel-mesh {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .tunnel-peak {
            font-size: 2.2rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 16px;
            color: #ffffff;
        }

        .tunnel-byte {
            font-size: 1.1rem;
            color: var(--text-muted);
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px auto;
        }

        .node-pool {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }

        .node-block {
            flex: 1;
            min-width: 340px;
            background: var(--bg-surface-elevated);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
        }

        .node-block:hover {
            border-color: rgba(227, 115, 23, 0.4);
            transform: translateY(-4px);
        }

        .node-flag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 24px;
            border: 1px solid rgba(227, 115, 23, 0.2);
        }

        .node-peak {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
        }

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

        .node-byte p {
            margin-bottom: 16px;
        }

        .node-byte code {
            background: rgba(0, 0, 0, 0.3);
            padding: 4px 8px;
            border-radius: 6px;
            font-family: Consolas, Monaco, monospace;
            color: #ffb86c;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* 4. Routing Modes (Div) */
        .orbit-vault {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--bg-deep) 0%, #0d0d11 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.03);
        }

        .vault-mesh {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .vault-peak {
            font-size: 2.2rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 16px;
            color: #ffffff;
        }

        .vault-byte {
            font-size: 1.1rem;
            color: var(--text-muted);
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px auto;
        }

        .vault-pool {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .vault-block {
            flex: 1;
            min-width: 280px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            padding: 32px;
            transition: var(--transition);
        }

        .vault-block:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .vault-block-peak {
            font-size: 1.25rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .vault-block-peak::before {
            content: "";
            display: inline-block;
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
        }

        .vault-block-byte {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* FAQ/Tips 提示条 */
        .tips-mesh {
            margin-top: 50px;
            background: rgba(227, 115, 23, 0.05);
            border: 1px solid rgba(227, 115, 23, 0.2);
            border-radius: var(--radius);
            padding: 24px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .tips-mesh svg {
            flex-shrink: 0;
            color: var(--accent);
            margin-top: 4px;
        }

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

        .tips-byte strong {
            color: #ffffff;
        }

        /* 页脚区域 */
        .crypt-edge {
            background: #060608;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 60px 0 30px 0;
            margin-top: auto;
        }

        .abyss-mesh {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
        }

        .abyss-byte {
            font-size: 0.85rem;
            color: var(--text-dark);
        }

        .abyss-flow {
            display: flex;
            gap: 24px;
        }

        .abyss-path {
            font-size: 0.85rem;
            color: var(--text-dark);
        }

        .abyss-path:hover {
            color: var(--text-muted);
        }

        /* 响应式断点 */
        @media (max-width: 768px) {
            .warp-mesh {
                flex-direction: column;
                text-align: center;
            }

            .warp-byte {
                margin-left: auto;
                margin-right: auto;
            }

            .warp-flow {
                justify-content: center;
            }

            .orbit-flow {
                display: none; /* 移动端简化 */
            }

            .peer-block, .node-block, .vault-block {
                min-width: 100%;
            }
        }

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

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

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

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

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

.route-route-nexus a.route-orbit-path {
    --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-route-nexus a.route-orbit-path,
.route-route-nexus a.route-orbit-path:hover,
.route-route-nexus a.route-orbit-path:focus,
.route-route-nexus a.route-orbit-path:active,
.route-route-nexus a.route-orbit-path.active,
.route-route-nexus a.route-orbit-path[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-route-nexus .route-proxy-tunnel{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.route-route-nexus{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 12, 0.8);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.route-route-nexus .route-route-orbit{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 76px;
        }

.route-route-nexus .route-core-sign{
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: #f3f4f6;
            font-weight: 700;
            font-size: 1.25rem;
            letter-spacing: -0.5px;
        }

.route-route-nexus .route-core-sign img{
            height: 36px;
            width: auto;
            display: block;
        }

.route-route-nexus .route-orbit-flow{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            list-style: none;
        }

.route-route-nexus .route-orbit-path{
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.95rem;
            padding: 8px 16px;
            border-radius: 99px;
            transition: 0.25s ease;
            font-weight: 500;
        }

.route-route-nexus .route-orbit-path:hover{
            color: #f3f4f6;
            background: rgba(255, 255, 255, 0.05);
        }

.route-route-nexus .route-orbit-path.active{
            color: #ffffff;
            background: #e37317;
            box-shadow: 0 4px 12px rgba(227, 115, 23, 0.3);
        }

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

.route-route-nexus .route-orbit-flow{
                justify-content: center;
                width: 100%;
            }}

.route-route-nexus {
    background: rgb(10, 10, 12);
    background-image: none;
}

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

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

.crypt-abyss-edge p,
.crypt-abyss-edge h1,
.crypt-abyss-edge h2,
.crypt-abyss-edge h3,
.crypt-abyss-edge h4,
.crypt-abyss-edge h5,
.crypt-abyss-edge h6 {
    text-decoration: none;
}

.crypt-abyss-edge img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.crypt-abyss-edge {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.crypt-abyss-edge a,
.crypt-abyss-edge a:hover,
.crypt-abyss-edge a:focus,
.crypt-abyss-edge a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.crypt-abyss-edge .crypt-proxy-tunnel{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.crypt-abyss-edge{
            background: #050507;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 80px 0 40px 0;
            color: #9ca3af;
            font-size: 0.9rem;
        }

.crypt-abyss-edge .crypt-edge-grid{
            display: grid;
            grid-template-columns: 1.5fr repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

.crypt-abyss-edge .crypt-edge-brand{
            max-width: 320px;
        }

.crypt-abyss-edge .crypt-edge-brand-peak{
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 16px;
        }

.crypt-abyss-edge .crypt-edge-brand-byte{
            font-size: 0.85rem;
            line-height: 1.6;
            margin-bottom: 24px;
        }

.crypt-abyss-edge .crypt-edge-col-peak{
            font-size: 0.95rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.crypt-abyss-edge .crypt-edge-flow{
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.crypt-abyss-edge .crypt-edge-path{
            color: #9ca3af;
            text-decoration: none;
            transition: 0.25s ease;
        }

.crypt-abyss-edge .crypt-edge-path:hover{
            color: #e37317;
            padding-left: 4px;
        }

.crypt-abyss-edge .crypt-edge-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 30px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            font-size: 0.8rem;
            color: #6b7280;
        }

.crypt-abyss-edge .crypt-edge-bottom-paths{
            display: flex;
            gap: 24px;
        }

.crypt-abyss-edge .crypt-edge-bottom-paths a{
            color: #6b7280;
            text-decoration: none;
            transition: 0.25s ease;
        }

.crypt-abyss-edge .crypt-edge-bottom-paths a:hover{
            color: #9ca3af;
        }

@media (max-width: 768px){.crypt-abyss-edge .crypt-edge-grid{
                grid-template-columns: 1fr;
                gap: 30px;
            }

.crypt-abyss-edge .crypt-edge-brand{
                max-width: 100%;
            }}