/* =========================================
           基础变量与重置 (继承视觉契约)
           ========================================= */
        :root {
            --color-base: #0a0c10;
            --color-surface: #12151c;
            --color-surface-elevated: #1a1e27;
            --color-primary: #35a8ce;
            --color-primary-glow: rgba(53, 168, 206, 0.3);
            --color-text-main: #e2e8f0;
            --color-text-muted: #8ba1b7;
            --color-border: #232936;
            --radius-standard: 12px;
            --radius-sharp: 2px;
            --transition: 0.15s ease;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--color-base);
            color: var(--color-text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

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

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* 强制规范 */
        .veil-root,
        .tunnel-matrix,
        .portal-cloak,
        .veil-veil,
        .veil-media,
        .zone-cluster,
        .cluster-grid,
        .pod-data,
        .cluster-actions,
        .trench-steps,
        .cluster-track,
        .relay-step,
        .veil-comparison,
        .cluster-logs,
        .node-log,
        .tail-anchor,
        .mesh-root,
        .cluster-links {
            display: flex;
            flex-wrap: wrap;
        }

        .veil-root > *,
        .tunnel-matrix > *,
        .portal-cloak > *,
        .veil-veil > *,
        .veil-media > *,
        .zone-cluster > *,
        .cluster-grid > *,
        .pod-data > *,
        .cluster-actions > *,
        .trench-steps > *,
        .cluster-track > *,
        .relay-step > *,
        .veil-comparison > *,
        .cluster-logs > *,
        .node-log > *,
        .tail-anchor > *,
        .mesh-root > *,
        .cluster-links > * {
            min-width: 0;
        }

        h1, h2, h3, h4, p, span, div, a, code, time {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        
        h1, h2, h3 {
            white-space: normal;
        }

        p, span, li, a {
            word-break: keep-all; /* 中文保持词组 */
        }

        /* =========================================
           导航栏 (强制复用)
           ========================================= */
        .peak-helm {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 12, 16, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border);
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .mesh-radar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1280px;
            padding: 1rem 5vw;
        }
        
        .mesh-radar > * {
            min-width: 0;
        }

        .sigil {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .sigil > * {
            min-width: 0;
        }

        .sigil img {
            height: 32px;
            width: auto;
        }

        .cluster-routes {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }
        
        .cluster-routes > * {
            min-width: 0;
        }

        .path-route {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text-muted);
            position: relative;
            padding: 0.5rem 0;
        }

        .path-route:hover,
        .path-route.active {
            color: var(--color-text-main);
        }

        .path-route.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--color-primary);
            border-radius: 2px;
            box-shadow: 0 0 8px var(--color-primary-glow);
        }

        /* =========================================
           主内容容器
           ========================================= */
        .veil-root {
            width: 100%;
            min-height: 100vh;
            flex-direction: column;
        }

        .tunnel-matrix {
            flex: 1;
            width: 100%;
            flex-direction: column;
        }

        /* =========================================
           1. 终端就绪，一键接入 (Hero / Acquire)
           ========================================= */
        .portal-cloak {
            width: 100%;
            padding: 6rem 5vw 4rem;
            background: radial-gradient(circle at 70% 40%, rgba(53, 168, 206, 0.08) 0%, transparent 60%),
                        linear-gradient(to bottom, #0f131a, var(--color-base));
            justify-content: center;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--color-border);
        }

        .portal-cloak::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: radial-gradient(var(--color-border) 1px, transparent 1px);
            background-size: 32px 32px;
            opacity: 0.3;
            pointer-events: none;
        }

        .veil-veil {
            width: 100%;
            max-width: 1280px;
            align-items: center;
            justify-content: space-between;
            gap: 4rem;
            position: relative;
            z-index: 2;
        }

        .veil-hash {
            flex: 1 1 500px;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            min-width: 0;
        }

        .apex-nexus {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            line-height: 1.15;
            color: #ffffff;
            letter-spacing: -0.02em;
        }

        .hash-break {
            font-size: clamp(1.1rem, 1.5vw, 1.25rem);
            color: var(--color-text-muted);
            max-width: 480px;
        }

        .cluster-actions {
            gap: 1rem;
            margin-top: 1rem;
        }

        .ping-jump {
            padding: 1rem 2.5rem;
            background-color: var(--color-primary);
            color: #ffffff;
            font-weight: 600;
            border-radius: var(--radius-standard);
            border: 1px solid transparent;
            box-shadow: 0 4px 15px var(--color-primary-glow);
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            cursor: pointer;
        }

        .ping-jump:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(53, 168, 206, 0.4);
            background-color: #3bbbf5;
        }

        .ping-hook {
            padding: 1rem 2rem;
            background-color: transparent;
            color: var(--color-text-main);
            font-weight: 500;
            border-radius: var(--radius-standard);
            border: 1px solid var(--color-border);
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            cursor: pointer;
        }

        .ping-hook:hover {
            background-color: var(--color-surface-elevated);
            border-color: var(--color-primary);
            color: var(--color-primary);
        }

        .veil-media {
            flex: 1 1 500px;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .lens-ui {
            width: 100%;
            max-width: 560px;
            border-radius: var(--radius-standard);
            border: 1px solid var(--color-border);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            transition: transform 0.3s ease;
        }
        
        .lens-ui:hover {
            transform: translateY(-5px) scale(1.02);
        }

        /* =========================================
           2. 选择您的运行环境 (Article / Acquire)
           ========================================= */
        .zone-cluster {
            width: 100%;
            padding: 6rem 5vw;
            justify-content: center;
            background-color: var(--color-base);
        }

        .veil-zone {
            width: 100%;
            max-width: 1280px;
            display: flex;
            flex-direction: column;
            gap: 3rem;
            min-width: 0;
        }

        .veil-zone-peak {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            text-align: center;
            align-items: center;
        }

        .apex-zone {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 600;
            color: var(--color-text-main);
        }

        .hash-zone {
            color: var(--color-text-muted);
            max-width: 600px;
        }

        .cluster-layout {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: stretch;
            width: 100%;
        }

        .cluster-layout > * {
            min-width: 0;
        }

        .veil-node {
            flex: 1 1 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .lens-node {
            width: 100%;
            border-radius: var(--radius-sharp);
            border: 1px solid var(--color-border);
            opacity: 0.8;
            filter: grayscale(20%);
            transition: all var(--transition);
        }

        .lens-node:hover {
            opacity: 1;
            filter: grayscale(0%);
            border-color: var(--color-primary-glow);
        }

        .cluster-grid {
            flex: 2 1 600px;
            gap: 1.5rem;
            align-content: flex-start;
        }

        .pod-data {
            flex: 1 1 calc(50% - 1.5rem);
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-sharp);
            padding: 2rem;
            flex-direction: column;
            gap: 1.5rem;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }

        .pod-data::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 4px; height: 100%;
            background: var(--color-border);
            transition: background var(--transition);
        }

        .pod-data:hover {
            background: var(--color-surface-elevated);
            border-color: rgba(53, 168, 206, 0.4);
            transform: translateY(-2px);
        }

        .pod-data:hover::before {
            background: var(--color-primary);
        }

        .veil-glyph {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .glyph-os {
            width: 40px;
            height: 40px;
            color: var(--color-primary);
        }

        .apex-pod {
            font-size: 1.25rem;
            font-weight: 600;
            color: #fff;
        }

        .hash-spec {
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
            font-size: 0.85rem;
            color: var(--color-text-muted);
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }
        
        .hash-spec span {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px dashed var(--color-border);
            padding-bottom: 0.25rem;
        }

        /* =========================================
           3. 极简部署流程 (Aside / Steps)
           ========================================= */
        .trench-steps {
            width: 100%;
            padding: 5rem 5vw;
            background-color: var(--color-surface);
            border-top: 1px solid var(--color-border);
            justify-content: center;
        }

        .veil-steps {
            width: 100%;
            max-width: 1024px;
            display: flex;
            flex-direction: column;
            gap: 3rem;
            min-width: 0;
        }

        .cluster-track {
            gap: 2rem;
            position: relative;
        }

        .cluster-track::before {
            content: '';
            position: absolute;
            top: 24px; left: 24px; right: 24px;
            height: 2px;
            background: var(--color-border);
            z-index: 0;
        }

        .relay-step {
            flex: 1 1 280px;
            background: var(--color-base);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-standard);
            padding: 2rem;
            flex-direction: column;
            gap: 1rem;
            position: relative;
            z-index: 1;
            transition: all var(--transition);
        }

        .relay-step:hover {
            border-color: var(--color-primary-glow);
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
            transform: translateY(-4px);
        }

        .glyph-num {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--color-surface-elevated);
            border: 2px solid var(--color-border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--color-primary);
            margin-top: -3.5rem;
            margin-bottom: 0.5rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
            transition: all var(--transition);
        }

        .relay-step:hover .glyph-num {
            border-color: var(--color-primary);
            background: var(--color-primary);
            color: #fff;
        }

        .apex-step {
            font-size: 1.15rem;
            font-weight: 600;
            color: #fff;
        }

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

        /* =========================================
           4. 底层架构更新 (Div / Comparison)
           ========================================= */
        .veil-comparison {
            width: 100%;
            padding: 6rem 5vw;
            background-color: var(--color-base);
            border-top: 1px solid var(--color-border);
            justify-content: center;
        }

        .veil-logs {
            width: 100%;
            max-width: 800px;
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
            min-width: 0;
        }

        .cluster-logs {
            flex-direction: column;
            gap: 2rem;
            border-left: 2px solid var(--color-border);
            padding-left: 2rem;
            margin-left: 1rem;
        }

        .node-log {
            flex-direction: column;
            gap: 0.75rem;
            position: relative;
        }

        .node-log::before {
            content: '';
            position: absolute;
            left: -2.4rem;
            top: 0.2rem;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--color-surface-elevated);
            border: 2px solid var(--color-primary);
            box-shadow: 0 0 8px var(--color-primary-glow);
        }

        .hash-time {
            font-family: ui-monospace, monospace;
            font-size: 0.9rem;
            color: var(--color-primary);
            font-weight: 600;
        }

        .apex-log {
            font-size: 1.1rem;
            font-weight: 500;
            color: #fff;
        }

        .hash-code {
            display: block;
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-sharp);
            padding: 1rem;
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
            font-size: 0.85rem;
            color: var(--color-text-muted);
            white-space: pre-wrap;
            line-height: 1.5;
        }

        .hash-code strong {
            color: #a5d6ff;
            font-weight: normal;
        }

        /* =========================================
           页脚 (Footer)
           ========================================= */
        .tail-anchor {
            width: 100%;
            background-color: var(--color-surface);
            border-top: 1px solid var(--color-border);
            padding: 4rem 5vw 2rem;
            justify-content: center;
        }

        .mesh-root {
            width: 100%;
            max-width: 1280px;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .apex-root {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-text-main);
            letter-spacing: -0.02em;
        }

        .cluster-links {
            gap: 1.5rem;
        }

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

        .path-root:hover {
            color: var(--color-primary);
        }

        .hash-hash {
            width: 100%;
            text-align: center;
            font-size: 0.85rem;
            color: var(--color-text-muted);
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--color-border);
        }

        /* =========================================
           响应式断点
           ========================================= */
        @media (max-width: 1024px) {
            .veil-veil {
                flex-direction: column;
                text-align: center;
            }
            .cluster-actions {
                justify-content: center;
            }
            .hash-break {
                margin: 0 auto;
            }
            .cluster-layout {
                flex-direction: column;
            }
            .cluster-grid, .veil-node {
                flex: 1 1 100%;
            }
        }

        @media (max-width: 768px) {
            .mesh-radar {
                flex-direction: column;
                gap: 1rem;
            }
            .cluster-routes {
                justify-content: center;
                gap: 1rem;
            }
            .portal-cloak {
                padding: 4rem 5vw 3rem;
            }
            .pod-data {
                flex: 1 1 100%;
            }
            .cluster-track::before {
                display: none; /* 移动端隐藏连接线 */
            }
            .glyph-num {
                margin-top: 0;
            }
            .mesh-root {
                flex-direction: column;
                text-align: center;
            }
        }

