: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: 0.35s ease;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--color-text-main);
    background-color: var(--color-bg-base);
    line-height: 1.7;
    word-break: break-word;
    overflow-wrap: break-word;
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

.beam {
    text-decoration: none;
    color: var(--color-text-muted);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    word-break: break-word;
}

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

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

/* Main Layout */
.tunnel-tunnel {
    flex: 1;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    min-width: 0;
}

.matrix-hub {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    min-width: 0;
}

/* Article 1: Overview */
.flare-vortex {
    width: 100%;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-primary-light) 100%);
    display: flex;
    flex-wrap: wrap;
    padding: 80px 0;
    min-width: 0;
}

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

.echo-lead {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--color-text-muted);
    max-width: 680px;
    margin: 0 0 40px 0;
    word-break: keep-all;
}

.veil-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    min-width: 0;
}

.node-stat {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    box-shadow: 0 4px 12px rgba(95, 196, 242, 0.05);
}

.pulse-stat {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--color-bg-base);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-base);
}

.pulse-stat svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.mesh-stat {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.hop-stat {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0;
    white-space: normal;
}

.echo-stat {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0;
}

/* Section 2: Downloads */
.shield-compare {
    padding: 100px 0;
    background: var(--color-bg-base);
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
    width: 100%;
}

.hop-apex {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    margin: 0 0 16px 0;
    text-align: center;
    white-space: normal;
}

.echo-apex {
    text-align: center;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 56px auto;
    word-break: keep-all;
    font-size: 16px;
}

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

.node-feature {
    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: var(--transition);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    min-width: 0;
    position: relative;
    overflow: hidden;
}

.node-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
    transition: var(--transition);
}

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

.node-feature:hover::before {
    background: var(--color-primary);
}

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

.mesh-pulse svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.hop-node {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px 0;
    white-space: normal;
}

.echo-node {
    color: var(--color-text-muted);
    flex: 1;
    margin: 0 0 32px 0;
    word-break: keep-all;
}

.veil-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
    min-width: 0;
}

.echo-spec {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.echo-spec::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}

.spark-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    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);
    text-decoration: none;
    transition: var(--transition);
    word-break: break-word;
    margin-top: auto;
}

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

.spark-alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    font-weight: 600;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
    word-break: break-word;
    margin-top: auto;
}

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

/* Aside 3: Configuration */
.shield-acquire {
    padding: 80px 0;
    background: var(--color-bg-base);
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
    width: 100%;
}

.matrix-focus {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background: var(--color-bg-alt);
    border-radius: 40px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    min-width: 0;
}

.shard-flow {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    min-width: 0;
}

.veil-flow {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-wrap: wrap;
    min-width: 0;
}

.core-phase {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
    min-width: 0;
    background: var(--color-bg-base);
    padding: 32px;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-base);
}

.pulse-number {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--color-primary);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(95, 196, 242, 0.3);
}

.mesh-phase-echo {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hop-phase {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
    white-space: normal;
}

.echo-phase {
    color: var(--color-text-muted);
    margin: 0;
    word-break: keep-all;
    line-height: 1.6;
}

.warp-code {
    background: var(--color-bg-alt);
    padding: 4px 8px;
    border-radius: 6px;
    font-family: monospace;
    color: var(--color-text-main);
    font-size: 0.9em;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Footer */
.port {
    background: var(--color-bg-base);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 60px 0 40px 0;
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
    width: 100%;
}

.anchor-depth {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    box-sizing: border-box;
    flex-wrap: wrap;
    min-width: 0;
}

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

.veil-beams {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    min-width: 0;
}

.beam-depth {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
    word-break: break-word;
    font-weight: 500;
}

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

.echo-echo {
    color: var(--color-text-muted);
    font-size: 14px;
    margin: 0;
    text-align: center;
    word-break: keep-all;
}

/* Responsive */
@media (max-width: 768px) {
    .relay {
        justify-content: center;
        flex-direction: column;
        gap: 16px;
    }
    
    .halo {
        justify-content: center;
    }
    
    .vortex-hop {
        font-size: 28px;
        text-align: center;
    }
    
    .echo-lead {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .veil-stats {
        justify-content: center;
    }
    
    .flare-vortex {
        padding: 56px 0;
    }
    
    .shield-compare {
        padding: 60px 0;
    }
    
    .matrix-focus {
        padding: 32px 20px;
        border-radius: 24px;
    }
    
    .core-phase {
        flex-direction: column;
        gap: 16px;
        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;
            }}