: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: all 0.35s ease;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --layout-max: 1240px;
}

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

body {
    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: var(--transition);
}

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

.flex-item {
    min-width: 0;
}

.echo-wrap {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.echo-zh {
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* Global Wrapper */
.mesh {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header & Nav (Forced HTML matching) */
.haze {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

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

.ray {
    min-width: 0;
    display: flex;
    align-items: center;
}

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

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

.beam {
    min-width: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-muted);
    padding: 8px 0;
    position: relative;
    word-break: keep-all;
}

.beam::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
    border-radius: 2px;
}

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

.beam:hover::after,
.beam.active::after {
    width: 100%;
}

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

/* Main Content Area */
.steer {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Section 1: Acquire (Download Panel) - Hero Variant */
.flare-vortex {
    width: 100%;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-primary-light) 100%);
    padding: 80px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tunnel-acquire {
    max-width: var(--layout-max);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    min-width: 0;
}

.apex-data {
    flex: 1 1 500px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vortex-hop {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.25;
    color: var(--color-text-main);
    letter-spacing: -0.5px;
}

.vortex-echo {
    font-size: 18px;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 600px;
}

/* Download Nodes */
.veil-nodes {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
    width: 100%;
}

.node-primary,
.node-secondary {
    background: var(--color-bg-base);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-soft);
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: var(--transition);
    min-width: 0;
}

.node-primary {
    box-shadow: var(--shadow-float);
    border: 2px solid var(--color-primary);
    position: relative;
    overflow: hidden;
}

.node-primary::before {
    content: '推荐';
    position: absolute;
    top: 12px;
    right: -24px;
    background: var(--color-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 28px;
    transform: rotate(45deg);
}

.node-secondary {
    box-shadow: var(--shadow-base);
}

.node-primary:hover,
.node-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(95, 196, 242, 0.2);
}

.shard-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1 1 200px;
    min-width: 0;
}

.pulse-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.node-primary .pulse-wrap {
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
}

.node-secondary .pulse-wrap {
    background: var(--color-bg-alt);
    color: var(--color-text-muted);
}

.pulse-wrap svg {
    width: 24px;
    height: 24px;
}

.shard-echo {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.shard-hop {
    font-weight: 700;
    font-size: 18px;
    color: var(--color-text-main);
}

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

/* Action Spark (Button) */
.spark-drift,
.spark-alt {
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    min-width: 0;
}

.spark-drift {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(95, 196, 242, 0.3);
}

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

.spark-alt {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

/* Image Flow */
.apex-visual {
    flex: 1 1 400px;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flow-flow {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-soft);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.5);
}


/* Section 2: Requirements (<div> container) */
.matrix-req {
    width: 100%;
    background-color: var(--color-bg-base);
    padding: 80px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tunnel-req {
    max-width: var(--layout-max);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-width: 0;
}

.req-haze {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.req-hop {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
}

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

.veil-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
}

.pod-req {
    background: var(--color-bg-alt);
    border-radius: var(--radius-soft);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.pod-req:hover {
    background: var(--color-bg-base);
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-base);
    transform: translateY(-4px);
}

.pod-pulse {
    width: 64px;
    height: 64px;
    background: var(--color-bg-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.pod-pulse svg {
    width: 32px;
    height: 32px;
}


/* Section 3: Installation Steps (<aside> container) */
.shield-steps {
    width: 100%;
    background-color: var(--color-bg-alt);
    padding: 80px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-top: 1px solid rgba(0,0,0,0.02);
}

.tunnel-steps {
    max-width: var(--layout-max);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: flex-start;
    min-width: 0;
}

.steps-intro {
    flex: 1 1 300px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.steps-halo {
    flex: 2 1 500px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pod-step {
    background: var(--color-bg-base);
    border-radius: var(--radius-soft);
    padding: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    box-shadow: var(--shadow-base);
    position: relative;
    overflow: hidden;
}

.step-num {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-primary-light);
    line-height: 1;
    display: flex;
    align-items: flex-start;
}

.step-mesh {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}


/* Footer (<section> container) */
.anchor-port {
    width: 100%;
    background-color: #0f172a;
    color: #94a3b8;
    padding: 60px 24px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tunnel-port {
    max-width: var(--layout-max);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-width: 0;
}

.depth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    width: 100%;
}

.roots-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.brand-hop {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.roots-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.roots-links .shard-hop {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 8px;
}

.beam-foot {
    color: #94a3b8;
    font-size: 14px;
    display: inline-block;
}

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

.port-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tunnel-acquire {
        flex-direction: column;
    }
    
    .halo {
        display: none; /* In a real scenario, JS would handle a mobile menu toggle here */
    }
    
    .node-primary,
    .node-secondary {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .spark-drift,
    .spark-alt {
        width: 100%;
    }
    
    .tunnel-steps {
        flex-direction: column;
    }
}

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