/* CSS Variables - Inherited Visual Family */
        :root {
            --color-base: #0a0c10;
            --color-surface: #12151c;
            --color-surface-elevated: #1a1e27;
            --color-primary: #35a8ce;
            --color-primary-glow: rgba(53, 168, 206, 0.3);
            --color-primary-dark: #2785a6;
            --color-text-main: #e2e8f0;
            --color-text-muted: #8ba1b7;
            --color-border: #232936;
            --color-success: #10b981;
            
            --radius-standard: 12px;
            --radius-sharp: 2px;
            --radius-pill: 999px;
            
            --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --font-serif: "Georgia", "Times New Roman", "Songti SC", "SimSun", serif;
            
            --transition-speed: 0.15s ease;
        }

        /* Base Reset */
        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-sans);
            background-color: var(--color-base);
            color: var(--color-text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            word-break: break-word;
            overflow-wrap: break-word;
        }

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

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

        /* Global Layout Wrappers */
        .veil-global {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .tunnel-tunnel {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* Forced Flexbox Rules */
        .flex-cluster {
            display: flex;
            flex-wrap: wrap;
        }
        
        .flex-strand {
            min-width: 0;
        }

        /* Header (Mandatory structure styled to match site) */
        .peak-helm {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 12, 16, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border);
        }

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

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

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

        .path-route {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text-muted);
            min-width: 0;
        }

        .path-route:hover,
        .path-route.active {
            color: var(--color-text-main);
        }
        
        .path-route.active {
            position: relative;
        }
        
        .path-route.active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--color-primary);
            border-radius: var(--radius-sharp);
        }

        /* Section 1: Pricing Hero (Acquire) */
        .portal-cloak {
            width: 100%;
            padding: 8rem 5vw 4rem;
            background: radial-gradient(circle at 50% 10%, var(--color-primary-glow) 0%, transparent 60%),
                        linear-gradient(to bottom, #0f131a, var(--color-base));
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .apex-nexus {
            font-family: var(--font-serif);
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            line-height: 1.15;
            color: #ffffff;
            margin: 0 0 1.5rem 0;
            white-space: normal;
            letter-spacing: 0.02em;
        }

        .hash-break {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: var(--color-text-muted);
            max-width: 600px;
            margin: 0 auto 3rem;
            line-height: 1.8;
            word-break: keep-all;
        }

        /* Section 2: Plans Comparison (Aside) */
        .zone-comparison {
            width: 100%;
            padding: 2rem 5vw 6rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .cluster-pods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            align-items: start;
        }

        .pod-data {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-standard);
            padding: 2.5rem 2rem;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: transform var(--transition-speed), border-color var(--transition-speed);
            min-width: 0;
        }

        .pod-data:hover {
            transform: translateY(-5px);
            border-color: rgba(53, 168, 206, 0.4);
        }

        .pod-data.focus-node {
            background: var(--color-surface-elevated);
            border-color: var(--color-primary);
            box-shadow: 0 8px 30px rgba(53, 168, 206, 0.1);
        }

        .pod-data.focus-node::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--color-primary);
            border-radius: var(--radius-standard) var(--radius-standard) 0 0;
        }

        .band-seal {
            position: absolute;
            top: -12px;
            right: 24px;
            background: var(--color-primary);
            color: #ffffff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .apex-tier {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--color-text-main);
            margin: 0 0 0.5rem 0;
            white-space: normal;
        }

        .hash-price {
            display: flex;
            align-items: baseline;
            gap: 0.25rem;
            margin-bottom: 0.5rem;
        }

        .hash-currency {
            font-size: 1.5rem;
            font-weight: 500;
            color: #ffffff;
        }

        .hash-amount {
            font-size: 3rem;
            font-weight: 700;
            color: #ffffff;
            line-height: 1;
        }

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

        .hash-desc {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            min-height: 2.7rem;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--color-border);
        }

        .cluster-features {
            list-style: none;
            padding: 0;
            margin: 0 0 2rem 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            flex: 1;
        }

        .strand-feature {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.95rem;
            color: var(--color-text-main);
            min-width: 0;
        }

        .glyph-check {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: var(--color-primary);
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .ping-jump {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding: 1rem 1.5rem;
            background-color: var(--color-surface-elevated);
            color: var(--color-text-main);
            font-weight: 600;
            border-radius: var(--radius-standard);
            border: 1px solid var(--color-border);
            transition: all var(--transition-speed);
            cursor: pointer;
        }

        .ping-jump:hover {
            background-color: var(--color-border);
            color: #ffffff;
        }

        .focus-node .ping-jump {
            background-color: var(--color-primary);
            border-color: transparent;
            color: #ffffff;
            box-shadow: 0 4px 15px var(--color-primary-glow);
        }

        .focus-node .ping-jump:hover {
            background-color: var(--color-primary-dark);
            box-shadow: 0 6px 20px var(--color-primary-glow);
        }

        /* Section 3: Payment Methods */
        .zone-checkout {
            width: 100%;
            padding: 4rem 5vw;
            background-color: var(--color-surface);
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

        .veil-payment {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .apex-sub {
            font-size: 1.75rem;
            font-weight: 600;
            color: #ffffff;
            margin: 0 0 1rem 0;
            white-space: normal;
        }
        
        .hash-detail {
            color: var(--color-text-muted);
            margin-bottom: 2.5rem;
            max-width: 600px;
        }

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

        .relay-gateway {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-standard);
            color: var(--color-text-main);
            font-weight: 500;
            transition: background var(--transition-speed);
            min-width: 0;
        }

        .relay-gateway:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        .glyph-gateway {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }

        .glyph-alipay { fill: #00A1E9; }
        .glyph-wechat { fill: #09B83E; }
        .glyph-node { fill: #e2e8f0; }

        /* Section 4: Guarantee (Article) */
        .zone-trust {
            width: 100%;
            padding: 6rem 5vw;
            background: var(--color-base);
        }

        .veil-policy {
            max-width: 680px;
            margin: 0 auto;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .glyph-shield {
            width: 48px;
            height: 48px;
            fill: none;
            stroke: var(--color-primary);
            stroke-width: 1.5;
            margin-bottom: 1.5rem;
        }

        .hash-policy {
            font-size: 1.1rem;
            color: var(--color-text-muted);
            line-height: 1.8;
            margin: 0;
            word-break: keep-all;
        }

        /* Footer */
        .tail-anchor {
            padding: 4rem 5vw;
            border-top: 1px solid var(--color-border);
            background: #0a0c10;
            margin-top: auto;
        }

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

        .hash-brand {
            font-size: 1.25rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.02em;
        }

        .cluster-legal {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .path-legal {
            color: var(--color-text-muted);
            font-size: 0.9rem;
            min-width: 0;
        }

        .path-legal:hover {
            color: var(--color-primary);
        }
        
        .hash-copyright {
            width: 100%;
            text-align: center;
            color: var(--color-text-muted);
            font-size: 0.85rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .cluster-routes {
                display: none; /* In a real site, a hamburger menu logic would go here, but per requirements we just ensure it doesn't break. For simplicity, keeping visible but stacked is safer. */
                width: 100%;
                flex-direction: column;
                gap: 1rem;
                margin-top: 1rem;
                align-items: flex-start;
            }
            
            /* Add a minimal toggle visibility hack for mobile if needed, or just let them stack. Stacking is safer for the "must output completely" rule */
            .cluster-routes {
                display: flex;
                width: 100%;
                justify-content: flex-start;
            }
            .path-route {
                font-size: 0.9rem;
            }
            
            .portal-cloak {
                padding: 6rem 5vw 3rem;
            }
            
            .cluster-pods {
                grid-template-columns: 1fr;
            }
            
            .pod-data.focus-node {
                transform: scale(1);
            }
            
            .mesh-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

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