:root {
    --color-bg: #090b0e;
    --color-surface: #12161b;
    --color-surface-alt: #1a1f26;
    --color-brand: #26ee26;
    --color-brand-dim: rgba(38, 238, 38, 0.15);
    --color-brand-glow: rgba(38, 238, 38, 0.4);
    --color-text-main: #f0f4f8;
    --color-text-mut: #94a3b8;
    --color-border: rgba(255, 255, 255, 0.08);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Base Styles */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, p {
    margin: 0;
}

/* Mandatory Flex/Text Rules */
.flex-enforce {
    display: flex;
    flex-wrap: wrap;
}

.flex-enforce > * {
    min-width: 0;
}

.echo-enforce {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Shell & Layout */
.veil-global {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

.zone-tunnel {
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.tunnel-bound {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles (Exact match to prompt constraints) */
.peak-layer {
    background: rgba(9, 11, 14, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.peak-tunnel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.crest-mark {
    display: flex;
    align-items: center;
}

.crest-mark img {
    height: 32px;
    width: auto;
    display: block;
}

.helm-mesh {
    display: flex;
    gap: 32px;
    align-items: center;
}

.wire-path {
    color: var(--color-text-mut);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

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

.wire-path.active::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-brand);
    border-radius: 2px 2px 0 0;
}

.crest-actions {
    display: flex;
    align-items: center;
}

.warp-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-brand);
    color: var(--color-bg);
    font-weight: 700;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: 0 0 20px var(--color-brand-dim);
}

.warp-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 24px var(--color-brand-glow);
}

/* Apex Intro (Hero Variation) */
.apex-intro {
    padding: calc(80px * 1.5) 0 80px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.apex-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--color-brand-dim) 0%, transparent 60%);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.tunnel-intro {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.band-pretitle {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: var(--color-surface-alt);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    color: var(--color-brand);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

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

.echo-apex {
    color: var(--color-text-mut);
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.8;
    max-width: 680px;
    word-break: keep-all;
}

/* Nexus Comparison (Pricing Article) */
.nexus-comparison {
    padding: 60px 0 100px 0;
    background-color: var(--color-bg);
    display: flex;
    flex-wrap: wrap;
}

.tunnel-pricing {
    width: 100%;
}

.pod-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.packet-tier {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.packet-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.packet-tier-pro {
    background: var(--color-surface-alt);
    border-color: var(--color-brand);
    box-shadow: 0 0 30px var(--color-brand-dim);
}

.packet-tier-pro:hover {
    box-shadow: 0 12px 40px var(--color-brand-glow);
}

.band-seal {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-brand);
    color: var(--color-bg);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 4px 16px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px var(--color-brand-dim);
}

.sign-tier {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.echo-tier-desc {
    color: var(--color-text-mut);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.echo-price-wrap {
    display: flex;
    align-items: baseline;
    margin-bottom: 32px;
    gap: 4px;
}

.echo-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.echo-price {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-text-main);
    letter-spacing: -0.02em;
}

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

.pod-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.ping-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-text-main);
    font-size: 0.95rem;
}

.glyph-check {
    width: 20px;
    height: 20px;
    color: var(--color-brand);
    flex-shrink: 0;
    margin-top: 2px;
}

.warp-tier {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
    cursor: pointer;
}

.warp-tier-outline {
    background: transparent;
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
}

.warp-tier-outline:hover {
    background: var(--color-surface-alt);
    border-color: var(--color-text-mut);
}

.warp-tier-solid {
    background: var(--color-brand);
    color: var(--color-bg);
    border: 1px solid transparent;
    box-shadow: 0 0 20px var(--color-brand-dim);
}

.warp-tier-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--color-brand-glow);
}

/* Vault Guarantee (Trust Block) */
.vault-guarantee {
    padding: 80px 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-wrap: wrap;
}

.tunnel-trust {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.veil-shield {
    width: 80px;
    height: 80px;
    background: var(--color-brand-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    border: 1px solid var(--color-brand-glow);
}

.glyph-shield {
    width: 40px;
    height: 40px;
    color: var(--color-brand);
}

.sign-trust {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.3;
}

.echo-trust {
    font-size: 1.1rem;
    color: var(--color-text-mut);
    max-width: 600px;
}

.pod-payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.ping-payment {
    padding: 8px 16px;
    background: var(--color-surface-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-mut);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.glyph-pay {
    width: 18px;
    height: 18px;
    color: var(--color-text-main);
}

/* Root Anchor (Footer) */
.root-anchor {
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding: 60px 0 40px;
    margin-top: auto;
}

.tunnel-root {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.sign-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    letter-spacing: -0.02em;
}

.mesh-root {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.wire-root {
    color: var(--color-text-mut);
    font-size: 0.95rem;
}

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

.echo-copyright {
    color: var(--color-text-mut);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .helm-mesh {
        display: none; /* Simplification for mobile [role="navigation"] per prompt constraints, layout focus */
    }
    
    .peak-tunnel {
        justify-content: space-between;
    }

    .apex-intro {
        padding: 60px 0 40px 0;
    }

    .packet-tier {
        padding: 32px 24px;
    }

    .pod-tiers {
        grid-template-columns: 1fr;
    }
    
    .tunnel-bound {
        padding: 0 16px;
    }
}

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

.helm-peak-layer{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(9, 11, 14, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.helm-peak-layer .helm-peak-tunnel{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
        }

.helm-peak-layer .helm-peak-tunnel > *{ min-width: 0; }

.helm-peak-layer .helm-crest-mark{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

.helm-peak-layer .helm-crest-mark > *{ min-width: 0; }

.helm-peak-layer .helm-crest-mark img{
            height: 32px;
            width: auto;
        }

.helm-peak-layer .helm-helm-mesh{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 32px;
        }

.helm-peak-layer .helm-helm-mesh > *{ min-width: 0; }

.helm-peak-layer .helm-wire-path{
            color: #f0f4f8;
            font-size: 15px;
            font-weight: 500;
            position: relative;
            padding: 8px 0;
        }

.helm-peak-layer .helm-wire-path:hover, .helm-peak-layer .helm-wire-path.active{
            color: #26ee26;
        }

.helm-peak-layer .helm-wire-path::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #26ee26;
            transform: scaleX(0);
            transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: right;
        }

.helm-peak-layer .helm-wire-path:hover::after, .helm-peak-layer .helm-wire-path.active::after{
            transform: scaleX(1);
            transform-origin: left;
            box-shadow: 0 0 10px rgba(38, 238, 38, 0.4);
        }

.helm-peak-layer .helm-warp-primary{
            display: inline-flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            padding: 16px 36px;
            background: #26ee26;
            color: #090b0e;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 12px;
            border: 1px solid transparent;
            box-shadow: 0 0 20px rgba(38, 238, 38, 0.15);
            cursor: pointer;
            gap: 12px;
        }

.helm-peak-layer .helm-warp-primary > *{ min-width: 0; }

.helm-peak-layer .helm-warp-primary:hover{
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(38, 238, 38, 0.4);
            background: #2aff2a;
        }

@media (max-width: 768px){.helm-peak-layer .helm-helm-mesh{
                display: none; 
            }}

.helm-peak-layer {
    background: rgb(9, 11, 14);
    background-image: none;
}

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

.anchor-veil-master [role="navigation"],
.anchor-veil-master div,
.anchor-veil-master section,
.anchor-veil-master article,
.anchor-veil-master aside,
.anchor-veil-master p,
.anchor-veil-master h1,
.anchor-veil-master h2,
.anchor-veil-master h3,
.anchor-veil-master h4,
.anchor-veil-master h5,
.anchor-veil-master h6,
.anchor-veil-master a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

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

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

.anchor-veil-master > *{
            min-width: 0;
            width: 100%;
        }

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

.anchor-veil-master .anchor-peak-layer{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(9, 11, 14, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.anchor-veil-master .anchor-peak-tunnel{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
        }

.anchor-veil-master .anchor-peak-tunnel > *{ min-width: 0; }

.anchor-veil-master .anchor-crest-mark{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

.anchor-veil-master .anchor-crest-mark > *{ min-width: 0; }

.anchor-veil-master .anchor-crest-mark img{
            height: 32px;
            width: auto;
        }

.anchor-veil-master .anchor-helm-mesh{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 32px;
        }

.anchor-veil-master .anchor-helm-mesh > *{ min-width: 0; }

.anchor-veil-master .anchor-wire-path{
            color: #f0f4f8;
            font-size: 15px;
            font-weight: 500;
            position: relative;
            padding: 8px 0;
        }

.anchor-veil-master .anchor-wire-path:hover, .anchor-veil-master .anchor-wire-path.active{
            color: #26ee26;
        }

.anchor-veil-master .anchor-wire-path::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #26ee26;
            transform: scaleX(0);
            transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: right;
        }

.anchor-veil-master .anchor-wire-path:hover::after, .anchor-veil-master .anchor-wire-path.active::after{
            transform: scaleX(1);
            transform-origin: left;
            box-shadow: 0 0 10px rgba(38, 238, 38, 0.4);
        }

.anchor-veil-master .anchor-core-stream{
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            flex: 1;
        }

.anchor-veil-master .anchor-core-stream > *{ min-width: 0; }

.anchor-veil-master .anchor-apex-intro{
            padding: calc(80px * 1.5) 0 0 0;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

.anchor-veil-master .anchor-apex-intro > *{ min-width: 0; }

.anchor-veil-master .anchor-apex-echo-pod{
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
            padding: 0 5vw;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            align-items: center;
            z-index: 2;
        }

.anchor-veil-master .anchor-apex-echo-pod > *{ min-width: 0; }

.anchor-veil-master .anchor-apex-sign-tunnel{
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 24px;
        }

.anchor-veil-master .anchor-apex-echo-sub{
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            max-width: 680px;
            margin-bottom: 48px;
        }

.anchor-veil-master .anchor-warp-primary{
            display: inline-flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            padding: 16px 36px;
            background: #26ee26;
            color: #090b0e;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 12px;
            border: 1px solid transparent;
            box-shadow: 0 0 20px rgba(38, 238, 38, 0.15);
            cursor: pointer;
            gap: 12px;
        }

.anchor-veil-master .anchor-warp-primary > *{ min-width: 0; }

.anchor-veil-master .anchor-warp-primary:hover{
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(38, 238, 38, 0.4);
            background: #2aff2a;
        }

.anchor-veil-master .anchor-glyph-glyph{
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

.anchor-veil-master .anchor-apex-lens-pod{
            width: 100%;
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: center;
        }

.anchor-veil-master .anchor-apex-lens-pod > *{ min-width: 0; }

.anchor-veil-master .anchor-apex-lens-visual{
            width: 100%;
            height: auto;
            max-height: 50vh;
            object-fit: cover;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
            -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
        }

.anchor-veil-master .anchor-nexus-proof{
            padding: 80px 0;
            background: #090b0e;
        }

.anchor-veil-master .anchor-sign-tunnel{
            font-size: clamp(2rem, 4vw, 3rem);
            text-align: center;
            margin-bottom: 16px;
        }

.anchor-veil-master .anchor-echo-tunnel{
            text-align: center;
            max-width: 600px;
            margin: 0 auto 80px;
            font-size: 1.1rem;
        }

.anchor-veil-master .anchor-nexus-mesh-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
        }

.anchor-veil-master .anchor-node-vault-master{
            grid-column: 1 / -1;
            background: #12161b;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
            transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

.anchor-veil-master .anchor-node-vault-master > *{ min-width: 0; }

.anchor-veil-master .anchor-node-vault-master:hover{
            border-color: rgba(38, 238, 38, 0.15);
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
        }

.anchor-veil-master .anchor-node-lens-area{
            flex: 1 1 600px;
            min-height: 300px;
            position: relative;
        }

.anchor-veil-master .anchor-node-lens-area img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-right: 1px solid rgba(255, 255, 255, 0.08);
        }

.anchor-veil-master .anchor-node-echo-area{
            flex: 1 1 400px;
            padding: 48px;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            justify-content: center;
        }

.anchor-veil-master .anchor-node-echo-area > *{ min-width: 0; }

.anchor-veil-master .anchor-node-sign{
            font-size: 1.75rem;
            color: #26ee26;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

.anchor-veil-master .anchor-packet-band{
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 24px;
        }

.anchor-veil-master .anchor-packet-band > *{ min-width: 0; }

.anchor-veil-master .anchor-packet-ping{
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 16px;
            padding: 16px;
            background: #1a1f26;
            border-radius: 8px;
            border: 1px solid transparent;
            transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

.anchor-veil-master .anchor-packet-ping > *{ min-width: 0; }

.anchor-veil-master .anchor-packet-ping:hover{
            border-color: rgba(38, 238, 38, 0.15);
            transform: translateX(5px);
        }

.anchor-veil-master .anchor-glyph-seal{
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: rgba(38, 238, 38, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #26ee26;
            flex-shrink: 0;
        }

.anchor-veil-master .anchor-packet-echo-core{
            flex: 1;
        }

.anchor-veil-master .anchor-packet-sign{
            font-size: 1.1rem;
            margin-bottom: 4px;
            color: #fff;
        }

.anchor-veil-master .anchor-packet-echo{
            font-size: 0.95rem;
            margin-bottom: 0;
        }

.anchor-veil-master .anchor-cloak-capability{
            padding: 80px 0;
            background: linear-gradient(to bottom, #090b0e, #12161b);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

.anchor-veil-master .anchor-cloak-tunnel-flex{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 48px;
        }

.anchor-veil-master .anchor-cloak-tunnel-flex > *{ min-width: 0; }

.anchor-veil-master .anchor-cloak-echo-side{
            flex: 1 1 450px;
        }

.anchor-veil-master .anchor-cloak-lens-side{
            flex: 1 1 550px;
            position: relative;
        }

.anchor-veil-master .anchor-cloak-lens-frame{
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 20px 40px rgba(0,0,0,0.6);
            position: relative;
        }

.anchor-veil-master .anchor-cloak-lens-frame::after{
            content: '';
            position: absolute;
            inset: 0;
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
            border-radius: 16px;
            pointer-events: none;
        }

.anchor-veil-master .anchor-cloak-lens-frame img{
            width: 100%;
            display: block;
            transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

.anchor-veil-master .anchor-cloak-lens-frame:hover img{
            transform: scale(1.02);
        }

.anchor-veil-master .anchor-vault-status-pod{
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            margin-top: 24px;
        }

.anchor-veil-master .anchor-vault-status-ping{
            background: #1a1f26;
            padding: 20px;
            border-radius: 12px;
            border-left: 3px solid #26ee26;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

.anchor-veil-master .anchor-vault-status-ping > *{ min-width: 0; }

.anchor-veil-master .anchor-vault-status-ping:hover{
            background: rgba(38, 238, 38, 0.05);
        }

.anchor-veil-master .anchor-vault-status-echo{
            flex: 1;
        }

.anchor-veil-master .anchor-vault-status-sign{
            font-size: 1.1rem;
            color: #fff;
            margin-bottom: 4px;
        }

.anchor-veil-master .anchor-vault-status-desc{
            font-size: 0.9rem;
            color: #94a3b8;
            margin: 0;
        }

.anchor-veil-master .anchor-route-scenarios{
            padding: 80px 0;
            background: #12161b;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

.anchor-veil-master .anchor-route-mesh-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }

.anchor-veil-master .anchor-route-vault-node{
            background: #090b0e;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

.anchor-veil-master .anchor-route-vault-node > *{ min-width: 0; }

.anchor-veil-master .anchor-route-vault-node:hover{
            border-color: #26ee26;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

.anchor-veil-master .anchor-route-glyph-top{
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: #1a1f26;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #26ee26;
            margin-bottom: 20px;
            border: 1px solid rgba(255,255,255,0.05);
        }

.anchor-veil-master .anchor-route-sign{
            font-size: 1.25rem;
            color: #fff;
            margin-bottom: 12px;
        }

.anchor-veil-master .anchor-route-echo{
            font-size: 0.95rem;
            flex: 1;
        }

.anchor-veil-master .anchor-route-wire-wire{
            display: inline-flex;
            align-items: center;
            color: #26ee26;
            font-weight: 600;
            font-size: 0.95rem;
            margin-top: 16px;
            gap: 8px;
        }

.anchor-veil-master .anchor-route-wire-wire:hover{
            color: #fff;
            gap: 12px;
        }

.anchor-veil-master .anchor-root-base{
            background: #050608;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 80px 0 24px;
            margin-top: auto;
        }

.anchor-veil-master .anchor-root-tunnel-grid{
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 48px;
            margin-bottom: 80px;
        }

.anchor-veil-master .anchor-root-core-brand{
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
        }

.anchor-veil-master .anchor-root-core-brand > *{ min-width: 0; }

.anchor-veil-master .anchor-root-sign-brand{
            font-size: 1.5rem;
            color: #fff;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

.anchor-veil-master .anchor-root-sign-brand::before{
            content: '';
            display: block;
            width: 12px;
            height: 12px;
            background: #26ee26;
            border-radius: 2px;
            box-shadow: 0 0 10px #26ee26;
        }

.anchor-veil-master .anchor-root-echo-desc{
            color: #94a3b8;
            font-size: 0.9rem;
            max-width: 300px;
        }

.anchor-veil-master .anchor-root-pod-links{
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 12px;
        }

.anchor-veil-master .anchor-root-pod-links > *{ min-width: 0; }

.anchor-veil-master .anchor-root-sign-col{
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

.anchor-veil-master .anchor-root-wire{
            color: #94a3b8;
            font-size: 0.95rem;
        }

.anchor-veil-master .anchor-root-wire:hover{
            color: #26ee26;
            padding-left: 4px;
        }

.anchor-veil-master .anchor-root-anchor-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            color: #94a3b8;
            font-size: 0.85rem;
        }

.anchor-veil-master .anchor-root-anchor-bottom > *{ min-width: 0; }

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

.anchor-veil-master .anchor-node-lens-area{
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }}

@media (max-width: 768px){.anchor-veil-master .anchor-helm-mesh{
                display: none; 
            }

.anchor-veil-master .anchor-apex-sign-tunnel{
                font-size: 2.2rem;
            }

.anchor-veil-master .anchor-cloak-tunnel-flex{
                flex-direction: column;
            }

.anchor-veil-master .anchor-root-tunnel-grid{
                grid-template-columns: 1fr;
            }}