/* 基础变量与设计基因 */
        :root {
            --brand-color: #dc5486;
            --brand-color-light: #f38ab3;
            --brand-color-dark: #b83665;
            --bg-base: #f9f9fa;
            --bg-surface: #ffffff;
            --bg-deep: #16161a;
            --text-primary: #1a1a24;
            --text-secondary: #5c5c6b;
            --text-muted: #9494a3;
            --border-color: #eaeaea;
            --shadow-sm: 0 4px 12px rgba(28, 28, 38, 0.05);
            --shadow-md: 0 8px 24px rgba(28, 28, 38, 0.08), 0 2px 8px rgba(28, 28, 38, 0.04);
            --shadow-lg: 0 16px 40px rgba(28, 28, 38, 0.12), 0 4px 12px rgba(28, 28, 38, 0.08);
            --radius-md: 11px;
            --radius-lg: 17px;
            --transition: 0.25s ease;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            min-width: 0; /* Flexbox safety */
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-base);
            color: var(--text-primary);
            line-height: 1.6;
            word-break: break-word;
            overflow-wrap: break-word;
            -webkit-font-smoothing: antialiased;
        }

        /* 文本换行规范 */
        :lang(zh) {
            word-break: keep-all;
        }

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

        /* 导航栏复用首页样式 */
        .crown {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
        }

        .helm {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .seal img {
            height: 32px;
            display: block;
        }

        .mesh {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .wire {
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.95rem;
        }

        .wire:hover,
        .wire.active {
            color: var(--brand-color);
        }

        /* 页面骨架通用类 */
        .tunnel {
            padding-top: 80px; /* 避开固定导航栏 */
            display: flex;
            flex-direction: column;
            gap: 4rem;
            padding-bottom: 6rem;
        }

        .veil {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

        /* Hero (Intro) - 全球高速节点网络 */
        .portal {
            background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
            padding: 6rem 0;
            border-bottom: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        /* 装饰性背景几何 */
        .portal::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(220, 84, 134, 0.05) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .portal .veil {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 3rem;
        }

        .apex {
            font-weight: 700;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: var(--text-primary);
            white-space: normal;
        }

        .portal .cipher {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 600px;
        }

        .portal .pack {
            display: flex;
            gap: 4rem;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
        }

        .node {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .apex-stat {
            /* 强调衬线字体 */
            font-family: Georgia, "Times New Roman", serif;
            font-size: clamp(3.5rem, 8vw, 5.5rem);
            font-weight: 700;
            color: var(--brand-color);
            line-height: 1;
            text-shadow: 2px 4px 12px rgba(220, 84, 134, 0.15);
        }

        .cipher-stat {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        /* Article (Detail) - 高优专线，量身定制 */
        .nexus {
            padding: 2rem 0;
        }

        .nexus .veil {
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        .nexus .apex {
            font-size: clamp(2rem, 4vw, 2.5rem);
            text-align: center;
        }

        .nexus > .veil > .cipher {
            text-align: center;
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto -1rem;
        }

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

        .cloak {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 3rem 2.5rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(255,255,255,0.8);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            transition: transform var(--transition), box-shadow var(--transition);
        }

        .cloak:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .glyph {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(220, 84, 134, 0.1), rgba(220, 84, 134, 0.02));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-color);
            border: 1px solid rgba(220, 84, 134, 0.15);
        }

        .apex-sub {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            white-space: normal;
        }

        .cloak .cipher {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Div (Closing) - 智能路由策略 */
        .vault {
            padding: 2rem 0;
        }

        .shield {
            background: var(--bg-surface);
            border-radius: var(--radius-lg);
            padding: clamp(3rem, 6vw, 5rem);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            gap: 3rem;
            position: relative;
            overflow: hidden;
        }

        /* 内部装饰线 */
        .shield::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--brand-color), #f9a8d4);
        }

        .shield .apex {
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            text-align: center;
        }
        
        .shield > .cipher {
            text-align: center;
            color: var(--text-secondary);
            margin-top: -1.5rem;
        }

        .pack-mesh {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
            width: 100%;
        }

        .pod {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 2rem;
            background: var(--bg-base);
            border-radius: var(--radius-md);
            border: 1px solid transparent;
            transition: all var(--transition);
        }

        .pod:hover {
            background: var(--bg-surface);
            border-color: rgba(220, 84, 134, 0.2);
            box-shadow: var(--shadow-sm);
        }

        .glyph-small {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(220, 84, 134, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-color);
        }

        .bit {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .apex-micro {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-primary);
            white-space: normal;
        }

        .cipher-micro {
            color: var(--text-secondary);
            font-size: 1rem;
        }

        .vault-surge {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }

        .warp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1.2rem 2.5rem;
            background-color: var(--brand-color);
            color: #ffffff;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: var(--radius-md);
            border: none;
            box-shadow: 0 8px 30px rgba(220, 84, 134, 0.3);
            cursor: pointer;
        }

        .warp:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(220, 84, 134, 0.4);
            color: #ffffff;
        }

        /* 页脚 */
        .core {
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border-color);
            padding: 4rem 2rem;
            text-align: center;
        }

        .core .anchor {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            display: block;
        }

        .core .moat {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* 响应式断点 */
        @media (max-width: 768px) {
            .mesh {
                display: none; /* 移动端隐藏导航链接，依赖外部菜单组件 */
            }
            .portal .pack {
                flex-direction: column;
                gap: 2rem;
            }
            .mesh-grid {
                grid-template-columns: 1fr;
            }
            .pod {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }

.route-crown {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
}
.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.5rem 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-helm{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.route-crown{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            z-index: 100;
            padding: 1rem 0;
            transition: all 0.25s ease;
        }

.route-crown .route-helm{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1.5rem;
        }

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

.route-crown .route-seal img{
            height: 36px;
            width: auto;
            display: block;
        }

.route-crown .route-mesh{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

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

.route-crown .route-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #5c5c6b;
            position: relative;
            padding: 0.5rem 0;
        }

.route-crown .route-wire:hover{
            color: #dc5486;
        }

.route-crown .route-wire.active{
            color: #dc5486;
            font-weight: 600;
        }

.route-crown .route-wire.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #dc5486;
            border-radius: 2px;
        }

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

.route-crown {
    background: rgb(255, 255, 255);
    background-image: none;
}

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

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

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

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

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

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

.anchor-core .anchor-apex{
            font-weight: 700;
            color: #1a1a24;
            word-break: keep-all;
            overflow-wrap: break-word;
            white-space: normal;
        }

.anchor-core .anchor-cipher{
            word-break: keep-all;
            overflow-wrap: break-word;
            color: #5c5c6b;
        }

.anchor-core .anchor-apex-3{ font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.3; }

.anchor-core .anchor-tunnel-inner{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.anchor-core .anchor-pack{
            display: flex;
            flex-wrap: wrap;
        }

.anchor-core .anchor-pack > *{
            min-width: 0;
        }

.anchor-core .anchor-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #5c5c6b;
            position: relative;
            padding: 0.5rem 0;
        }

.anchor-core .anchor-wire:hover{
            color: #dc5486;
        }

.anchor-core .anchor-wire.active{
            color: #dc5486;
            font-weight: 600;
        }

.anchor-core .anchor-wire.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #dc5486;
            border-radius: 2px;
        }

.anchor-core{
            background-color: #111116;
            color: #ffffff;
            padding: 5rem 0 3rem;
        }

.anchor-core .anchor-core-grid{
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

.anchor-core .anchor-anchor{
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

.anchor-core .anchor-anchor .anchor-apex-3{
            color: #ffffff;
            margin-bottom: 1rem;
        }

.anchor-core .anchor-anchor .anchor-wire{
            color: #9494a3;
            font-size: 0.95rem;
            padding: 0;
            display: inline-block;
        }

.anchor-core .anchor-anchor .anchor-wire:hover{
            color: #ffffff;
        }

.anchor-core .anchor-moat{
            border-top: 1px solid #3a3a46;
            padding-top: 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            color: #9494a3;
            font-size: 0.875rem;
        }

.anchor-core .anchor-moat > *{ min-width: 0; }

.anchor-core .anchor-brand-cipher{
            font-size: 1.75rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: #ffffff;
            margin-bottom: 1rem;
        }

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

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

.anchor-core .anchor-moat{
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }}