/* --------------------------------------------------
         * 本站视觉契约 - 核心设计基因
         * -------------------------------------------------- */
        :root {
            --color-primary: #2ebbce;
            --color-primary-dim: #1c727d;
            --color-primary-glow: rgba(46, 187, 206, 0.15);
            --color-bg-deep: #0b0f11;
            --color-bg-surface: #12181c;
            --color-bg-card: #192227;
            --color-text-main: #a3b8cc;
            --color-text-light: #e6edf3;
            --color-border: rgba(46, 187, 206, 0.12);
            --color-border-hover: rgba(46, 187, 206, 0.3);
            --radius-standard: 9px;
            --transition-speed: 0.35s ease;
        }

        /* 全局基础设置 */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--color-bg-deep);
            color: var(--color-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;
            -webkit-font-smoothing: antialiased;
        }

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

        /* --------------------------------------------------
         * 强制复用首页导航栏样式 (base, transit, etc.)
         * -------------------------------------------------- */
        .base {
            background-color: rgba(11, 15, 17, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }

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

        .emblem {
            display: flex;
            align-items: center;
            min-width: 0;
        }

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

        .chain {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            min-width: 0;
        }

        .tether {
            color: var(--color-text-main);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: var(--radius-standard);
            transition: all var(--transition-speed);
            white-space: nowrap;
        }

        .tether:hover {
            color: var(--color-text-light);
            background-color: rgba(255, 255, 255, 0.03);
        }

        .tether.active,
        .tether.active {
            color: var(--color-primary);
            background-color: var(--color-primary-glow);
            border: 1px solid var(--color-border);
        }

        /* --------------------------------------------------
         * 主内容区域与页面骨架 (generic-semantic-mix-b)
         * -------------------------------------------------- */
        .shroud {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 120px 24px 80px;
        }

        /* 布局通用约束 */
        .vortex,
        .cocoon,
        .matrix,
        .seam,
        .cluster,
        .pulse,
        .anchor,
        .bedrock,
        .terminus {
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

        /* 1. 专为高带宽需求设计的网络加速引擎 -> <article> (role: intro) */
        .vortex {
            width: 100%;
            align-items: center;
            justify-content: space-between;
            gap: 48px;
            margin-bottom: 96px;
        }

        .cluster {
            flex: 1 1 500px;
            flex-direction: column;
            align-items: flex-start;
        }

        .crest {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            line-height: 1.25;
            color: var(--color-text-light);
            margin-bottom: 20px;
            white-space: normal;
            word-break: keep-all;
        }

        .rune {
            font-size: 16px;
            line-height: 1.75;
            color: var(--color-text-main);
            margin-bottom: 32px;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* 特性列表 */
        .bead-cluster {
            width: 100%;
            margin-bottom: 36px;
        }

        .bead {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
            font-size: 15px;
            color: var(--color-text-light);
            width: 100%;
        }

        .glyph-dot {
            width: 8px;
            height: 8px;
            background-color: var(--color-primary);
            border-radius: 50%;
            flex-shrink: 0;
            box-shadow: 0 0 8px var(--color-primary);
        }

        /* 按钮与交互 */
        .seam {
            gap: 16px;
            width: 100%;
        }

        .spark {
            background-color: var(--color-primary);
            color: var(--color-bg-deep);
            font-weight: 600;
            padding: 14px 28px;
            border-radius: var(--radius-standard);
            box-shadow: 0 4px 14px var(--color-primary-glow);
            border: 1px solid transparent;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-speed);
        }

        .spark:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(46, 187, 206, 0.4);
            background-color: #3ad2e5;
        }

        .trigger {
            background-color: transparent;
            color: var(--color-primary);
            border: 1px solid var(--color-border);
            font-weight: 600;
            padding: 14px 28px;
            border-radius: var(--radius-standard);
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-speed);
        }

        .trigger:hover {
            border-color: var(--color-border-hover);
            background-color: rgba(46, 187, 206, 0.05);
            color: var(--color-text-light);
        }

        /* 视觉呈现区域 */
        .beacon {
            flex: 1 1 400px;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .visual-box {
            width: 100%;
            max-width: 440px;
            background: linear-gradient(135deg, rgba(25, 34, 39, 0.6) 0%, rgba(18, 24, 28, 0.8) 100%);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 30px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        /* 2. Anycast 智能多径路由技术 -> <aside> (role: detail) */
        .cocoon {
            width: 100%;
            flex-direction: column;
            margin-bottom: 96px;
        }

        .cocoon .crest {
            text-align: center;
            margin-bottom: 16px;
            align-self: center;
        }

        .cocoon .rune {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 48px;
            align-self: center;
        }

        .matrix {
            width: 100%;
            gap: 24px;
            justify-content: center;
        }

        .parcel {
            flex: 1 1 300px;
            max-width: 380px;
            background-color: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-standard);
            padding: 32px 24px;
            transition: all var(--transition-speed);
            flex-direction: column;
        }

        .parcel:hover {
            transform: translateY(-4px);
            border-color: var(--color-border-hover);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2), 0 0 20px var(--color-primary-glow);
        }

        .glyph {
            width: 48px;
            height: 48px;
            background-color: var(--color-primary-glow);
            border: 1px solid var(--color-border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--color-primary);
        }

        .parcel .crest {
            font-size: 20px;
            font-weight: 700;
            text-align: left;
            margin-bottom: 12px;
            align-self: flex-start;
        }

        .parcel .rune {
            font-size: 14px;
            line-height: 1.6;
            text-align: left;
            margin-bottom: 0;
            align-self: flex-start;
        }

        /* 3. 全球核心加速节点延迟实测表 -> <div> (role: capability) */
        .specs-block {
            width: 100%;
            flex-direction: column;
            margin-bottom: 80px;
        }

        .specs-block .crest {
            text-align: center;
            margin-bottom: 16px;
            align-self: center;
        }

        .specs-block .rune {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px;
            align-self: center;
        }

        /* 表格容器包装 */
        .capsule {
            width: 100%;
            background-color: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            overflow-x: auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            min-width: 600px;
        }

        .table th,
        .table td {
            padding: 18px 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            font-size: 14px;
        }

        .table th {
            background-color: rgba(255, 255, 255, 0.01);
            color: var(--color-text-light);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .table tr:last-child td {
            border-bottom: none;
        }

        .table tr:hover td {
            background-color: rgba(255, 255, 255, 0.01);
        }

        .crypt-active {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background-color: rgba(46, 187, 206, 0.1);
            border: 1px solid var(--color-border);
            color: var(--color-primary);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
        }

        .crypt-pulse {
            width: 6px;
            height: 6px;
            background-color: var(--color-primary);
            border-radius: 50%;
            animation: pulse-glow 1.8s infinite;
        }

        .latency-rune {
            color: var(--color-primary);
            font-weight: 600;
        }

        /* --------------------------------------------------
         * 底部信息区域 -> <section class="pulse">
         * -------------------------------------------------- */
        .pulse {
            width: 100%;
            background-color: #080c0e;
            border-top: 1px solid var(--color-border);
            padding: 64px 24px 32px;
        }

        .anchor {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            justify-content: space-between;
            gap: 48px;
            margin-bottom: 48px;
        }

        .brand-capsule {
            flex: 1 1 300px;
            flex-direction: column;
            align-items: flex-start;
        }

        .brand-name {
            font-size: 22px;
            font-weight: 800;
            color: var(--color-text-light);
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .brand-desc {
            font-size: 14px;
            line-height: 1.6;
            color: var(--color-text-main);
            max-width: 320px;
            margin-bottom: 16px;
        }

        .bedrock {
            flex: 2 1 500px;
            justify-content: flex-end;
            gap: 64px;
        }

        .tether-seam {
            display: flex;
            flex-direction: column;
            gap: 12px;
            min-width: 120px;
        }

        .seam-crest {
            font-size: 14px;
            font-weight: 700;
            color: var(--color-text-light);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pulse-tether {
            font-size: 14px;
            color: var(--color-text-main);
            transition: color var(--transition-speed);
        }

        .pulse-tether:hover {
            color: var(--color-primary);
        }

        .terminus {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            padding-top: 24px;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            font-size: 13px;
            color: rgba(163, 184, 204, 0.5);
        }

        .terminus-links {
            display: flex;
            gap: 24px;
        }

        /* --------------------------------------------------
         * 动效与交互增强
         * -------------------------------------------------- */
        @keyframes pulse-glow {
            0% {
                transform: scale(0.9);
                opacity: 0.6;
            }
            50% {
                transform: scale(1.1);
                opacity: 1;
                box-shadow: 0 0 10px var(--color-primary);
            }
            100% {
                transform: scale(0.9);
                opacity: 0.6;
            }
        }

        /* 响应式调整 */
        @media (max-width: 1024px) {
            .bedrock {
                justify-content: flex-start;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .transit {
                flex-direction: column;
                gap: 16px;
            }
            .chain {
                justify-content: center;
                width: 100%;
            }
            .vortex {
                flex-direction: column-reverse;
                gap: 32px;
                margin-bottom: 64px;
            }
            .cluster {
                flex: 1 1 100%;
            }
            .beacon {
                flex: 1 1 100%;
                width: 100%;
            }
            .cocoon {
                margin-bottom: 64px;
            }
            .anchor {
                flex-direction: column;
                gap: 32px;
            }
            .bedrock {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 32px;
            }
            .terminus {
                flex-direction: column;
                align-items: flex-start;
            }
        }

.conduit-base {
    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(--color-text-main);
}
.conduit-base,
.conduit-base *,
.conduit-base *::before,
.conduit-base *::after {
    box-sizing: border-box;
}

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

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

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

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

.conduit-base a.conduit-tether.conduit-active,
.conduit-base a.conduit-tether {
    --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;
}

.conduit-base a.conduit-tether.conduit-active,
.conduit-base a.conduit-tether.conduit-active:hover,
.conduit-base a.conduit-tether.conduit-active:focus,
.conduit-base a.conduit-tether.conduit-active:active,
.conduit-base a.conduit-tether.conduit-active.active,
.conduit-base a.conduit-tether.conduit-active[aria-current="page"],
.conduit-base a.conduit-tether,
.conduit-base a.conduit-tether:hover,
.conduit-base a.conduit-tether:focus,
.conduit-base a.conduit-tether:active,
.conduit-base a.conduit-tether.active,
.conduit-base a.conduit-tether[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);
}

.conduit-base{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(11, 15, 17, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(46, 187, 206, 0.12);
        }

.conduit-base .conduit-transit{
            max-width: 1360px;
            margin: 0 auto;
            padding: 0 30px;
            height: 76px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.conduit-base .conduit-emblem{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.conduit-base .conduit-emblem img{
            height: 38px;
            width: auto;
            display: block;
        }

.conduit-base .conduit-chain{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            min-width: 0;
        }

.conduit-base .conduit-tether{
            font-size: 14px;
            font-weight: 500;
            color: #a3b8cc;
            padding: 8px 16px;
            border-radius: 9px;
            border: 1px solid transparent;
        }

.conduit-base .conduit-tether:hover{
            color: #2ebbce;
            background-color: rgba(46, 187, 206, 0.15);
            border-color: rgba(46, 187, 206, 0.12);
        }

.conduit-base .conduit-tether.conduit-active{
            color: #2ebbce;
            background-color: rgba(46, 187, 206, 0.15);
            border-color: rgba(46, 187, 206, 0.3);
            font-weight: 600;
        }

@media (max-width: 1024px){.conduit-base .conduit-transit{
                height: auto;
                padding: 15px 20px;
                flex-direction: column;
                gap: 15px;
            }

.conduit-base .conduit-chain{
                width: 100%;
                justify-content: center;
            }}

.conduit-base {
    background: rgb(11, 15, 17);
    background-image: none;
}

.anchor-pulse {
    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(--color-text-main);
}
.anchor-pulse,
.anchor-pulse *,
.anchor-pulse *::before,
.anchor-pulse *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-pulse .anchor-tether{
            font-size: 14px;
            font-weight: 500;
            color: #a3b8cc;
            padding: 8px 16px;
            border-radius: 9px;
            border: 1px solid transparent;
        }

.anchor-pulse .anchor-tether:hover{
            color: #2ebbce;
            background-color: rgba(46, 187, 206, 0.15);
            border-color: rgba(46, 187, 206, 0.12);
        }

.anchor-pulse .anchor-cocoon{
            max-width: 1360px;
            margin: 0 auto;
            padding: 120px 30px 60px;
        }

.anchor-pulse .anchor-crest{
            font-size: 40px;
            font-weight: 800;
            line-height: 1.25;
            color: #e6edf3;
            margin-bottom: 20px;
            white-space: normal;
            word-break: keep-all;
        }

.anchor-pulse .anchor-rune{
            font-size: 15px;
            color: #a3b8cc;
            margin-bottom: 30px;
            line-height: 1.8;
        }

.anchor-pulse{
            background-color: #0b0f11;
            border-top: 1px solid rgba(46, 187, 206, 0.12);
            padding: 60px 0 30px;
        }

.anchor-pulse .anchor-cocoon{
            padding: 0 30px 40px;
            max-width: 1360px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

.anchor-pulse .anchor-anchor{
            flex: 1;
            min-width: 280px;
        }

.anchor-pulse .anchor-anchor .anchor-crest{
            font-size: 22px;
            font-weight: 800;
            color: #e6edf3;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

.anchor-pulse .anchor-anchor .anchor-rune{
            font-size: 13.5px;
            color: #a3b8cc;
            line-height: 1.7;
            max-width: 320px;
        }

.anchor-pulse .anchor-terminus{
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            min-width: 280px;
        }

.anchor-pulse .anchor-seam-tether{
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.anchor-pulse .anchor-seam-tether .anchor-crest{
            font-size: 14px;
            font-weight: 700;
            color: #e6edf3;
            margin-bottom: 8px;
        }

.anchor-pulse .anchor-seam-tether .anchor-tether{
            font-size: 13.5px;
            color: #a3b8cc;
            padding: 0;
            border: none;
            background: none;
        }

.anchor-pulse .anchor-seam-tether .anchor-tether:hover{
            color: #2ebbce;
            background: none;
        }

.anchor-pulse .anchor-bedrock{
            max-width: 1360px;
            margin: 0 auto;
            padding: 30px 30px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            text-align: center;
        }

.anchor-pulse .anchor-bedrock .anchor-rune{
            font-size: 12px;
            color: rgba(163, 184, 204, 0.5);
            margin: 0;
        }

@media (max-width: 1024px){.anchor-pulse .anchor-cocoon{
                padding-top: 160px;
            }}

@media (max-width: 768px){.anchor-pulse .anchor-crest{
                font-size: 30px;
            }

.anchor-pulse .anchor-cocoon{
                flex-direction: column;
                gap: 30px;
            }

.anchor-pulse .anchor-terminus{
                gap: 40px;
            }}