/* ==========================================================================
           XChat 视觉契约 - 基础变量与重置
           ========================================================================== */
        :root {
            --bg-base: #0a0b10;
            --bg-surface: #14151f;
            --bg-elevated: #1c1d29;
            --accent: #9e49d7;
            --accent-glow: rgba(158, 73, 215, 0.25);
            --accent-light: #b976ea;
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
            --radius-lg: 18px;
            --radius-md: 14px;
            --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
            --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            min-width: 0; /* Flex/Grid 安全规则 */
        }

        body {
            background-color: var(--bg-base);
            color: var(--text-main);
            font-family: var(--font-sans);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            word-break: break-word;
            overflow-wrap: break-word;
        }

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

        /* ==========================================================================
           全局壳层与布局容器 (Husk, Realm, Mesh)
           ========================================================================== */
        .husk {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .realm {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        /* ==========================================================================
           强制导航栏样式 (Apex, Axon, Chain) - 继承首页
           ========================================================================== */
        .apex {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 11, 16, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

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

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

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

        .chain {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .wire {
            color: var(--text-muted);
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.25s ease;
            position: relative;
        }

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

        .wire.active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
            box-shadow: 0 0 8px var(--accent-glow);
        }

        /* ==========================================================================
           排版系统 (Crest, Yarn)
           ========================================================================== */
        .crest-mega {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            white-space: normal;
            color: var(--text-main);
        }

        .crest-large {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            white-space: normal;
        }

        .crest-medium {
            font-size: 1.25rem;
            font-weight: 600;
            line-height: 1.4;
            color: var(--text-main);
            margin-bottom: 0.5rem;
        }

        .yarn-lead {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: var(--text-muted);
            line-height: 1.8;
            word-break: keep-all;
        }

        .yarn {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.6;
            word-break: keep-all;
        }

        .yarn-mono {
            font-family: var(--font-mono);
            background: rgba(158, 73, 215, 0.1);
            color: var(--accent-light);
            padding: 0.15rem 0.4rem;
            border-radius: 4px;
            font-size: 0.9em;
            border: 1px solid rgba(158, 73, 215, 0.2);
            display: inline-block;
        }

        .yarn-codeblock {
            font-family: var(--font-mono);
            background: rgba(0, 0, 0, 0.4);
            color: #fff;
            padding: 1rem;
            border-radius: 8px;
            font-size: 0.95rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            width: 100%;
            margin-top: 0.5rem;
            overflow-x: auto;
        }

        /* ==========================================================================
           页面内容区块 (Flare, Hive, Mesh, Surge)
           ========================================================================== */
        .flare {
            width: 100%;
            padding: 8rem 2rem 6rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(158, 73, 215, 0.12) 0%, transparent 100%);
            gap: 1.5rem;
            max-width: 1000px;
        }

        .hive, .mesh, .surge {
            width: 100%;
            max-width: 1200px;
            padding: 4rem 2rem;
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        /* 变体：强调背景的区块 */
        .mesh {
            background: var(--bg-surface);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.04);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            margin: 2rem 0;
            padding: 4rem;
        }

        .mesh-apex {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 700px;
        }

        /* ==========================================================================
           组件与阵列 (Flock, Packet, Node, Rune)
           ========================================================================== */
        .flock {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
            width: 100%;
        }

        .packet {
            background: var(--bg-surface);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-md);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .packet:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(158, 73, 215, 0.2);
            border-color: rgba(158, 73, 215, 0.3);
        }

        .packet-apex {
            display: flex;
            align-items: center;
            gap: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding-bottom: 1rem;
            margin-bottom: 0.5rem;
        }

        .rune {
            width: 36px;
            height: 36px;
            color: var(--accent-light);
            background: rgba(158, 73, 215, 0.1);
            padding: 8px;
            border-radius: 10px;
            flex-shrink: 0;
        }

        /* 流程/步骤型节点 */
        .flock-flow {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            position: relative;
        }

        .node {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            flex-wrap: wrap;
            background: var(--bg-elevated);
            padding: 2rem;
            border-radius: var(--radius-md);
            border: 1px solid rgba(255, 255, 255, 0.03);
        }

        .node-pip {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--accent) 0%, #6b2a99 100%);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 4px 12px var(--accent-glow);
        }

        .node-body {
            flex: 1;
            min-width: 260px;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        /* ==========================================================================
           交互元素 (Spark)
           ========================================================================== */
        .spark-inline {
            display: inline-flex;
            align-items: center;
            color: var(--accent-light);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.25s ease;
            gap: 0.25rem;
        }

        .spark-inline:hover {
            color: #fff;
        }

        .spark-inline svg {
            width: 16px;
            height: 16px;
            transition: transform 0.25s ease;
        }

        .spark-inline:hover svg {
            transform: translateX(3px);
        }

        /* ==========================================================================
           页脚 (Wake)
           ========================================================================== */
        .wake {
            background: var(--bg-base);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 4rem 2rem;
            width: 100%;
            text-align: center;
            margin-top: 4rem;
        }

        .wake-crest {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .wake-yarn {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* ==========================================================================
           响应式断点
           ========================================================================== */
        @media (max-width: 1024px) {
            .mesh {
                padding: 3rem;
            }
        }

        @media (max-width: 768px) {
            .axon {
                flex-direction: column;
                gap: 1.25rem;
                padding: 1.5rem;
            }
            .chain {
                justify-content: center;
                width: 100%;
                gap: 1.25rem;
            }
            .flare {
                padding: 5rem 1.5rem 4rem;
            }
            .hive, .mesh, .surge {
                padding: 3rem 1.5rem;
            }
            .mesh {
                border-radius: 0;
                border-left: none;
                border-right: none;
                margin: 0;
            }
            .flock {
                grid-template-columns: 1fr;
            }
            .node {
                flex-direction: column;
                gap: 1rem;
            }
            .node-pip {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

.axon-apex {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    word-break: break-word;
    color: var(--text-main);
}
.axon-apex,
.axon-apex *,
.axon-apex *::before,
.axon-apex *::after {
    box-sizing: border-box;
}

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

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

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

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

.axon-apex a.axon-wire {
    --aisite-shell-nav-padding: 0.5rem 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;
}

.axon-apex a.axon-wire,
.axon-apex a.axon-wire:hover,
.axon-apex a.axon-wire:focus,
.axon-apex a.axon-wire:active,
.axon-apex a.axon-wire.active,
.axon-apex a.axon-wire[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);
}

.axon-apex{
            position: sticky; 
            top: 0; 
            z-index: 50;
            background: rgba(10, 11, 16, 0.75);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 1rem 2rem;
            display: flex; 
            justify-content: center; 
            flex-wrap: wrap;
        }

.axon-apex .axon-axon{
            max-width: 1200px; 
            width: 100%; 
            display: flex; 
            align-items: center; 
            justify-content: space-between; 
            flex-wrap: wrap;
            min-width: 0;
        }

.axon-apex .axon-glyph{ 
            display: flex; 
            align-items: center; 
            min-width: 0;
        }

.axon-apex .axon-glyph img{ 
            height: 28px; 
            width: auto; 
            display: block; 
        }

.axon-apex .axon-chain{
            display: flex; 
            gap: 2.5rem; 
            flex-wrap: wrap; 
            min-width: 0;
        }

.axon-apex .axon-wire{
            color: #94a3b8; 
            text-decoration: none; 
            font-weight: 500; 
            font-size: 0.95rem;
            transition: 0.25s ease; 
            position: relative; 
            padding: 0.5rem 0; 
            min-width: 0;
        }

.axon-apex .axon-wire:hover, .axon-apex .axon-wire.active{ 
            color: #f1f5f9; 
        }

.axon-apex .axon-wire.active::after{
            content: ''; 
            position: absolute; 
            bottom: 0; 
            left: 0; 
            width: 100%; 
            height: 2px;
            background: #9e49d7; 
            border-radius: 2px;
            box-shadow: 0 0 8px rgba(158, 73, 215, 0.25);
        }

@media (max-width: 768px){.axon-apex{ padding: 1rem; }

.axon-apex .axon-axon{ justify-content: center; flex-direction: column; gap: 1rem; }

.axon-apex .axon-chain{ justify-content: center; gap: 1.5rem; font-size: 0.9rem; }}

.axon-apex {
    background: rgb(10, 11, 16);
    background-image: none;
}

.echo-layout-husk {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    word-break: break-word;
    color: var(--text-main);
}
.echo-layout-husk,
.echo-layout-husk *,
.echo-layout-husk *::before,
.echo-layout-husk *::after {
    box-sizing: border-box;
}

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

.echo-layout-husk p,
.echo-layout-husk h1,
.echo-layout-husk h2,
.echo-layout-husk h3,
.echo-layout-husk h4,
.echo-layout-husk h5,
.echo-layout-husk h6 {
    text-decoration: none;
}

.echo-layout-husk img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.echo-layout-husk {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.echo-layout-husk a,
.echo-layout-husk a:hover,
.echo-layout-husk a:focus,
.echo-layout-husk a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.echo-layout-husk{ 
            width: 100%; 
            display: flex; 
            flex-direction: column; 
            min-height: 100vh; 
        }

.echo-layout-husk .echo-apex{
            position: sticky; 
            top: 0; 
            z-index: 50;
            background: rgba(10, 11, 16, 0.75);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 1rem 2rem;
            display: flex; 
            justify-content: center; 
            flex-wrap: wrap;
        }

.echo-layout-husk .echo-axon{
            max-width: 1200px; 
            width: 100%; 
            display: flex; 
            align-items: center; 
            justify-content: space-between; 
            flex-wrap: wrap;
            min-width: 0;
        }

.echo-layout-husk .echo-glyph{ 
            display: flex; 
            align-items: center; 
            min-width: 0;
        }

.echo-layout-husk .echo-glyph img{ 
            height: 28px; 
            width: auto; 
            display: block; 
        }

.echo-layout-husk .echo-chain{
            display: flex; 
            gap: 2.5rem; 
            flex-wrap: wrap; 
            min-width: 0;
        }

.echo-layout-husk .echo-wire{
            color: #94a3b8; 
            text-decoration: none; 
            font-weight: 500; 
            font-size: 0.95rem;
            transition: 0.25s ease; 
            position: relative; 
            padding: 0.5rem 0; 
            min-width: 0;
        }

.echo-layout-husk .echo-wire:hover, .echo-layout-husk .echo-wire.active{ 
            color: #f1f5f9; 
        }

.echo-layout-husk .echo-wire.active::after{
            content: ''; 
            position: absolute; 
            bottom: 0; 
            left: 0; 
            width: 100%; 
            height: 2px;
            background: #9e49d7; 
            border-radius: 2px;
            box-shadow: 0 0 8px rgba(158, 73, 215, 0.25);
        }

.echo-layout-husk .echo-realm{ 
            flex: 1; 
            display: flex; 
            flex-direction: column; 
            width: 100%; 
            align-items: center;
        }

.echo-layout-husk .echo-flare{
            width: 100%;
            padding: 10rem 2rem 8rem;
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            justify-content: center;
            text-align: center; 
            position: relative;
            background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(158, 73, 215, 0.12) 0%, transparent 100%);
        }

.echo-layout-husk .echo-flare-husk{ 
            max-width: 1000px; 
            z-index: 2; 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 2.5rem; 
            min-width: 0;
        }

.echo-layout-husk .echo-crest-mega{
            font-size: clamp(3rem, 8vw, 5.5rem); 
            font-weight: 800; 
            line-height: 1.1; 
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #ffffff 0%, #d8b4fe 100%);
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent;
            white-space: normal;
        }

.echo-layout-husk .echo-yarn-lead{
            font-size: clamp(1.1rem, 2vw, 1.25rem); 
            color: #94a3b8; 
            max-width: 760px; 
            line-height: 1.8;
        }

.echo-layout-husk .echo-flock-actions{ 
            display: flex; 
            gap: 1.5rem; 
            flex-wrap: wrap; 
            justify-content: center; 
            margin-top: 1rem; 
            min-width: 0;
        }

.echo-layout-husk .echo-spark{
            background: #9e49d7; 
            color: #fff; 
            padding: 1rem 2.5rem; 
            border-radius: 30px;
            text-decoration: none; 
            font-weight: 600; 
            font-size: 1.05rem;
            box-shadow: 0 4px 24px rgba(158, 73, 215, 0.25); 
            transition: 0.25s ease;
            border: 1px solid rgba(255,255,255,0.1); 
            min-width: 0; 
            display: inline-flex; 
            align-items: center; 
            gap: 0.5rem;
        }

.echo-layout-husk .echo-spark:hover{ 
            transform: translateY(-3px); 
            box-shadow: 0 8px 32px rgba(158, 73, 215, 0.4); 
            background: #b976ea;
        }

.echo-layout-husk .echo-ping{
            background: rgba(255,255,255,0.03); 
            color: #f1f5f9; 
            padding: 1rem 2.5rem; 
            border-radius: 30px;
            text-decoration: none; 
            font-weight: 600; 
            font-size: 1.05rem; 
            transition: 0.25s ease;
            border: 1px solid rgba(255, 255, 255, 0.06); 
            min-width: 0;
        }

.echo-layout-husk .echo-ping:hover{ 
            background: rgba(255,255,255,0.08); 
            transform: translateY(-3px); 
            border-color: rgba(255,255,255,0.15);
        }

.echo-layout-husk .echo-hive{
            padding: 6rem 2rem; 
            max-width: 1260px; 
            width: 100%;
            display: flex; 
            flex-wrap: wrap; 
            gap: 5rem; 
            align-items: center;
        }

.echo-layout-husk .echo-hive-yarn{ 
            flex: 1; 
            min-width: 320px; 
            display: flex; 
            flex-direction: column; 
            gap: 1.5rem; 
        }

.echo-layout-husk .echo-hive-lens{ 
            flex: 1.2; 
            min-width: 320px; 
            position: relative; 
        }

.echo-layout-husk .echo-crest-lg{ 
            font-size: clamp(2rem, 4vw, 2.75rem); 
            font-weight: 700; 
            line-height: 1.2; 
            letter-spacing: -0.02em;
        }

.echo-layout-husk .echo-yarn{ 
            color: #94a3b8; 
            font-size: 1.05rem; 
        }

.echo-layout-husk .echo-lens-husk{
            border-radius: 18px; 
            overflow: hidden;
            box-shadow: 0 24px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(255, 255, 255, 0.06);
            position: relative;
            transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
            transition: 0.25s ease;
        }

.echo-layout-husk .echo-hive-lens:hover .echo-lens-husk{
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        }

.echo-layout-husk .echo-lens-husk::after{
            content: ''; 
            position: absolute; 
            inset: 0; 
            background: linear-gradient(135deg, rgba(158,73,215,0.15) 0%, transparent 50%); 
            pointer-events: none;
        }

.echo-layout-husk .echo-lens{ 
            width: 100%; 
            height: auto; 
            display: block; 
            object-fit: cover; 
        }

.echo-layout-husk .echo-flock-features{ 
            display: flex; 
            flex-direction: column; 
            gap: 1.25rem; 
            margin-top: 1.5rem; 
        }

.echo-layout-husk .echo-bead-feature{ 
            display: flex; 
            align-items: center; 
            gap: 1rem; 
            min-width: 0; 
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.03);
        }

.echo-layout-husk .echo-rune-wrap{
            width: 36px; 
            height: 36px; 
            border-radius: 10px; 
            background: rgba(158,73,215,0.1);
            color: #b976ea; 
            display: flex; 
            align-items: center; 
            justify-content: center;
            border: 1px solid rgba(158,73,215,0.2);
        }

.echo-layout-husk .echo-rune{ 
            width: 18px; 
            height: 18px; 
            fill: currentColor; 
        }

.echo-layout-husk .echo-mesh{
            width: 100%;
            padding: 8rem 2rem; 
            background: #14151f;
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            position: relative;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

.echo-layout-husk .echo-mesh-husk{ 
            max-width: 1260px; 
            width: 100%; 
            display: flex; 
            flex-direction: column; 
            gap: 4rem; 
        }

.echo-layout-husk .echo-apex-mesh{ 
            text-align: center; 
            max-width: 680px; 
            margin: 0 auto; 
            display: flex; 
            flex-direction: column; 
            gap: 1.25rem; 
        }

.echo-layout-husk .echo-flock-grid{
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 2rem; 
            width: 100%;
        }

.echo-layout-husk .echo-shard-lead{
            grid-column: 1 / -1; 
            display: flex; 
            flex-wrap: wrap; 
            background: #1c1d29; 
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 18px;
            overflow: hidden;
            transition: 0.25s ease;
        }

.echo-layout-husk .echo-shard-lead:hover{
            border-color: rgba(158,73,215,0.3);
            box-shadow: 0 12px 40px rgba(0,0,0,0.5);
        }

.echo-layout-husk .echo-lead-lens-wrap{ 
            flex: 1.5; 
            min-width: 320px; 
            position: relative; 
            border-right: 1px solid rgba(255, 255, 255, 0.06);
        }

.echo-layout-husk .echo-lead-lens{
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

.echo-layout-husk .echo-lead-yarn{ 
            flex: 1; 
            min-width: 320px; 
            padding: 3rem; 
            display: flex; 
            flex-direction: column; 
            justify-content: center; 
            gap: 1rem;
        }

.echo-layout-husk .echo-shard{
            background: #0a0b10; 
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 14px; 
            padding: 2.5rem; 
            transition: 0.25s ease;
            display: flex; 
            flex-direction: column; 
            gap: 1.25rem; 
            position: relative;
        }

.echo-layout-husk .echo-shard:hover{
            transform: translateY(-4px); 
            border-color: rgba(158,73,215,0.4);
            box-shadow: 0 8px 24px rgba(158, 73, 215, 0.25);
        }

.echo-layout-husk .echo-crest-md{ 
            font-size: 1.35rem; 
            font-weight: 600; 
            color: #f1f5f9; 
        }

.echo-layout-husk .echo-husk-matrix{
            padding: 8rem 2rem; 
            max-width: 1260px; 
            width: 100%;
            display: flex; 
            flex-direction: column; 
            gap: 3.5rem;
        }

.echo-layout-husk .echo-tape-matrix{
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
            gap: 2rem;
        }

.echo-layout-husk .echo-node-path{
            background: linear-gradient(180deg, #14151f 0%, transparent 100%);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-top: 3px solid #1c1d29; 
            padding: 2rem; 
            border-radius: 14px;
            display: flex; 
            flex-direction: column; 
            gap: 1rem; 
            text-decoration: none; 
            transition: 0.25s ease;
            min-width: 0;
        }

.echo-layout-husk .echo-node-path:hover{ 
            border-top-color: #9e49d7; 
            background: linear-gradient(180deg, rgba(158,73,215,0.08) 0%, transparent 100%); 
        }

.echo-layout-husk .echo-crest-sm{ 
            font-size: 1.15rem; 
            font-weight: 600; 
            color: #f1f5f9; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
        }

.echo-layout-husk .echo-rune-arrow{ 
            width: 20px; 
            height: 20px; 
            fill: #94a3b8; 
            transition: 0.25s ease; 
        }

.echo-layout-husk .echo-node-path:hover .echo-rune-arrow{ 
            fill: #9e49d7; 
            transform: translateX(4px); 
        }

.echo-layout-husk .echo-wake{
            border-top: 1px solid rgba(255, 255, 255, 0.06); 
            padding: 5rem 2rem; 
            margin-top: auto;
            background: #0a0b10; 
            display: flex; 
            justify-content: center;
        }

.echo-layout-husk .echo-wake-husk{ 
            max-width: 1200px; 
            width: 100%; 
            display: flex; 
            flex-wrap: wrap; 
            justify-content: space-between; 
            gap: 3rem; 
        }

.echo-layout-husk .echo-wake-brand{ 
            display: flex; 
            flex-direction: column; 
            gap: 1.25rem; 
            min-width: 240px; 
            max-width: 300px;
        }

.echo-layout-husk .echo-brand-yarn{ 
            font-size: 1.5rem; 
            font-weight: 800; 
            color: #f1f5f9; 
            letter-spacing: -0.02em; 
        }

.echo-layout-husk .echo-wake-flock{ 
            display: flex; 
            gap: 5rem; 
            flex-wrap: wrap; 
        }

.echo-layout-husk .echo-wake-col{ 
            display: flex; 
            flex-direction: column; 
            gap: 1rem; 
            min-width: 120px; 
        }

.echo-layout-husk .echo-wake-crest{ 
            font-size: 0.85rem; 
            font-weight: 600; 
            color: #f1f5f9; 
            text-transform: uppercase; 
            letter-spacing: 0.05em; 
            margin-bottom: 0.5rem; 
        }

.echo-layout-husk .echo-wake-wire{ 
            color: #94a3b8; 
            text-decoration: none; 
            font-size: 0.95rem; 
            transition: 0.25s ease; 
        }

.echo-layout-husk .echo-wake-wire:hover{ 
            color: #b976ea; 
        }

@media (max-width: 1024px){.echo-layout-husk .echo-hive{ gap: 3rem; }

.echo-layout-husk .echo-lead-lens-wrap{ border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }}

@media (max-width: 768px){.echo-layout-husk .echo-apex{ padding: 1rem; }

.echo-layout-husk .echo-axon{ justify-content: center; flex-direction: column; gap: 1rem; }

.echo-layout-husk .echo-chain{ justify-content: center; gap: 1.5rem; font-size: 0.9rem; }

.echo-layout-husk .echo-flare{ padding: 6rem 1.5rem 4rem; }

.echo-layout-husk .echo-hive, .echo-layout-husk .echo-shard-lead{ flex-direction: column; }

.echo-layout-husk .echo-lens-husk{ transform: none; }

.echo-layout-husk .echo-hive-lens:hover .echo-lens-husk{ transform: none; }

.echo-layout-husk .echo-flock-actions{ flex-direction: column; width: 100%; max-width: 300px; }

.echo-layout-husk .echo-spark, .echo-layout-husk .echo-ping{ width: 100%; justify-content: center; }

.echo-layout-husk .echo-wake-flock{ gap: 2.5rem; }

.echo-layout-husk .echo-mesh, .echo-layout-husk .echo-husk-matrix, .echo-layout-husk .echo-hive{ padding-top: 4rem; padding-bottom: 4rem; }}