/* 核心变量与色彩系统 - 莫兰迪暗调与品牌紫的融合 */
        :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;
            --border: rgba(255, 255, 255, 0.06);
            --radius-lg: 18px;
            --radius-md: 14px;
            --trans: 0.25s ease;
        }

        /* 基础重置与排版约束 */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background-color: var(--bg-base);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            word-break: break-word;
            overflow-wrap: break-word;
        }
        :lang(zh-CN) { word-break: keep-all; }

        /* 全局包裹器 */
        .layout-husk { 
            width: 100%; 
            display: flex; 
            flex-direction: column; 
            min-height: 100vh; 
        }

        /* 顶部导航 (Header) */
        .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 var(--border);
            padding: 1rem 2rem;
            display: flex; 
            justify-content: center; 
            flex-wrap: wrap;
        }
        .axon {
            max-width: 1200px; 
            width: 100%; 
            display: flex; 
            align-items: center; 
            justify-content: space-between; 
            flex-wrap: wrap;
            min-width: 0;
        }
        .glyph { 
            display: flex; 
            align-items: center; 
            min-width: 0;
        }
        .glyph img { 
            height: 28px; 
            width: auto; 
            display: block; 
        }

        .chain {
            display: flex; 
            gap: 2.5rem; 
            flex-wrap: wrap; 
            min-width: 0;
        }
        .wire {
            color: var(--text-muted); 
            text-decoration: none; 
            font-weight: 500; 
            font-size: 0.95rem;
            transition: var(--trans); 
            position: relative; 
            padding: 0.5rem 0; 
            min-width: 0;
        }
        .wire:hover, .wire.active { 
            color: var(--text-main); 
        }
        .wire.active::after {
            content: ''; 
            position: absolute; 
            bottom: 0; 
            left: 0; 
            width: 100%; 
            height: 2px;
            background: var(--accent); 
            border-radius: 2px;
            box-shadow: 0 0 8px var(--accent-glow);
        }

        /* 主体内容区 */
        .realm { 
            flex: 1; 
            display: flex; 
            flex-direction: column; 
            width: 100%; 
            align-items: center;
        }

        /* 首屏展示 (Hero - text_dominant 原型) */
        .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%);
        }
        .flare-husk { 
            max-width: 1000px; 
            z-index: 2; 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 2.5rem; 
            min-width: 0;
        }
        .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;
        }
        .yarn-lead {
            font-size: clamp(1.1rem, 2vw, 1.25rem); 
            color: var(--text-muted); 
            max-width: 760px; 
            line-height: 1.8;
        }
        .flock-actions { 
            display: flex; 
            gap: 1.5rem; 
            flex-wrap: wrap; 
            justify-content: center; 
            margin-top: 1rem; 
            min-width: 0;
        }

        /* 交互按钮组件 */
        .spark {
            background: var(--accent); 
            color: #fff; 
            padding: 1rem 2.5rem; 
            border-radius: 30px;
            text-decoration: none; 
            font-weight: 600; 
            font-size: 1.05rem;
            box-shadow: 0 4px 24px var(--accent-glow); 
            transition: var(--trans);
            border: 1px solid rgba(255,255,255,0.1); 
            min-width: 0; 
            display: inline-flex; 
            align-items: center; 
            gap: 0.5rem;
        }
        .spark:hover { 
            transform: translateY(-3px); 
            box-shadow: 0 8px 32px rgba(158, 73, 215, 0.4); 
            background: var(--accent-light);
        }
        .ping {
            background: rgba(255,255,255,0.03); 
            color: var(--text-main); 
            padding: 1rem 2.5rem; 
            border-radius: 30px;
            text-decoration: none; 
            font-weight: 600; 
            font-size: 1.05rem; 
            transition: var(--trans);
            border: 1px solid var(--border); 
            min-width: 0;
        }
        .ping:hover { 
            background: rgba(255,255,255,0.08); 
            transform: translateY(-3px); 
            border-color: rgba(255,255,255,0.15);
        }

        /* 核心能力区 (安全特性 - Div容器) */
        .hive {
            padding: 6rem 2rem; 
            max-width: 1260px; 
            width: 100%;
            display: flex; 
            flex-wrap: wrap; 
            gap: 5rem; 
            align-items: center;
        }
        .hive-yarn { 
            flex: 1; 
            min-width: 320px; 
            display: flex; 
            flex-direction: column; 
            gap: 1.5rem; 
        }
        .hive-lens { 
            flex: 1.2; 
            min-width: 320px; 
            position: relative; 
        }
        .crest-lg { 
            font-size: clamp(2rem, 4vw, 2.75rem); 
            font-weight: 700; 
            line-height: 1.2; 
            letter-spacing: -0.02em;
        }
        .yarn { 
            color: var(--text-muted); 
            font-size: 1.05rem; 
        }

        .lens-husk {
            border-radius: var(--radius-lg); 
            overflow: hidden;
            box-shadow: 0 24px 48px rgba(0,0,0,0.6), 0 0 0 1px var(--border);
            position: relative;
            transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
            transition: var(--trans);
        }
        .hive-lens:hover .lens-husk {
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        }
        .lens-husk::after {
            content: ''; 
            position: absolute; 
            inset: 0; 
            background: linear-gradient(135deg, rgba(158,73,215,0.15) 0%, transparent 50%); 
            pointer-events: none;
        }
        .lens { 
            width: 100%; 
            height: auto; 
            display: block; 
            object-fit: cover; 
        }

        .flock-features { 
            display: flex; 
            flex-direction: column; 
            gap: 1.25rem; 
            margin-top: 1.5rem; 
        }
        .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);
        }
        .rune-wrap {
            width: 36px; 
            height: 36px; 
            border-radius: 10px; 
            background: rgba(158,73,215,0.1);
            color: var(--accent-light); 
            display: flex; 
            align-items: center; 
            justify-content: center;
            border: 1px solid rgba(158,73,215,0.2);
        }
        .rune { 
            width: 18px; 
            height: 18px; 
            fill: currentColor; 
        }

        /* 扩展生态区 (Section容器) */
        .mesh {
            width: 100%;
            padding: 8rem 2rem; 
            background: var(--bg-surface);
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            position: relative;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .mesh-husk { 
            max-width: 1260px; 
            width: 100%; 
            display: flex; 
            flex-direction: column; 
            gap: 4rem; 
        }
        .apex-mesh { 
            text-align: center; 
            max-width: 680px; 
            margin: 0 auto; 
            display: flex; 
            flex-direction: column; 
            gap: 1.25rem; 
        }

        .flock-grid {
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 2rem; 
            width: 100%;
        }
        
        .shard-lead {
            grid-column: 1 / -1; 
            display: flex; 
            flex-wrap: wrap; 
            background: var(--bg-elevated); 
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--trans);
        }
        .shard-lead:hover {
            border-color: rgba(158,73,215,0.3);
            box-shadow: 0 12px 40px rgba(0,0,0,0.5);
        }
        .lead-lens-wrap { 
            flex: 1.5; 
            min-width: 320px; 
            position: relative; 
            border-right: 1px solid var(--border);
        }
        .lead-lens {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .lead-yarn { 
            flex: 1; 
            min-width: 320px; 
            padding: 3rem; 
            display: flex; 
            flex-direction: column; 
            justify-content: center; 
            gap: 1rem;
        }

        .shard {
            background: var(--bg-base); 
            border: 1px solid var(--border);
            border-radius: var(--radius-md); 
            padding: 2.5rem; 
            transition: var(--trans);
            display: flex; 
            flex-direction: column; 
            gap: 1.25rem; 
            position: relative;
        }
        .shard:hover {
            transform: translateY(-4px); 
            border-color: rgba(158,73,215,0.4);
            box-shadow: 0 8px 24px var(--accent-glow);
        }
        .crest-md { 
            font-size: 1.35rem; 
            font-weight: 600; 
            color: var(--text-main); 
        }

        /* 矩阵导览区 (Article容器 - 承接内链意图) */
        .husk-matrix {
            padding: 8rem 2rem; 
            max-width: 1260px; 
            width: 100%;
            display: flex; 
            flex-direction: column; 
            gap: 3.5rem;
        }
        .tape-matrix {
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
            gap: 2rem;
        }
        .node-path {
            background: linear-gradient(180deg, var(--bg-surface) 0%, transparent 100%);
            border: 1px solid var(--border);
            border-top: 3px solid var(--bg-elevated); 
            padding: 2rem; 
            border-radius: var(--radius-md);
            display: flex; 
            flex-direction: column; 
            gap: 1rem; 
            text-decoration: none; 
            transition: var(--trans);
            min-width: 0;
        }
        .node-path:hover { 
            border-top-color: var(--accent); 
            background: linear-gradient(180deg, rgba(158,73,215,0.08) 0%, transparent 100%); 
        }
        .crest-sm { 
            font-size: 1.15rem; 
            font-weight: 600; 
            color: var(--text-main); 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
        }
        .rune-arrow { 
            width: 20px; 
            height: 20px; 
            fill: var(--text-muted); 
            transition: var(--trans); 
        }
        .node-path:hover .rune-arrow { 
            fill: var(--accent); 
            transform: translateX(4px); 
        }

        /* 页脚区域 */
        .wake {
            border-top: 1px solid var(--border); 
            padding: 5rem 2rem; 
            margin-top: auto;
            background: var(--bg-base); 
            display: flex; 
            justify-content: center;
        }
        .wake-husk { 
            max-width: 1200px; 
            width: 100%; 
            display: flex; 
            flex-wrap: wrap; 
            justify-content: space-between; 
            gap: 3rem; 
        }
        .wake-brand { 
            display: flex; 
            flex-direction: column; 
            gap: 1.25rem; 
            min-width: 240px; 
            max-width: 300px;
        }
        .brand-yarn { 
            font-size: 1.5rem; 
            font-weight: 800; 
            color: var(--text-main); 
            letter-spacing: -0.02em; 
        }
        .wake-flock { 
            display: flex; 
            gap: 5rem; 
            flex-wrap: wrap; 
        }
        .wake-col { 
            display: flex; 
            flex-direction: column; 
            gap: 1rem; 
            min-width: 120px; 
        }
        .wake-crest { 
            font-size: 0.85rem; 
            font-weight: 600; 
            color: var(--text-main); 
            text-transform: uppercase; 
            letter-spacing: 0.05em; 
            margin-bottom: 0.5rem; 
        }
        .wake-wire { 
            color: var(--text-muted); 
            text-decoration: none; 
            font-size: 0.95rem; 
            transition: var(--trans); 
        }
        .wake-wire:hover { 
            color: var(--accent-light); 
        }

        /* 响应式断点 */
        @media (max-width: 1024px) {
            .hive { gap: 3rem; }
            .lead-lens-wrap { border-right: none; border-bottom: 1px solid var(--border); }
        }
        @media (max-width: 768px) {
            .apex { padding: 1rem; }
            .axon { justify-content: center; flex-direction: column; gap: 1rem; }
            .chain { justify-content: center; gap: 1.5rem; font-size: 0.9rem; }
            .flare { padding: 6rem 1.5rem 4rem; }
            .hive, .shard-lead { flex-direction: column; }
            .lens-husk { transform: none; }
            .hive-lens:hover .lens-husk { transform: none; }
            .flock-actions { flex-direction: column; width: 100%; max-width: 300px; }
            .spark, .ping { width: 100%; justify-content: center; }
            .wake-flock { gap: 2.5rem; }
            .mesh, .husk-matrix, .hive { padding-top: 4rem; padding-bottom: 4rem; }
        }

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