:root {
            --color-primary: #5fc4f2;
            --color-primary-dark: #3baee3;
            --color-primary-light: #e0f4fc;
            --color-text-main: #1e293b;
            --color-text-muted: #64748b;
            --color-bg-base: #ffffff;
            --color-bg-alt: #f8fafc;
            --radius-soft: 20px;
            --radius-pill: 99px;
            --shadow-float: 0 12px 35px -5px rgba(95, 196, 242, 0.15);
            --shadow-subtle: 0 4px 15px -3px rgba(0, 0, 0, 0.05);
            --transition-base: all 0.35s ease;
            --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

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

        body {
            font-family: var(--font-stack);
            color: var(--color-text-main);
            background-color: var(--color-bg-base);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* 强制换行规范 */
        .echo-flow, p, h1, h2, h3, span {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        
        p, .echo-body {
            word-break: keep-all;
        }

        h1, h2, h3 {
            white-space: normal;
        }

        /* 全局容器 */
        .mesh-global {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* 顶部导航 */
        .haze {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        }

        .relay {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
            padding: 16px 4vw;
        }

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

        .halo {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 32px;
        }

        .beam {
            font-size: 15px;
            font-weight: 500;
            color: var(--color-text-muted);
            transition: var(--transition-base);
            position: relative;
        }

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

        .beam.active {
            color: var(--color-primary);
            font-weight: 700;
        }

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

        /* 主内容区 */
        .matrix-tunnel {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* Hero 区域 (蓝图: reverse_split) */
        .flare-vortex {
            width: 100%;
            background: linear-gradient(135deg, #f8fafc 0%, #e0f4fc 100%);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            padding: 0; /* 依靠内部 padding 控制 */
            overflow: hidden;
        }

        .vortex-flow-mesh {
            flex: 0 0 58%;
            min-width: 0;
            padding: 60px 4vw 60px 0; /* 左侧无 padding，紧贴边缘 */
            position: relative;
        }

        .vortex-flow-mesh img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 0 var(--radius-soft) var(--radius-soft) 0;
            box-shadow: 25px 20px 50px -10px rgba(95, 196, 242, 0.25);
            transition: var(--transition-base);
        }

        .vortex-flow-mesh img:hover {
            transform: translateX(10px);
        }

        .vortex-echo-mesh {
            flex: 1 1 38%;
            min-width: 0;
            padding: 60px 6vw 60px 2vw;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .vortex-hop {
            font-size: clamp(28px, 4vw, 46px);
            font-weight: 800;
            line-height: 1.25;
            color: var(--color-text-main);
            margin-bottom: 24px;
            letter-spacing: -0.5px;
        }

        .vortex-echo {
            font-size: 18px;
            color: var(--color-text-muted);
            margin-bottom: 36px;
            line-height: 1.8;
        }

        .spark-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 36px;
            background-color: var(--color-primary);
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            border-radius: var(--radius-pill);
            transition: var(--transition-base);
            box-shadow: 0 8px 20px rgba(95, 196, 242, 0.3);
            align-self: flex-start;
        }

        .spark-primary:hover {
            background-color: var(--color-primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(95, 196, 242, 0.4);
        }

        /* 核心能力区 */
        .tunnel-capabilities {
            padding: 100px 4vw;
            background-color: var(--color-bg-base);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .tunnel-capabilities > .hop-primary {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .tunnel-capabilities > .echo-lead {
            text-align: center;
            font-size: 18px;
            color: var(--color-text-muted);
            max-width: 800px;
            margin-bottom: 60px;
        }

        .veil-nodes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            width: 100%;
            max-width: 1200px;
        }

        .node-feature {
            background: var(--color-bg-base);
            border: 1px solid rgba(0, 0, 0, 0.04);
            border-radius: var(--radius-soft);
            padding: 40px;
            transition: var(--transition-base);
            box-shadow: var(--shadow-subtle);
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .node-feature:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-float);
            border-color: var(--color-primary-light);
        }

        .pulse-feature {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: var(--color-primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--color-primary);
        }

        .node-hop {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .node-echo {
            color: var(--color-text-muted);
            font-size: 16px;
        }

        /* 开源信息区 */
        .shield-opensource {
            padding: 100px 4vw;
            background-color: var(--color-bg-alt);
            display: flex;
            justify-content: center;
        }

        .opensource-article {
            max-width: 900px;
            text-align: center;
        }

        .opensource-article .hop-primary {
            font-size: 32px;
            margin-bottom: 24px;
        }

        .opensource-article .echo-body {
            font-size: 18px;
            color: var(--color-text-muted);
            margin-bottom: 20px;
            text-align: justify;
        }

        /* 站内导览区 */
        .portal-pathways {
            padding: 100px 4vw;
            background: var(--color-bg-base);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .portal-pathways > .hop-primary {
            font-size: 36px;
            margin-bottom: 60px;
            text-align: center;
        }

        .veil-shards {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            max-width: 1400px;
            width: 100%;
            justify-content: center;
        }

        .shard-path {
            flex: 1 1 calc(50% - 30px);
            min-width: 300px;
            max-width: 600px;
            background: #ffffff;
            border-radius: var(--radius-soft);
            padding: 40px;
            border: 2px solid var(--color-bg-alt);
            transition: var(--transition-base);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .shard-path:hover {
            border-color: var(--color-primary);
            box-shadow: 0 15px 35px rgba(95, 196, 242, 0.1);
        }

        .shard-path::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--color-primary);
            opacity: 0;
            transition: var(--transition-base);
        }

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

        .shard-hop {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .shard-echo {
            color: var(--color-text-muted);
            margin-bottom: 24px;
            flex-grow: 1;
        }
        
        .shard-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 24px;
        }
        
        .shard-tags span {
            font-size: 13px;
            background: var(--color-bg-alt);
            color: var(--color-text-main);
            padding: 4px 12px;
            border-radius: 4px;
        }

        .beam-drift {
            display: inline-flex;
            align-items: center;
            color: var(--color-primary);
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition-base);
            align-self: flex-start;
        }

        .beam-drift:hover {
            color: var(--color-primary-dark);
            gap: 8px; /* 产生箭头移动效果 */
        }

        .beam-drift svg {
            margin-left: 4px;
            transition: var(--transition-base);
        }

        /* 页脚 */
        .port-anchor {
            background-color: #0f172a;
            color: #94a3b8;
            padding: 60px 4vw 40px;
        }

        .anchor-mesh {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 40px;
            margin-bottom: 30px;
        }
        
        .anchor-brand {
            font-size: 24px;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 1px;
        }

        .anchor-echo {
            font-size: 14px;
            text-align: center;
        }

        /* 响应式断点 */
        @media (max-width: 1024px) {
            .flare-vortex {
                flex-direction: column;
                padding-top: 40px;
            }
            .vortex-flow-mesh {
                flex: 1 1 100%;
                padding: 0 4vw 40px 4vw; /* 恢复左右 padding */
            }
            .vortex-flow-mesh img {
                border-radius: var(--radius-soft);
            }
            .vortex-echo-mesh {
                flex: 1 1 100%;
                padding: 0 4vw 60px 4vw;
                text-align: center;
                align-items: center;
            }
            .shard-path {
                flex: 1 1 100%;
            }
        }

        @media (max-width: 768px) {
            .halo {
                display: none; /* 移动端简化，实际项目中通常有汉堡菜单，此处根据规则简化 */
            }
            .tunnel-capabilities {
                padding: 60px 4vw;
            }
            .veil-nodes {
                grid-template-columns: 1fr;
            }
            .vortex-hop {
                font-size: 32px;
            }
        }

.relay-haze {
    font-family: var(--font-stack);
    line-height: 1.7;
    color: var(--color-text-main);
}
.relay-haze,
.relay-haze *,
.relay-haze *::before,
.relay-haze *::after {
    box-sizing: border-box;
}

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

.relay-haze p,
.relay-haze h1,
.relay-haze h2,
.relay-haze h3,
.relay-haze h4,
.relay-haze h5,
.relay-haze h6 {
    text-decoration: none;
}

.relay-haze img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.relay-haze {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.relay-haze a.relay-beam {
    --aisite-shell-nav-padding: 0;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.relay-haze a.relay-beam,
.relay-haze a.relay-beam:hover,
.relay-haze a.relay-beam:focus,
.relay-haze a.relay-beam:active,
.relay-haze a.relay-beam.active,
.relay-haze a.relay-beam[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.relay-haze{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        }

.relay-haze .relay-relay{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
            padding: 16px 4vw;
        }

.relay-haze .relay-ray img{
            height: 36px;
            width: auto;
            display: block;
        }

.relay-haze .relay-halo{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 32px;
        }

.relay-haze .relay-beam{
            font-size: 15px;
            font-weight: 500;
            color: #64748b;
            transition: all 0.35s ease;
            position: relative;
        }

.relay-haze .relay-beam:hover{
            color: #5fc4f2;
        }

.relay-haze .relay-beam.active{
            color: #5fc4f2;
            font-weight: 700;
        }

.relay-haze .relay-beam.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #5fc4f2;
            border-radius: 4px;
        }

@media (max-width: 768px){.relay-haze .relay-halo{
                display: none; 
            }}

.relay-haze {
    background: rgb(255, 255, 255);
    background-image: none;
}

.anchor-mesh-global {
    font-family: var(--font-stack);
    line-height: 1.7;
    color: var(--color-text-main);
}
.anchor-mesh-global,
.anchor-mesh-global *,
.anchor-mesh-global *::before,
.anchor-mesh-global *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-mesh-global .anchor-echo-body{
            word-break: keep-all;
        }

.anchor-mesh-global{
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

.anchor-mesh-global .anchor-haze{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        }

.anchor-mesh-global .anchor-relay{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
            padding: 16px 4vw;
        }

.anchor-mesh-global .anchor-ray img{
            height: 36px;
            width: auto;
            display: block;
        }

.anchor-mesh-global .anchor-halo{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 32px;
        }

.anchor-mesh-global .anchor-beam{
            font-size: 15px;
            font-weight: 500;
            color: #64748b;
            transition: all 0.35s ease;
            position: relative;
        }

.anchor-mesh-global .anchor-beam:hover{
            color: #5fc4f2;
        }

.anchor-mesh-global .anchor-beam.active{
            color: #5fc4f2;
            font-weight: 700;
        }

.anchor-mesh-global .anchor-beam.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #5fc4f2;
            border-radius: 4px;
        }

.anchor-mesh-global .anchor-matrix-tunnel{
            flex: 1;
            display: flex;
            flex-direction: column;
        }

.anchor-mesh-global .anchor-flare-vortex{
            width: 100%;
            background: linear-gradient(135deg, #f8fafc 0%, #e0f4fc 100%);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            padding: 0; 
            overflow: hidden;
        }

.anchor-mesh-global .anchor-vortex-flow-mesh{
            flex: 0 0 58%;
            min-width: 0;
            padding: 60px 4vw 60px 0; 
            position: relative;
        }

.anchor-mesh-global .anchor-vortex-flow-mesh img{
            width: 100%;
            height: auto;
            display: block;
            border-radius: 0 20px 20px 0;
            box-shadow: 25px 20px 50px -10px rgba(95, 196, 242, 0.25);
            transition: all 0.35s ease;
        }

.anchor-mesh-global .anchor-vortex-flow-mesh img:hover{
            transform: translateX(10px);
        }

.anchor-mesh-global .anchor-vortex-echo-mesh{
            flex: 1 1 38%;
            min-width: 0;
            padding: 60px 6vw 60px 2vw;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

.anchor-mesh-global .anchor-vortex-hop{
            font-size: clamp(28px, 4vw, 46px);
            font-weight: 800;
            line-height: 1.25;
            color: #1e293b;
            margin-bottom: 24px;
            letter-spacing: -0.5px;
        }

.anchor-mesh-global .anchor-vortex-echo{
            font-size: 18px;
            color: #64748b;
            margin-bottom: 36px;
            line-height: 1.8;
        }

.anchor-mesh-global .anchor-spark-primary{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 36px;
            background-color: #5fc4f2;
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            border-radius: 99px;
            transition: all 0.35s ease;
            box-shadow: 0 8px 20px rgba(95, 196, 242, 0.3);
            align-self: flex-start;
        }

.anchor-mesh-global .anchor-spark-primary:hover{
            background-color: #3baee3;
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(95, 196, 242, 0.4);
        }

.anchor-mesh-global .anchor-tunnel-capabilities{
            padding: 100px 4vw;
            background-color: #ffffff;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

.anchor-mesh-global .anchor-tunnel-capabilities > .anchor-hop-primary{
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }

.anchor-mesh-global .anchor-tunnel-capabilities > .anchor-echo-lead{
            text-align: center;
            font-size: 18px;
            color: #64748b;
            max-width: 800px;
            margin-bottom: 60px;
        }

.anchor-mesh-global .anchor-veil-nodes{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            width: 100%;
            max-width: 1200px;
        }

.anchor-mesh-global .anchor-node-feature{
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.04);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.35s ease;
            box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

.anchor-mesh-global .anchor-node-feature:hover{
            transform: translateY(-8px);
            box-shadow: 0 12px 35px -5px rgba(95, 196, 242, 0.15);
            border-color: #e0f4fc;
        }

.anchor-mesh-global .anchor-pulse-feature{
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: #e0f4fc;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: #5fc4f2;
        }

.anchor-mesh-global .anchor-node-hop{
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
        }

.anchor-mesh-global .anchor-node-echo{
            color: #64748b;
            font-size: 16px;
        }

.anchor-mesh-global .anchor-shield-opensource{
            padding: 100px 4vw;
            background-color: #f8fafc;
            display: flex;
            justify-content: center;
        }

.anchor-mesh-global .anchor-opensource-article{
            max-width: 900px;
            text-align: center;
        }

.anchor-mesh-global .anchor-opensource-article .anchor-hop-primary{
            font-size: 32px;
            margin-bottom: 24px;
        }

.anchor-mesh-global .anchor-opensource-article .anchor-echo-body{
            font-size: 18px;
            color: #64748b;
            margin-bottom: 20px;
            text-align: justify;
        }

.anchor-mesh-global .anchor-portal-pathways{
            padding: 100px 4vw;
            background: #ffffff;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

.anchor-mesh-global .anchor-portal-pathways > .anchor-hop-primary{
            font-size: 36px;
            margin-bottom: 60px;
            text-align: center;
        }

.anchor-mesh-global .anchor-veil-shards{
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            max-width: 1400px;
            width: 100%;
            justify-content: center;
        }

.anchor-mesh-global .anchor-shard-path{
            flex: 1 1 calc(50% - 30px);
            min-width: 300px;
            max-width: 600px;
            background: #ffffff;
            border-radius: 20px;
            padding: 40px;
            border: 2px solid #f8fafc;
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

.anchor-mesh-global .anchor-shard-path:hover{
            border-color: #5fc4f2;
            box-shadow: 0 15px 35px rgba(95, 196, 242, 0.1);
        }

.anchor-mesh-global .anchor-shard-path::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: #5fc4f2;
            opacity: 0;
            transition: all 0.35s ease;
        }

.anchor-mesh-global .anchor-shard-path:hover::before{
            opacity: 1;
        }

.anchor-mesh-global .anchor-shard-hop{
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

.anchor-mesh-global .anchor-shard-echo{
            color: #64748b;
            margin-bottom: 24px;
            flex-grow: 1;
        }

.anchor-mesh-global .anchor-shard-tags{
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 24px;
        }

.anchor-mesh-global .anchor-shard-tags span{
            font-size: 13px;
            background: #f8fafc;
            color: #1e293b;
            padding: 4px 12px;
            border-radius: 4px;
        }

.anchor-mesh-global .anchor-beam-drift{
            display: inline-flex;
            align-items: center;
            color: #5fc4f2;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.35s ease;
            align-self: flex-start;
        }

.anchor-mesh-global .anchor-beam-drift:hover{
            color: #3baee3;
            gap: 8px; 
        }

.anchor-mesh-global .anchor-beam-drift svg{
            margin-left: 4px;
            transition: all 0.35s ease;
        }

.anchor-mesh-global .anchor-port-anchor{
            background-color: #0f172a;
            color: #94a3b8;
            padding: 60px 4vw 40px;
        }

.anchor-mesh-global .anchor-anchor-mesh{
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 40px;
            margin-bottom: 30px;
        }

.anchor-mesh-global .anchor-anchor-brand{
            font-size: 24px;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 1px;
        }

.anchor-mesh-global .anchor-anchor-echo{
            font-size: 14px;
            text-align: center;
        }

@media (max-width: 1024px){.anchor-mesh-global .anchor-flare-vortex{
                flex-direction: column;
                padding-top: 40px;
            }

.anchor-mesh-global .anchor-vortex-flow-mesh{
                flex: 1 1 100%;
                padding: 0 4vw 40px 4vw; 
            }

.anchor-mesh-global .anchor-vortex-flow-mesh img{
                border-radius: 20px;
            }

.anchor-mesh-global .anchor-vortex-echo-mesh{
                flex: 1 1 100%;
                padding: 0 4vw 60px 4vw;
                text-align: center;
                align-items: center;
            }

.anchor-mesh-global .anchor-shard-path{
                flex: 1 1 100%;
            }}

@media (max-width: 768px){.anchor-mesh-global .anchor-halo{
                display: none; 
            }

.anchor-mesh-global .anchor-tunnel-capabilities{
                padding: 60px 4vw;
            }

.anchor-mesh-global .anchor-veil-nodes{
                grid-template-columns: 1fr;
            }

.anchor-mesh-global .anchor-vortex-hop{
                font-size: 32px;
            }}