: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;
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-focus: rgba(158, 73, 215, 0.4);
            --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
            --font-mono: 'Fira Code', ui-monospace, SFMono-Regular, monospace;
            --shadow-sm: 0 4px 12px rgba(0,0,0,0.3);
            --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
            --shadow-glow: 0 0 30px rgba(158, 73, 215, 0.15);
            --transition: all 0.25s ease;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

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

        /* Typography */
        .crest-mega {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            white-space: normal;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .crest-prime {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            white-space: normal;
            margin-bottom: 1rem;
            color: var(--text-main);
        }

        .crest-node {
            font-size: 1.25rem;
            font-weight: 600;
            line-height: 1.4;
            white-space: normal;
            margin-bottom: 0.75rem;
            color: var(--text-main);
        }

        .yarn {
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all;
            color: var(--text-muted);
        }

        .yarn-lead {
            font-size: clamp(1.125rem, 2vw, 1.25rem);
            line-height: 1.8;
            max-width: 680px;
            margin: 0 auto 2.5rem;
        }

        /* Layout & Containers */
        .husk-global {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .realm-mesh {
            flex: 1;
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        /* Navigation (Reused Structure) */
        .apex {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 11, 16, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-subtle);
            width: 100%;
        }

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

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

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

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

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

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

        .wire.active {
            color: var(--accent-light);
            text-shadow: 0 0 12px var(--accent-glow);
        }

        /* Hero Area (Article) */
        .flare {
            position: relative;
            width: 100%;
            padding: 8rem 2rem 6rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            text-align: center;
            min-width: 0;
            background: radial-gradient(ellipse 60% 50% at 50% 0%, var(--accent-glow) 0%, transparent 100%);
            border-bottom: 1px solid var(--border-subtle);
        }

        .flare-husk {
            max-width: 1000px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 0;
            z-index: 2;
        }

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

        .spark:hover,
        .spark:focus {
            transform: translateY(-2px);
            box-shadow: 0 6px 32px rgba(158, 73, 215, 0.4);
            background: var(--accent-light);
            outline: none;
        }

        /* Capabilities (Article) */
        .mesh {
            width: 100%;
            padding: 6rem 2rem;
            background: var(--bg-base);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            min-width: 0;
        }

        .mesh-husk {
            max-width: 1200px;
            width: 100%;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .mesh-apex {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

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

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

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

        .shard:hover,
        .shard:focus-within {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md), var(--shadow-glow);
            border-color: var(--border-focus);
        }

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

        .rune-husk {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--bg-elevated);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            border: 1px solid var(--border-subtle);
            color: var(--accent-light);
        }

        /* Tutorial Steps (Section) */
        .hive {
            width: 100%;
            padding: 6rem 2rem;
            background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-surface) 100%);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            min-width: 0;
            border-top: 1px solid var(--border-subtle);
        }

        .hive-husk {
            max-width: 1200px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
            min-width: 0;
        }

        .hive-yarn {
            flex: 1 1 400px;
            min-width: 0;
            display: flex;
            flex-direction: column;
        }

        .flock-steps {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .bead-step {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            min-width: 0;
        }

        .bead-num {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(158, 73, 215, 0.15);
            color: var(--accent-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            border: 1px solid var(--border-focus);
        }

        .hive-lens {
            flex: 1 1 500px;
            min-width: 0;
            background: #050508;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-subtle);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .lens-apex {
            display: flex;
            align-items: center;
            padding: 1rem;
            background: var(--bg-elevated);
            border-bottom: 1px solid var(--border-subtle);
        }

        .lens-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #4b5563;
            margin-right: 8px;
        }

        .lens-dot:nth-child(1) { background: #ef4444; }
        .lens-dot:nth-child(2) { background: #eab308; }
        .lens-dot:nth-child(3) { background: #22c55e; }

        .lens-tape {
            margin-left: 1rem;
            color: var(--text-muted);
            font-family: var(--font-mono);
            font-size: 0.85rem;
        }

        .lens-code {
            padding: 1.5rem;
            font-family: var(--font-mono);
            font-size: 0.9rem;
            line-height: 1.6;
            color: #e2e8f0;
            overflow-x: auto;
            white-space: pre;
        }

        .code-keyword { color: #c678dd; }
        .code-string { color: #98c379; }
        .code-func { color: #61afef; }
        .code-comment { color: #5c6370; font-style: italic; }

        /* Footer */
        .wake {
            background: var(--bg-base);
            border-top: 1px solid var(--border-subtle);
            padding: 4rem 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
            min-width: 0;
        }

        .wake-husk {
            max-width: 1200px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            min-width: 0;
        }

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

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

        /* Responsive */
        @media (max-width: 768px) {
            .axon {
                flex-direction: column;
                gap: 1.5rem;
            }
            .chain {
                justify-content: center;
            }
            .flare {
                padding: 6rem 1.5rem 4rem;
            }
            .mesh, .hive {
                padding: 4rem 1.5rem;
            }
            .hive-husk {
                gap: 3rem;
            }
            .flock-grid {
                grid-template-columns: 1fr;
            }
        }

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