/* 基础变量 - 继承首页视觉系统 */
        :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.08);
            --radius-lg: 18px;
            --radius-md: 14px;
            --transition: 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;
            -webkit-font-smoothing: antialiased;
            min-height: 100vh;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }

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

        /* 强制换行与Flexbox安全规则 */
        .yarn, .crest, .crest-mega, .crest-sub, dl, dt, dd, li {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        
        .yarn {
            word-break: keep-all;
        }

        .crest, .crest-mega, .crest-sub {
            white-space: normal;
        }

        /* 结构性容器 */
        .realm {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .mesh {
            flex: 1;
            width: 100%;
        }

        .husk {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

        /* 导航栏复用样式 (严格匹配要求) */
        .apex {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 11, 16, 0.7);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
        }

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

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

        .glyph img {
            height: 32px;
        }

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

        .wire {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-muted);
            padding: 0.5rem 0;
            position: relative;
        }

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

        .wire.active {
            color: var(--accent-light);
        }

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

        /* Hero区 (Section) - 下载获取 */
        .flare {
            padding: 8rem 0 6rem;
            background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(158, 73, 215, 0.12) 0%, transparent 100%);
            position: relative;
        }

        .flare-husk {
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
        }

        .flare-core {
            flex: 1 1 500px;
            min-width: 0;
        }

        .crest-mega {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, #fff, var(--text-muted));
            -webkit-background-clip: text;
            color: transparent;
        }

        .flare-yarn {
            font-size: 1.125rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            max-width: 90%;
        }

        .spark-flock {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            min-width: 0;
        }

        .spark {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: var(--accent);
            color: #fff;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            font-weight: 600;
            box-shadow: 0 4px 24px var(--accent-glow);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all var(--transition);
            cursor: pointer;
        }

        .spark:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 32px var(--accent-glow);
            background: var(--accent-light);
        }

        .jolt {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: var(--bg-surface);
            color: var(--text-main);
            padding: 1rem 2.5rem;
            border-radius: 30px;
            font-weight: 600;
            border: 1px solid var(--border);
            transition: all var(--transition);
        }

        .jolt:hover {
            background: var(--bg-elevated);
            border-color: rgba(255,255,255,0.2);
        }

        .flare-visual {
            flex: 1 1 450px;
            min-width: 0;
            position: relative;
        }

        .flare-lens {
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px inset rgba(255,255,255,0.05);
            transition: transform var(--transition);
        }
        
        .flare-visual:hover .flare-lens {
            transform: translateY(-5px);
        }

        /* 平台矩阵区 (Article) - 比较与分支 */
        .pulse {
            padding: 6rem 0;
            background: var(--bg-base);
            border-top: 1px solid var(--border);
        }

        .crest {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
        }

        .pulse-yarn {
            text-align: center;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .flock-matrix {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .shard {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
            min-width: 0;
        }

        .shard:hover {
            transform: translateY(-5px);
            border-color: var(--accent-glow);
            box-shadow: 0 12px 32px rgba(0,0,0,0.3);
            background: var(--bg-elevated);
        }

        .shard::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            opacity: 0;
            transition: opacity var(--transition);
        }

        .shard:hover::before {
            opacity: 1;
        }

        .rune-husk {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            background: rgba(158, 73, 215, 0.1);
            border: 1px solid rgba(158, 73, 215, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--accent-light);
        }

        .crest-sub {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .data-tape {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--border);
            flex: 1;
            min-width: 0;
        }

        .data-bead {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            flex: 1 1 100%;
            min-width: 0;
        }

        .data-bead dt {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .data-bead dd {
            font-family: monospace;
            font-size: 0.95rem;
            color: var(--text-main);
        }

        .ping {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            padding: 0.875rem;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text-main);
            font-weight: 500;
            transition: all var(--transition);
        }

        .shard:hover .ping {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
        }

        /* 安装引导区 (Div) - 步骤流 */
        .surge {
            padding: 6rem 0;
            background: linear-gradient(180deg, var(--bg-base) 0%, #0d0f16 100%);
        }

        .surge-mesh {
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
        }

        .surge-visual {
            flex: 1 1 400px;
            min-width: 0;
            position: relative;
        }
        
        .surge-lens {
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            box-shadow: 0 24px 48px rgba(0,0,0,0.5);
        }

        .surge-flow {
            flex: 1 1 500px;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .flow-bead {
            display: flex;
            gap: 1.5rem;
            min-width: 0;
        }

        .flow-node {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-surface);
            border: 2px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--accent-light);
            position: relative;
            z-index: 2;
        }

        .flow-bead:not(:last-child) .flow-node::after {
            content: '';
            position: absolute;
            top: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: calc(100% + 2rem);
            background: var(--border);
            z-index: 1;
        }

        .flow-yarn {
            padding-top: 0.5rem;
            min-width: 0;
        }

        .flow-crest {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .flow-detail {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* 页脚 */
        .echo {
            background: #050508;
            border-top: 1px solid var(--border);
            padding: 4rem 0 2rem;
            margin-top: auto;
        }

        .echo-mesh {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            align-items: center;
        }

        .echo-brand {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--text-main);
        }

        .echo-trail {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            min-width: 0;
        }

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

        .echo-wire:hover {
            color: var(--accent-light);
        }

        .echo-yarn {
            width: 100%;
            text-align: center;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            color: #64748b;
            font-size: 0.85rem;
        }

        /* 响应式断点 */
        @media (max-width: 1024px) {
            .flare { padding: 6rem 0 4rem; }
            .pulse { padding: 4rem 0; }
            .surge { padding: 4rem 0; }
            .flare-husk { gap: 3rem; }
            .surge-mesh { gap: 3rem; }
        }

        @media (max-width: 768px) {
            .axon { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
            .chain { width: 100%; justify-content: space-between; }
            .flare-core, .flare-visual, .surge-visual, .surge-flow { flex: 1 1 100%; }
            .crest-mega { font-size: 2.5rem; }
            .spark-flock { flex-direction: column; width: 100%; }
            .spark, .jolt { width: 100%; justify-content: center; }
            .flock-matrix { grid-template-columns: 1fr; }
            .echo-mesh { flex-direction: column; text-align: center; justify-content: center; }
            .echo-trail { justify-content: center; }
        }

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