:root {
            --color-bg: #09090e;
            --color-bg-alt: #12121a;
            --color-bg-glass: rgba(18, 18, 26, 0.7);
            --color-primary: #523df4;
            --color-primary-glow: rgba(82, 61, 244, 0.4);
            --color-accent: #00d2ff;
            --color-text: #a1a1aa;
            --color-text-bright: #ffffff;
            --color-border: rgba(255, 255, 255, 0.08);
            --radius-base: 16px;
            --radius-large: 19px;
            --transition: 0.15s ease;
        }

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

        body {
            background-color: var(--color-bg);
            color: var(--color-text);
            font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4 {
            color: var(--color-text-bright);
            white-space: normal;
        }

        .apex-mega {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
        }

        .apex-node {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .apex-cell {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .echo-base {
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all;
        }

        .echo-dim {
            color: rgba(161, 161, 170, 0.8);
            font-size: 0.95rem;
        }

        /* Navigation (Inherited Contract) */
        .crown-helm {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: var(--color-bg-glass);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border);
        }

        .orbit-array {
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

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

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

        .pool-wire {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

        .wire {
            color: var(--color-text);
            text-decoration: none;
            font-weight: 500;
            transition: color var(--transition);
            font-size: 0.95rem;
        }

        .wire:hover,
        .wire:focus {
            color: var(--color-text-bright);
        }

        .wire.active {
            color: var(--color-text-bright);
            position: relative;
        }

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

        /* Layout Utility */
        .tunnel-tunnel {
            padding-top: 80px; /* Offset for fixed nav */
        }

        .cloak-limit {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

        /* Hero Release (Creative Seed: split_diagonal) */
        .flare-portal {
            position: relative;
            padding: 6rem 0;
            display: flex;
            flex-wrap: wrap;
            min-height: 75vh;
            align-items: center;
            overflow: hidden;
        }

        .flare-portal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #1e1b4b;
            clip-path: polygon(0 0, 100% 0, 100% 30%, 0 85%);
            z-index: -2;
        }
        
        .flare-portal::after {
            content: '';
            position: absolute;
            top: 0; right: 0; bottom: 0; left: 0;
            background: radial-gradient(circle at 80% 60%, rgba(82, 61, 244, 0.15) 0%, transparent 50%);
            z-index: -1;
        }

        .pool-flare {
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
            width: 100%;
        }

        .cloak-flare-echo {
            flex: 1 1 500px;
            min-width: 0;
        }

        .cloak-flare-lens {
            flex: 1 1 400px;
            min-width: 0;
            position: relative;
        }

        .lens-release {
            width: 100%;
            height: auto;
            border-radius: var(--radius-large);
            border: 1px solid var(--color-border);
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5), 0 0 30px var(--color-primary-glow);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform var(--transition);
        }
        
        .cloak-flare-lens:hover .lens-release {
            transform: perspective(1000px) rotateY(0deg) translateY(-5px);
        }

        /* Buttons (Ping) */
        .pool-pulse {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }

        .ping-prime {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            background: var(--color-primary);
            color: var(--color-text-bright);
            border-radius: var(--radius-base);
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 8px 25px -5px var(--color-primary-glow);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all var(--transition);
            min-width: 0;
        }

        .ping-prime:hover,
        .ping-prime:focus {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px -5px rgba(82, 61, 244, 0.6);
            background: #604cf6;
        }

        .ping-ghost {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.03);
            color: var(--color-text-bright);
            border-radius: var(--radius-base);
            font-weight: 500;
            text-decoration: none;
            border: 1px solid var(--color-border);
            transition: all var(--transition);
            min-width: 0;
        }

        .ping-ghost:hover,
        .ping-ghost:focus {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
        }

        .glyph-inline {
            width: 20px;
            height: 20px;
            margin-right: 8px;
            fill: currentColor;
        }

        /* Version Matrix (Data UI) */
        .mesh-compare {
            padding: 6rem 0;
            background: var(--color-bg);
            position: relative;
        }

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

        .shard-version {
            background: var(--color-bg-alt);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-large);
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            transition: border-color var(--transition), transform var(--transition);
            min-width: 0;
        }

        .shard-version:hover {
            border-color: rgba(82, 61, 244, 0.5);
            transform: translateY(-5px);
        }

        .shard-version.highlight {
            border-color: var(--color-primary);
            box-shadow: 0 0 30px var(--color-primary-glow) inset;
        }

        .band-seal {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: rgba(82, 61, 244, 0.2);
            color: #a496ff;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            align-self: flex-start;
            border: 1px solid rgba(82, 61, 244, 0.4);
        }

        .pool-data dl {
            margin-top: 1.5rem;
            flex-grow: 1;
        }

        .pool-data dt {
            color: var(--color-text-bright);
            font-weight: 600;
            margin-top: 1rem;
            display: flex;
            align-items: center;
        }

        .pool-data dt svg {
            width: 16px;
            height: 16px;
            margin-right: 8px;
            color: var(--color-primary);
        }

        .pool-data dd {
            color: var(--color-text);
            font-size: 0.95rem;
            margin-left: 24px;
            margin-top: 0.25rem;
        }
        
        .ping-download {
            margin-top: 2rem;
            width: 100%;
        }

        /* Environment & Security (Mixed Containers) */
        .mesh-info {
            padding: 4rem 0 6rem;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .vault-sys {
            flex: 1 1 400px;
            background: linear-gradient(145deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-large);
            padding: 3rem;
            min-width: 0;
        }
        
        .vault-secure {
            flex: 1 1 400px;
            background: var(--color-bg-alt);
            border: 1px dashed rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-large);
            padding: 3rem;
            min-width: 0;
        }

        .pool-array {
            list-style: none;
            margin-top: 1.5rem;
        }

        .hop-req {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .hop-req svg {
            width: 20px;
            height: 20px;
            color: var(--color-accent);
            margin-right: 12px;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .cloak-code {
            background: #000;
            padding: 1rem;
            border-radius: 8px;
            font-family: monospace;
            font-size: 0.85rem;
            color: #a496ff;
            word-break: break-all;
            margin-top: 1rem;
            border: 1px solid rgba(82, 61, 244, 0.3);
        }

        /* Footer */
        .root-tail {
            border-top: 1px solid var(--color-border);
            padding: 4rem 0;
            background: var(--color-bg);
            text-align: center;
        }

        .apex-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-text-bright);
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
        }

        .pool-legal {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .wire-legal {
            color: var(--color-text);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color var(--transition);
        }

        .wire-legal:hover {
            color: var(--color-text-bright);
        }

        @media (max-width: 768px) {
            .pool-wire {
                display: none; /* Simplification for mobile nav structure in this snippet */
            }
            .apex-mega {
                font-size: 2rem;
            }
            .flare-portal {
                padding-top: 4rem;
            }
            .mesh-info {
                flex-direction: column;
            }
            .flare-portal::before {
                clip-path: polygon(0 0, 100% 0, 100% 20%, 0 40%);
            }
        }

.orbit-crown-helm{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(18, 18, 26, 0.7);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.orbit-crown-helm .orbit-orbit-array{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
        }

.orbit-crown-helm .orbit-crest{
            display: flex;
            align-items: center;
        }

.orbit-crown-helm .orbit-crest img{
            height: 36px;
            width: auto;
            display: block;
        }

.orbit-crown-helm .orbit-pool-wire{
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            align-items: center;
        }

.orbit-crown-helm .orbit-wire{
            color: #a1a1aa;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.15s ease;
            position: relative;
        }

.orbit-crown-helm .orbit-wire:hover, .orbit-crown-helm .orbit-wire.active{
            color: #ffffff;
        }

.orbit-crown-helm .orbit-wire.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #523df4;
            border-radius: 2px;
        }

@media (max-width: 768px){.orbit-crown-helm .orbit-orbit-array{
                flex-direction: column;
                gap: 1.5rem;
            }

.orbit-crown-helm .orbit-pool-wire{
                justify-content: center;
                width: 100%;
            }}

.orbit-crown-helm {
    background: rgb(18, 18, 26);
    background-image: none;
}

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

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

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

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

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

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

.anchor-cloak-root .anchor-apex-mega{
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            color: #ffffff;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            white-space: normal;
        }

.anchor-cloak-root .anchor-apex-mega span{
            background: linear-gradient(135deg, #fff 0%, #00d2ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

.anchor-cloak-root .anchor-apex-prime{
            font-size: clamp(2rem, 3vw, 2.75rem);
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            white-space: normal;
        }

.anchor-cloak-root .anchor-apex-sub{
            font-size: 1.25rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1rem;
            white-space: normal;
        }

.anchor-cloak-root .anchor-echo-lead{
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: #d4d4d8;
            margin-bottom: 2.5rem;
            max-width: 650px;
            word-break: break-word;
            overflow-wrap: break-word;
        }

.anchor-cloak-root .anchor-echo-body{
            margin-bottom: 1.5rem;
            word-break: break-word;
            overflow-wrap: break-word;
        }

.anchor-cloak-root{
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            width: 100%;
        }

.anchor-cloak-root .anchor-tunnel-stage{
            flex: 1;
            display: flex;
            flex-direction: column;
        }

.anchor-cloak-root .anchor-crown-helm{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(18, 18, 26, 0.7);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.anchor-cloak-root .anchor-orbit-array{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
        }

.anchor-cloak-root .anchor-crest{
            display: flex;
            align-items: center;
        }

.anchor-cloak-root .anchor-crest img{
            height: 36px;
            width: auto;
            display: block;
        }

.anchor-cloak-root .anchor-pool-wire{
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            align-items: center;
        }

.anchor-cloak-root .anchor-wire{
            color: #a1a1aa;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.15s ease;
            position: relative;
        }

.anchor-cloak-root .anchor-wire:hover, .anchor-cloak-root .anchor-wire.active{
            color: #ffffff;
        }

.anchor-cloak-root .anchor-wire.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #523df4;
            border-radius: 2px;
        }

.anchor-cloak-root .anchor-flare-portal{
            position: relative;
            display: flex;
            flex-wrap: wrap;
            min-height: 90vh;
            background: radial-gradient(circle at 0% 0%, #1e1b4b 0%, #09090e 50%);
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.anchor-cloak-root .anchor-portal-echo-zone{
            flex: 1 1 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 6rem 4rem 6rem 8vw;
            z-index: 10;
        }

.anchor-cloak-root .anchor-portal-lens-zone{
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            z-index: 1;
            
            clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
        }

.anchor-cloak-root .anchor-portal-lens-zone::before{
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, #09090e 0%, rgba(9, 9, 14, 0.3) 50%, transparent 100%);
            z-index: 2;
        }

.anchor-cloak-root .anchor-portal-lens-zone::after{
            content: '';
            position: absolute;
            inset: 0;
            background: #523df4;
            mix-blend-mode: overlay;
            opacity: 0.3;
            z-index: 3;
        }

.anchor-cloak-root .anchor-lens-flare{
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: left center;
        }

.anchor-cloak-root .anchor-pool-ping{
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
        }

.anchor-cloak-root .anchor-ping-prime{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1.1rem 2.5rem;
            background: #523df4;
            color: #ffffff;
            text-decoration: none;
            border-radius: 16px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.15s ease;
            box-shadow: 0 8px 25px -5px rgba(82, 61, 244, 0.4);
            border: 1px solid rgba(255,255,255,0.1);
        }

.anchor-cloak-root .anchor-ping-prime:hover{
            transform: translateY(-3px);
            background: #604ef6;
            box-shadow: 0 12px 30px -5px rgba(82, 61, 244, 0.4);
        }

.anchor-cloak-root .anchor-ping-ghost{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1.1rem 2.5rem;
            background: rgba(255, 255, 255, 0.03);
            color: #ffffff;
            text-decoration: none;
            border-radius: 16px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.15s ease;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

.anchor-cloak-root .anchor-ping-ghost:hover{
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
        }

.anchor-cloak-root .anchor-pool-tags{
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
        }

.anchor-cloak-root .anchor-band-tag{
            display: inline-flex;
            align-items: center;
            padding: 0.4rem 1rem;
            background: rgba(82, 61, 244, 0.15);
            border: 1px solid rgba(82, 61, 244, 0.3);
            border-radius: 20px;
            font-size: 0.85rem;
            color: #d4d4d8;
            font-weight: 500;
        }

.anchor-cloak-root .anchor-glyph-tag{
            width: 14px;
            height: 14px;
            margin-right: 6px;
            fill: #00d2ff;
        }

.anchor-cloak-root .anchor-mesh-capability{
            display: flex;
            flex-wrap: wrap;
            max-width: 1400px;
            margin: 0 auto;
            padding: 8rem 2rem;
            gap: 2.5rem;
        }

.anchor-cloak-root .anchor-cloak-crown{
            flex: 1 1 100%;
            text-align: center;
            margin-bottom: 3rem;
        }

.anchor-cloak-root .anchor-shard-feature{
            flex: 1 1 350px;
            background: #12121a;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 19px;
            padding: 3rem 2.5rem;
            transition: all 0.15s ease;
            position: relative;
            overflow: hidden;
        }

.anchor-cloak-root .anchor-shard-feature::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #523df4, #00d2ff);
            opacity: 0;
            transition: opacity 0.15s ease;
        }

.anchor-cloak-root .anchor-shard-feature:hover{
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.02);
            box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
        }

.anchor-cloak-root .anchor-shard-feature:hover::before{
            opacity: 1;
        }

.anchor-cloak-root .anchor-glyph-feature{
            width: 48px;
            height: 48px;
            margin-bottom: 1.5rem;
            color: #00d2ff;
        }

.anchor-cloak-root .anchor-vault-proof{
            display: flex;
            flex-wrap: wrap;
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem 8rem;
            align-items: center;
            gap: 5rem;
        }

.anchor-cloak-root .anchor-vault-echo-zone{
            flex: 1 1 450px;
        }

.anchor-cloak-root .anchor-vault-lens-zone{
            flex: 1 1 550px;
            position: relative;
        }

.anchor-cloak-root .anchor-lens-proof{
            width: 100%;
            height: auto;
            border-radius: 19px;
            border: 1px solid rgba(82, 61, 244, 0.3);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
            display: block;
        }

.anchor-cloak-root .anchor-vault-lens-zone::before{
            content: '';
            position: absolute;
            inset: -20px;
            background: radial-gradient(circle at center, rgba(82, 61, 244, 0.15) 0%, transparent 70%);
            z-index: -1;
        }

.anchor-cloak-root .anchor-surge-comparison{
            background: linear-gradient(180deg, #09090e 0%, #12121a 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 8rem 2rem;
        }

.anchor-cloak-root .anchor-surge-pool{
            display: flex;
            flex-wrap: wrap;
            max-width: 1400px;
            margin: 0 auto;
            gap: 4rem;
        }

.anchor-cloak-root .anchor-surge-echo-zone{
            flex: 1 1 300px;
        }

.anchor-cloak-root .anchor-mesh-topics{
            flex: 1 1 700px;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

.anchor-cloak-root .anchor-cell-topic{
            flex: 1 1 300px;
            background: rgba(255, 255, 255, 0.01);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            transition: all 0.15s ease;
        }

.anchor-cloak-root .anchor-cell-topic:hover{
            background: rgba(255, 255, 255, 0.03);
            border-color: rgba(82, 61, 244, 0.4);
        }

.anchor-cloak-root .anchor-wire-jump{
            margin-top: auto;
            padding-top: 1.5rem;
            color: #00d2ff;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }

.anchor-cloak-root .anchor-wire-jump svg{
            width: 18px;
            height: 18px;
            margin-left: 8px;
            transition: transform 0.15s ease;
        }

.anchor-cloak-root .anchor-cell-topic:hover .anchor-wire-jump svg{
            transform: translateX(5px);
        }

.anchor-cloak-root .anchor-tail-anchor{
            background: #050508;
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: auto;
        }

.anchor-cloak-root .anchor-anchor-pool{
            display: flex;
            flex-wrap: wrap;
            max-width: 1400px;
            margin: 0 auto;
            justify-content: space-between;
            gap: 2rem;
        }

.anchor-cloak-root .anchor-anchor-echo{
            font-size: 0.9rem;
            color: #71717a;
            max-width: 400px;
        }

.anchor-cloak-root .anchor-anchor-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 1rem;
            display: block;
        }

@media (max-width: 1024px){.anchor-cloak-root .anchor-portal-lens-zone{
                width: 50%;
                clip-path: polygon(15% 0, 100% 0, 100% 100%, -10% 100%);
            }

.anchor-cloak-root .anchor-portal-echo-zone{
                padding: 5rem 2rem 5rem 5vw;
                flex: 1 1 50%;
            }

.anchor-cloak-root .anchor-vault-proof{
                gap: 3rem;
            }}

@media (max-width: 768px){.anchor-cloak-root .anchor-flare-portal{
                flex-direction: column;
            }

.anchor-cloak-root .anchor-portal-lens-zone{
                position: relative;
                width: 100%;
                height: 350px;
                clip-path: none;
                order: -1; 
            }

.anchor-cloak-root .anchor-portal-lens-zone::before{
                background: linear-gradient(180deg, transparent 0%, #09090e 100%);
            }

.anchor-cloak-root .anchor-portal-echo-zone{
                padding: 2rem;
                text-align: center;
            }

.anchor-cloak-root .anchor-pool-ping{
                justify-content: center;
            }

.anchor-cloak-root .anchor-pool-tags{
                justify-content: center;
            }

.anchor-cloak-root .anchor-orbit-array{
                flex-direction: column;
                gap: 1.5rem;
            }

.anchor-cloak-root .anchor-pool-wire{
                justify-content: center;
                width: 100%;
            }

.anchor-cloak-root .anchor-mesh-capability, .anchor-cloak-root .anchor-vault-proof, .anchor-cloak-root .anchor-surge-comparison{
                padding: 4rem 1.5rem;
            }

.anchor-cloak-root .anchor-surge-pool{
                flex-direction: column;
            }}