/* CSS Reset & Variables */
        :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;
            --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            min-width: 0; /* Flex safe */
        }

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

        /* Typography */
        .apex-mega {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            color: var(--color-text-bright);
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            white-space: normal;
        }

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

        .apex-prime {
            font-size: clamp(2rem, 3vw, 2.75rem);
            font-weight: 700;
            color: var(--color-text-bright);
            line-height: 1.2;
            margin-bottom: 1.5rem;
            white-space: normal;
        }

        .apex-sub {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--color-text-bright);
            margin-bottom: 1rem;
            white-space: normal;
        }

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

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

        /* Global Layout Wrappers */
        .cloak-root {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            width: 100%;
        }

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

        /* Navigation */
        .crown-helm {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--color-bg-glass);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--color-border);
        }

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

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

        .crest img {
            height: 36px;
            width: auto;
            display: block;
        }

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

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

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

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

        /* Hero Section (split_diagonal prototype) */
        .flare-portal {
            position: relative;
            display: flex;
            flex-wrap: wrap;
            min-height: 90vh;
            background: radial-gradient(circle at 0% 0%, #1e1b4b 0%, var(--color-bg) 50%);
            overflow: hidden;
            border-bottom: 1px solid var(--color-border);
        }

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

        .portal-lens-zone {
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            z-index: 1;
            /* Diagonal split: 15-30 degree angle */
            clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
        }

        .portal-lens-zone::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, var(--color-bg) 0%, rgba(9, 9, 14, 0.3) 50%, transparent 100%);
            z-index: 2;
        }

        .portal-lens-zone::after {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--color-primary);
            mix-blend-mode: overlay;
            opacity: 0.3;
            z-index: 3;
        }

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

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

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

        .ping-prime:hover {
            transform: translateY(-3px);
            background: #604ef6;
            box-shadow: 0 12px 30px -5px var(--color-primary-glow);
        }

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

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

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

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

        .glyph-tag {
            width: 14px;
            height: 14px;
            margin-right: 6px;
            fill: var(--color-accent);
        }

        /* Capability Grid (<div> container) */
        .mesh-capability {
            display: flex;
            flex-wrap: wrap;
            max-width: 1400px;
            margin: 0 auto;
            padding: 8rem 2rem;
            gap: 2.5rem;
        }

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

        .shard-feature {
            flex: 1 1 350px;
            background: var(--color-bg-alt);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-large);
            padding: 3rem 2.5rem;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }

        .shard-feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
            opacity: 0;
            transition: opacity var(--transition);
        }

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

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

        .glyph-feature {
            width: 48px;
            height: 48px;
            margin-bottom: 1.5rem;
            color: var(--color-accent);
        }

        /* Proof Article (<article> container) */
        .vault-proof {
            display: flex;
            flex-wrap: wrap;
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem 8rem;
            align-items: center;
            gap: 5rem;
        }

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

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

        .lens-proof {
            width: 100%;
            height: auto;
            border-radius: var(--radius-large);
            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;
        }

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

        /* Comparison / Deep Dive Aside (<aside> container) */
        .surge-comparison {
            background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
            border-top: 1px solid var(--color-border);
            padding: 8rem 2rem;
        }

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

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

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

        .cell-topic {
            flex: 1 1 300px;
            background: rgba(255, 255, 255, 0.01);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-base);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            transition: all var(--transition);
        }

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

        .wire-jump {
            margin-top: auto;
            padding-top: 1.5rem;
            color: var(--color-accent);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }

        .wire-jump svg {
            width: 18px;
            height: 18px;
            margin-left: 8px;
            transition: transform var(--transition);
        }

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

        /* Footer Section */
        .tail-anchor {
            background: #050508;
            padding: 4rem 2rem 2rem;
            border-top: 1px solid var(--color-border);
            margin-top: auto;
        }

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

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

        .anchor-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-text-bright);
            margin-bottom: 1rem;
            display: block;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .portal-lens-zone {
                width: 50%;
                clip-path: polygon(15% 0, 100% 0, 100% 100%, -10% 100%);
            }
            .portal-echo-zone {
                padding: 5rem 2rem 5rem 5vw;
                flex: 1 1 50%;
            }
            .vault-proof {
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            .flare-portal {
                flex-direction: column;
            }
            .portal-lens-zone {
                position: relative;
                width: 100%;
                height: 350px;
                clip-path: none;
                order: -1; /* Move image to top on mobile */
            }
            .portal-lens-zone::before {
                background: linear-gradient(180deg, transparent 0%, var(--color-bg) 100%);
            }
            .portal-echo-zone {
                padding: 2rem;
                text-align: center;
            }
            .pool-ping {
                justify-content: center;
            }
            .pool-tags {
                justify-content: center;
            }
            .orbit-array {
                flex-direction: column;
                gap: 1.5rem;
            }
            .pool-wire {
                justify-content: center;
                width: 100%;
            }
            .mesh-capability, .vault-proof, .surge-comparison {
                padding: 4rem 1.5rem;
            }
            .surge-pool {
                flex-direction: column;
            }
        }

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