/* 变量系统 - 继承首页视觉基因 */
        :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-base: 0 4px 15px -3px rgba(0, 0, 0, 0.05);
            --transition-std: 0.35s ease;
            --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --content-width: 1200px;
        }

        /* 基础重置与排版 */
        *, *::before, *::after {
            box-sizing: border-box;
            min-width: 0;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-family);
            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;
            transition: color var(--transition-std);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        h1, h2, h3 {
            margin: 0;
            white-space: normal;
            font-weight: 800;
            color: var(--color-text-main);
        }

        p {
            margin: 0 0 1rem 0;
            word-break: keep-all;
        }

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

        .matrix {
            flex: 1;
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        /* 强制导航栏复用样式 */
        .haze {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .relay {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: var(--content-width);
            margin: 0 auto;
            padding: 16px 24px;
            flex-wrap: wrap;
        }

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

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

        .beam {
            font-size: 15px;
            font-weight: 600;
            color: var(--color-text-muted);
            padding: 8px 12px;
            border-radius: 8px;
        }

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

        .beam.active {
            color: var(--color-primary);
            background: var(--color-primary-light);
        }

        /* 1. 智能路由时代 (Article) */
        .flare-vortex {
            width: 100%;
            background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-primary-light) 100%);
            padding: 80px 24px;
            display: flex;
            justify-content: center;
        }

        .vortex-core {
            max-width: var(--content-width);
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .vortex-echo {
            flex: 1;
            min-width: 300px;
        }

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

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

        .vortex-flow {
            flex: 1;
            min-width: 300px;
            border-radius: var(--radius-soft);
            overflow: hidden;
            box-shadow: var(--shadow-float);
            border: 1px solid rgba(255,255,255,0.5);
            background: var(--color-bg-base);
            padding: 8px;
        }

        .vortex-flow img {
            border-radius: 12px;
            width: 100%;
        }

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

        .spark-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(95, 196, 242, 0.4);
            color: #ffffff;
        }

        /* 2. 基础分流策略 (Section) */
        .tunnel {
            padding: 80px 24px;
            background: var(--color-bg-base);
            display: flex;
            justify-content: center;
        }

        .tunnel-core {
            max-width: var(--content-width);
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .tunnel-hop {
            font-size: 32px;
            margin-bottom: 16px;
        }

        .tunnel-echo {
            max-width: 700px;
            color: var(--color-text-muted);
            margin-bottom: 48px;
            font-size: 17px;
        }

        .veil {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
            width: 100%;
        }

        .shard-pod {
            flex: 1;
            min-width: 280px;
            max-width: 400px;
            background: var(--color-bg-alt);
            border-radius: var(--radius-soft);
            padding: 32px;
            text-align: left;
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: transform var(--transition-std);
        }

        .shard-pod:hover {
            transform: translateY(-5px);
        }

        .pulse-wrap {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: var(--color-primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .pulse-wrap svg {
            width: 24px;
            height: 24px;
            fill: var(--color-primary);
        }

        .shard-hop {
            font-size: 20px;
            margin-bottom: 12px;
        }

        /* 3. 自定义规则集 (Aside) */
        .shield {
            padding: 80px 24px;
            background: var(--color-bg-alt);
            display: flex;
            justify-content: center;
        }

        .shield-core {
            max-width: var(--content-width);
            width: 100%;
        }

        .shield-hop {
            font-size: 32px;
            margin-bottom: 16px;
            text-align: center;
        }

        .shield-echo {
            text-align: center;
            color: var(--color-text-muted);
            margin-bottom: 48px;
            font-size: 17px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .matrix-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

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

        .node-feature:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-float);
        }

        .node-hop {
            font-size: 22px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .node-hop svg {
            width: 28px;
            height: 28px;
            fill: var(--color-primary);
        }

        /* 4. 系统代理模式说明 (Div) */
        .depth {
            padding: 80px 24px;
            background: var(--color-bg-base);
            display: flex;
            justify-content: center;
        }

        .depth-core {
            max-width: 900px;
            width: 100%;
            background: linear-gradient(to right, var(--color-bg-alt), var(--color-primary-light));
            border-radius: var(--radius-soft);
            padding: 48px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 32px;
            border-left: 6px solid var(--color-primary);
        }

        .depth-echo {
            flex: 1;
            min-width: 280px;
        }

        .depth-hop {
            font-size: 26px;
            margin-bottom: 16px;
        }

        .depth-echo {
            color: var(--color-text-muted);
            font-size: 16px;
            line-height: 1.8;
            margin: 0;
        }

        /* 页脚 (Section) */
        .port {
            background: var(--color-bg-alt);
            padding: 60px 24px 40px;
            border-top: 1px solid rgba(0,0,0,0.05);
            display: flex;
            justify-content: center;
        }

        .roots {
            max-width: var(--content-width);
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
        }

        .anchor-brand {
            font-size: 24px;
            font-weight: 800;
            color: var(--color-text-main);
            letter-spacing: -0.5px;
        }

        .anchor-links {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .anchor-links a {
            color: var(--color-text-muted);
            font-size: 14px;
        }

        .anchor-links a:hover {
            color: var(--color-primary);
        }

        /* 响应式断点 */
        @media (max-width: 768px) {
            .halo {
                display: none; /* 移动端简化，实际项目中通常有汉堡菜单 */
            }
            .vortex-hop {
                font-size: 32px;
            }
            .tunnel, .shield, .depth {
                padding: 48px 20px;
            }
            .depth-core {
                padding: 32px 24px;
            }
            .node-feature {
                padding: 24px;
            }
        }

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