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

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background-color: var(--bg-base);
            color: var(--text-main);
            margin: 0;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* 基础排版规范 */
        .crest-mega, .crest-primary, .crest-sub, .yarn, .yarn-lead {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        
        .crest-mega, .crest-primary, .crest-sub {
            white-space: normal;
            margin: 0;
        }

        .yarn, .yarn-lead {
            word-break: keep-all; /* 中文保持词组 */
        }

        /* 布局网格系统 */
        .mesh {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            flex-wrap: wrap;
        }

        .mesh > * { min-width: 0; }

        .realm {
            flex: 1 1 auto;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
        }

        .realm > * { min-width: 0; width: 100%; }

        .husk {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
            box-sizing: border-box;
            display: flex;
            flex-wrap: wrap;
        }
        
        .husk > * { min-width: 0; }

        /* 导航壳层 (继承自首页) */
        .apex {
            background: rgba(10, 11, 16, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            flex-wrap: wrap;
        }

        .apex > * { min-width: 0; width: 100%; }

        .axon {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.25rem 2rem;
            width: 100%;
            box-sizing: border-box;
            flex-wrap: wrap;
        }

        .axon > * { min-width: 0; }

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

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

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

        .chain > * { min-width: 0; }

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

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

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

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

        /* Hero 区域 (Intro角色) */
        .flare {
            padding: 10rem 0 8rem;
            background: radial-gradient(ellipse 65% 60% at 50% 0%, rgba(158, 73, 215, 0.15) 0%, transparent 100%);
            display: flex;
            flex-wrap: wrap;
            position: relative;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }
        
        .flare::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 40px 40px;
            mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
            -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
            pointer-events: none;
            z-index: 0;
        }

        .flare .husk {
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .rune-flare {
            width: 64px;
            height: 64px;
            color: var(--accent-light);
            margin-bottom: 2rem;
            filter: drop-shadow(0 0 16px var(--accent-glow));
        }

        .crest-mega {
            font-size: clamp(3rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.03em;
            color: #ffffff;
            margin-bottom: 1.5rem;
            max-width: 900px;
        }

        .yarn-lead {
            font-size: clamp(1.125rem, 2vw, 1.375rem);
            color: var(--text-muted);
            max-width: 760px;
            line-height: 1.7;
        }

        /* 核心配置区域 (Context角色) */
        .pulse {
            padding: 7rem 0;
            background: var(--bg-base);
            display: flex;
            flex-wrap: wrap;
        }

        .pulse .husk {
            flex-direction: column;
            gap: 4rem;
        }

        .crest-primary {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            text-align: center;
            width: 100%;
        }

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

        .shard {
            background: var(--bg-surface);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 1.25rem;
            transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
        }

        .shard > * { min-width: 0; }

        .shard:hover {
            transform: translateY(-4px);
            border-color: rgba(158, 73, 215, 0.3);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 24px rgba(158, 73, 215, 0.08);
            background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
        }

        .rune-shard {
            width: 42px;
            height: 42px;
            color: var(--accent-light);
            background: rgba(158, 73, 215, 0.1);
            padding: 12px;
            border-radius: 12px;
            box-sizing: border-box;
        }

        .crest-sub {
            font-size: 1.25rem;
            font-weight: 600;
            color: #fff;
        }

        .yarn {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0;
        }

        /* 频道管理区域 (Acquire角色) */
        .surge {
            padding: 7rem 0;
            background: var(--bg-elevated);
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            display: flex;
            flex-wrap: wrap;
        }

        .surge .husk {
            align-items: center;
            justify-content: space-between;
            gap: 5rem;
        }

        .surge-yarns {
            flex: 1 1 400px;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .surge-yarns > * { min-width: 0; }

        .spark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--accent);
            color: #fff;
            padding: 1rem 2.25rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.05rem;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 20px var(--accent-glow);
            transition: all var(--transition);
            width: max-content;
            margin-top: 1rem;
        }

        .spark:hover {
            transform: translateY(-2px);
            background: var(--accent-light);
            box-shadow: 0 8px 28px rgba(158, 73, 215, 0.35);
        }

        /* 模拟界面视觉焦点 (无图设计载体) */
        .surge-lens {
            flex: 1 1 450px;
            background: var(--bg-base);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 1.25rem;
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
        }

        .surge-lens > * { min-width: 0; }

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

        .tape-flock {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.03);
        }
        
        .tape-flock > * { min-width: 0; }

        .tape-rune {
            width: 20px;
            height: 20px;
            color: var(--text-muted);
        }

        .tape-yarn {
            flex: 1;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
        }

        .tape-yarn.short { width: 40%; flex: none; }
        .tape-yarn.mid { width: 60%; flex: none; }
        .tape-yarn.active { background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }

        .tape-jolt {
            width: 32px;
            height: 16px;
            background: rgba(158, 73, 215, 0.2);
            border: 1px solid rgba(158, 73, 215, 0.5);
            border-radius: 8px;
            position: relative;
        }
        
        .tape-jolt::after {
            content: '';
            position: absolute;
            right: 2px;
            top: 2px;
            width: 10px;
            height: 10px;
            background: var(--accent-light);
            border-radius: 50%;
        }


        /* 页脚区域 */
        .wake {
            background: #050508;
            padding: 5rem 0 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            display: flex;
            flex-wrap: wrap;
        }

        .wake .husk {
            flex-direction: column;
            gap: 3rem;
        }

        .wake-apex {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 3rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding-bottom: 3rem;
        }

        .wake-apex > * { min-width: 0; }

        .wake-brand {
            font-size: 1.75rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.03em;
            margin: 0 0 1rem 0;
        }

        .wake-flock {
            display: flex;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .wake-flock > * { min-width: 0; }

        .wake-chain {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .wake-chain > * { min-width: 0; }

        .wake-crest {
            font-size: 0.875rem;
            font-weight: 600;
            color: #fff;
            margin: 0 0 0.5rem 0;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .wake-wire {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color var(--transition);
        }

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

        .wake-trail {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .wake-trail > * { min-width: 0; }

        .yarn-muted {
            color: #64748b;
            font-size: 0.875rem;
            margin: 0;
        }

        /* 响应式断点 */
        @media (max-width: 1024px) {
            .surge .husk { gap: 3rem; }
        }

        @media (max-width: 768px) {
            .axon { flex-direction: column; gap: 1.25rem; padding: 1rem; }
            .chain { justify-content: center; gap: 1.5rem; width: 100%; }
            .flare { padding: 6rem 0 4rem; }
            .pulse, .surge { padding: 4rem 0; }
            .surge .husk { flex-direction: column; align-items: flex-start; }
            .surge-lens { width: 100%; padding: 1.5rem; }
            .wake-apex { flex-direction: column; }
            .wake-flock { gap: 2.5rem; width: 100%; justify-content: space-between; }
            .wake-trail { flex-direction: column; align-items: center; text-align: 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; }}