.helm-peak-helm {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--color-text-main);
}
.helm-peak-helm,
.helm-peak-helm *,
.helm-peak-helm *::before,
.helm-peak-helm *::after {
    box-sizing: border-box;
}

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

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

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

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

.helm-peak-helm a.helm-path-route {
    --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;
}

.helm-peak-helm a.helm-path-route,
.helm-peak-helm a.helm-path-route:hover,
.helm-peak-helm a.helm-path-route:focus,
.helm-peak-helm a.helm-path-route:active,
.helm-peak-helm a.helm-path-route.active,
.helm-peak-helm a.helm-path-route[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);
}

.helm-peak-helm{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(10, 12, 16, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding: 1rem 5vw;
        }

.helm-peak-helm .helm-mesh-radar{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

.helm-peak-helm .helm-sigil{
            min-width: 0;
            width: 140px;
            flex-shrink: 0;
        }

.helm-peak-helm .helm-cluster-routes{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.helm-peak-helm .helm-path-route{
            font-size: 0.9rem;
            font-weight: 500;
            color: #8ba1b7;
            letter-spacing: 0.5px;
            position: relative;
            padding: 0.5rem 0;
        }

.helm-peak-helm .helm-path-route:hover, .helm-peak-helm .helm-path-route.active{
            color: #e2e8f0;
        }

.helm-peak-helm .helm-path-route::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #35a8ce;
            transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

.helm-peak-helm .helm-path-route:hover::after, .helm-peak-helm .helm-path-route.active::after{
            width: 100%;
        }

@media (max-width: 768px){.helm-peak-helm{
                padding: 1rem;
            }

.helm-peak-helm .helm-sigil{
                margin-bottom: 1rem;
            }

.helm-peak-helm .helm-cluster-routes{
                gap: 1rem;
                justify-content: center;
                width: 100%;
            }}

.helm-peak-helm {
    background: rgb(10, 12, 16);
    background-image: none;
}

.anchor-veil-global {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--color-text-main);
}
.anchor-veil-global,
.anchor-veil-global *,
.anchor-veil-global *::before,
.anchor-veil-global *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-veil-global .anchor-flex-cluster{
            display: flex;
            flex-wrap: wrap;
        }

.anchor-veil-global .anchor-flex-strand{
            min-width: 0;
        }

.anchor-veil-global .anchor-hash-break{
            word-break: break-word;
            overflow-wrap: break-word;
        }

.anchor-veil-global .anchor-hash-cn{
            word-break: keep-all;
            overflow-wrap: break-word;
        }

.anchor-veil-global{
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

.anchor-veil-global .anchor-tunnel-core{
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8rem;
            padding-bottom: 8rem;
        }

.anchor-veil-global .anchor-zone-bound{
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.anchor-veil-global .anchor-peak-helm{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(10, 12, 16, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding: 1rem 5vw;
        }

.anchor-veil-global .anchor-mesh-radar{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

.anchor-veil-global .anchor-sigil{
            min-width: 0;
            width: 140px;
            flex-shrink: 0;
        }

.anchor-veil-global .anchor-cluster-routes{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.anchor-veil-global .anchor-path-route{
            font-size: 0.9rem;
            font-weight: 500;
            color: #8ba1b7;
            letter-spacing: 0.5px;
            position: relative;
            padding: 0.5rem 0;
        }

.anchor-veil-global .anchor-path-route:hover, .anchor-veil-global .anchor-path-route.active{
            color: #e2e8f0;
        }

.anchor-veil-global .anchor-path-route::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #35a8ce;
            transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

.anchor-veil-global .anchor-path-route:hover::after, .anchor-veil-global .anchor-path-route.active::after{
            width: 100%;
        }

.anchor-veil-global .anchor-ping-jump{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            background-color: #35a8ce;
            color: #ffffff;
            font-weight: 600;
            font-size: 1.05rem;
            border-radius: 12px;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all 0.15s ease;
            box-shadow: 0 4px 15px rgba(53, 168, 206, 0.3);
            white-space: normal;
        }

.anchor-veil-global .anchor-ping-jump:hover{
            background-color: #2b8ba8;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(53, 168, 206, 0.4);
        }

.anchor-veil-global .anchor-ping-ghost{
            background-color: transparent;
            border-color: #232936;
            color: #e2e8f0;
            box-shadow: none;
        }

.anchor-veil-global .anchor-ping-ghost:hover{
            background-color: #1a1e27;
            border-color: #8ba1b7;
            box-shadow: none;
        }

.anchor-veil-global .anchor-portal-cloak{
            position: relative;
            width: 100%;
            min-height: 95vh;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 8rem 5vw 4rem;
            
            background: 
                radial-gradient(circle at 50% 30%, rgba(53, 168, 206, 0.15) 0%, transparent 60%),
                linear-gradient(to bottom, #0f131a, #0a0c10);
            overflow: hidden;
        }

.anchor-veil-global .anchor-portal-cloak::before{
            content: '';
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.3;
            z-index: 1;
        }

.anchor-veil-global .anchor-veil-nexus{
            position: relative;
            z-index: 2;
            max-width: 900px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            min-width: 0;
        }

.anchor-veil-global .anchor-apex-nexus{
            font-family: "Playfair Display", "Noto Serif SC", Georgia, serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            line-height: 1.15;
            color: #ffffff;
            white-space: normal;
            text-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

.anchor-veil-global .anchor-hash-nexus{
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: #8ba1b7;
            max-width: 700px;
            margin: 0 auto;
        }

.anchor-veil-global .anchor-zone-capability{
            position: relative;
        }

.anchor-veil-global .anchor-veil-matrix{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
            align-items: start;
        }

.anchor-veil-global .anchor-cluster-narrative{
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

.anchor-veil-global .anchor-apex-chapter{
            font-family: "Playfair Display", "Noto Serif SC", Georgia, serif;
            font-size: 2.2rem;
            color: #fff;
            white-space: normal;
        }

.anchor-veil-global .anchor-cluster-panels{
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

.anchor-veil-global .anchor-pod-data{
            background: #12151c;
            border: 1px solid #232936;
            border-radius: 2px; 
            padding: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 1rem;
            transition: border-color 0.15s ease;
        }

.anchor-veil-global .anchor-pod-data:hover{
            border-color: #35a8ce;
        }

.anchor-veil-global .anchor-glyph-metric{
            width: 48px;
            height: 48px;
            flex-shrink: 0;
            fill: #35a8ce;
        }

.anchor-veil-global .anchor-lens-matrix{
            width: 100%;
            height: auto;
            border-radius: 2px;
            border: 1px solid #232936;
            opacity: 0.9;
            filter: grayscale(20%) contrast(1.1);
            box-shadow: 0 20px 40px rgba(0,0,0,0.6);
        }

.anchor-veil-global .anchor-zone-context{
            background-color: #12151c;
            padding: 5rem 0;
            border-top: 1px solid #232936;
            border-bottom: 1px solid #232936;
        }

.anchor-veil-global .anchor-cluster-params{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

.anchor-veil-global .anchor-strand-param{
            padding-left: 1.5rem;
            border-left: 2px solid #232936;
            transition: border-color 0.15s ease;
        }

.anchor-veil-global .anchor-strand-param:hover{
            border-left-color: #35a8ce;
        }

.anchor-veil-global .anchor-apex-param{
            font-size: 1.2rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.5rem;
            white-space: normal;
        }

.anchor-veil-global .anchor-zone-gaming{
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            background: linear-gradient(135deg, #1a1e27 0%, #0a0c10 100%);
            border-radius: 12px;
            padding: 4rem;
            border: 1px solid #232936;
        }

.anchor-veil-global .anchor-veil-pricing{
            text-align: center;
        }

.anchor-veil-global .anchor-cluster-tiers{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

.anchor-veil-global .anchor-pod-tier{
            background: #12151c;
            border: 1px solid #232936;
            border-radius: 12px;
            padding: 3rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.15s ease;
        }

.anchor-veil-global .anchor-pod-tier:hover{
            transform: translateY(-8px);
        }

.anchor-veil-global .anchor-apex-price{
            font-size: 3rem;
            font-weight: 700;
            color: #fff;
            margin: 1rem 0;
            font-family: "Playfair Display", "Noto Serif SC", Georgia, serif;
        }

.anchor-veil-global .anchor-veil-acquire{
            padding-top: 2rem;
        }

.anchor-veil-global .anchor-cluster-devices{
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
            margin: 4rem 0;
        }

.anchor-veil-global .anchor-node-device{
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            opacity: 0.7;
            transition: opacity 0.15s ease;
            min-width: 100px;
        }

.anchor-veil-global .anchor-node-device:hover{
            opacity: 1;
        }

.anchor-veil-global .anchor-glyph-device{
            width: 64px;
            height: 64px;
            fill: #8ba1b7;
        }

.anchor-veil-global .anchor-node-device:hover .anchor-glyph-device{
            fill: #e2e8f0;
        }

.anchor-veil-global .anchor-tail-anchor{
            background-color: #050608;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 4rem 5vw;
        }

.anchor-veil-global .anchor-veil-tail{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 4rem;
            max-width: 1280px;
            margin: 0 auto;
        }

.anchor-veil-global .anchor-apex-brand{
            font-family: "Playfair Display", "Noto Serif SC", Georgia, serif;
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 1rem;
            white-space: normal;
        }

.anchor-veil-global .anchor-cluster-links{
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

.anchor-veil-global .anchor-path-tail{
            color: #8ba1b7;
            font-size: 0.95rem;
        }

.anchor-veil-global .anchor-path-tail:hover{
            color: #35a8ce;
        }

.anchor-veil-global .anchor-band-copyright{
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            color: #8ba1b7;
            font-size: 0.85rem;
        }

@media (max-width: 1024px){.anchor-veil-global .anchor-portal-cloak{
                min-height: 80vh;
            }

.anchor-veil-global .anchor-veil-matrix{
                grid-template-columns: 1fr;
            }

.anchor-veil-global .anchor-zone-gaming{
                padding: 3rem 2rem;
            }}

@media (max-width: 768px){.anchor-veil-global .anchor-peak-helm{
                padding: 1rem;
            }

.anchor-veil-global .anchor-sigil{
                margin-bottom: 1rem;
            }

.anchor-veil-global .anchor-cluster-routes{
                gap: 1rem;
                justify-content: center;
                width: 100%;
            }

.anchor-veil-global .anchor-portal-cloak{
                padding-top: 10rem;
            }

.anchor-veil-global .anchor-cluster-params, .anchor-veil-global .anchor-cluster-tiers{
                grid-template-columns: 1fr;
            }

.anchor-veil-global .anchor-cluster-devices{
                gap: 2rem;
            }}