/* ==========================================
           1. 基础重置与变量 (Base & Variables)
           ========================================== */
        :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; /* For data UI panels */
            
            --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --font-serif: "Playfair Display", "Noto Serif SC", Georgia, serif;
            
            --transition-fast: 0.15s ease;
            --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            --spacing-xl: 8rem;
        }

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

        body {
            font-family: var(--font-sans);
            background-color: var(--color-base);
            color: var(--color-text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

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

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

        /* 强制规则 */
        .flex-cluster {
            display: flex;
            flex-wrap: wrap;
        }
        
        .flex-strand {
            min-width: 0;
        }

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

        /* ==========================================
           2. 结构容器 (Layout Shells)
           ========================================== */
        .veil-global {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .tunnel-core {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: var(--spacing-xl);
            padding-bottom: var(--spacing-xl);
        }

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

        /* ==========================================
           3. 导航区域 (Navigation)
           ========================================== */
        .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;
        }

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

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

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

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

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

        .path-route::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--color-primary);
            transition: width var(--transition-smooth);
        }

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

        /* ==========================================
           4. 交互组件 (Interactive Components)
           ========================================== */
        .ping-jump {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            background-color: var(--color-primary);
            color: #ffffff;
            font-weight: 600;
            font-size: 1.05rem;
            border-radius: var(--radius-standard);
            border: 1px solid transparent;
            cursor: pointer;
            transition: all var(--transition-fast);
            box-shadow: 0 4px 15px var(--color-primary-glow);
            white-space: normal;
        }

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

        .ping-ghost {
            background-color: transparent;
            border-color: var(--color-border);
            color: var(--color-text-main);
            box-shadow: none;
        }

        .ping-ghost:hover {
            background-color: var(--color-surface-elevated);
            border-color: var(--color-text-muted);
            box-shadow: none;
        }

        /* ==========================================
           5. 页面区块 (Sections & Articles)
           ========================================== */
           
        /* Hero 蓝图: fullbleed_overlay */
        .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;
        }

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

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

        .apex-nexus {
            font-family: var(--font-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);
        }

        .hash-nexus {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: var(--color-text-muted);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Feature Matrix (Data UI) */
        .zone-capability {
            position: relative;
        }

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

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

        .apex-chapter {
            font-family: var(--font-serif);
            font-size: 2.2rem;
            color: #fff;
            white-space: normal;
        }

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

        .pod-data {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-sharp); /* 硬朗直角 */
            padding: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 1rem;
            transition: border-color var(--transition-fast);
        }

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

        .glyph-metric {
            width: 48px;
            height: 48px;
            flex-shrink: 0;
            fill: var(--color-primary);
        }

        .lens-matrix {
            width: 100%;
            height: auto;
            border-radius: var(--radius-sharp);
            border: 1px solid var(--color-border);
            opacity: 0.9;
            filter: grayscale(20%) contrast(1.1);
            box-shadow: 0 20px 40px rgba(0,0,0,0.6);
        }

        /* Security Brief */
        .zone-context {
            background-color: var(--color-surface);
            padding: 5rem 0;
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

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

        .strand-param {
            padding-left: 1.5rem;
            border-left: 2px solid var(--color-border);
            transition: border-color var(--transition-fast);
        }

        .strand-param:hover {
            border-left-color: var(--color-primary);
        }

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

        /* Gaming Digest (Aside) */
        .zone-gaming {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            background: linear-gradient(135deg, var(--color-surface-elevated) 0%, var(--color-base) 100%);
            border-radius: var(--radius-standard);
            padding: 4rem;
            border: 1px solid var(--color-border);
        }

        /* Pricing Digest (Section) */
        .veil-pricing {
            text-align: center;
        }

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

        .pod-tier {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-standard);
            padding: 3rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform var(--transition-fast);
        }

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

        .apex-price {
            font-size: 3rem;
            font-weight: 700;
            color: #fff;
            margin: 1rem 0;
            font-family: var(--font-serif);
        }

        /* Device Ecosystem */
        .veil-acquire {
            padding-top: 2rem;
        }
        
        .cluster-devices {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
            margin: 4rem 0;
        }

        .node-device {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            opacity: 0.7;
            transition: opacity var(--transition-fast);
            min-width: 100px;
        }

        .node-device:hover {
            opacity: 1;
        }

        .glyph-device {
            width: 64px;
            height: 64px;
            fill: var(--color-text-muted);
        }
        
        .node-device:hover .glyph-device {
            fill: var(--color-text-main);
        }

        /* ==========================================
           6. 页脚 (Footer)
           ========================================== */
        .tail-anchor {
            background-color: #050608;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 4rem 5vw;
        }

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

        .apex-brand {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 1rem;
            white-space: normal;
        }

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

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

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

        .band-copyright {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            color: var(--color-text-muted);
            font-size: 0.85rem;
        }

        /* 响应式断点 */
        @media (max-width: 1024px) {
            .portal-cloak {
                min-height: 80vh;
            }
            .veil-matrix {
                grid-template-columns: 1fr;
            }
            .zone-gaming {
                padding: 3rem 2rem;
            }
        }

        @media (max-width: 768px) {
            .peak-helm {
                padding: 1rem;
            }
            .sigil {
                margin-bottom: 1rem;
            }
            .cluster-routes {
                gap: 1rem;
                justify-content: center;
                width: 100%;
            }
            .portal-cloak {
                padding-top: 10rem;
            }
            .cluster-params,
            .cluster-tiers {
                grid-template-columns: 1fr;
            }
            .cluster-devices {
                gap: 2rem;
            }
        }

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