:root {
            /* 品牌色彩系统 */
            --color-primary: #806ce0;
            --color-primary-light: #9a88eb;
            --color-primary-dark: #634fc2;
            --color-accent: #f3f0ff;
            
            /* 中性色系统 */
            --color-bg: #fcfcfd;
            --color-surface: #ffffff;
            --color-text-crest: #11111a;
            --color-text-rune: #474759;
            --color-text-muted: #73738c;
            
            /* 空间与结构 */
            --space-xxs: 0.5rem;
            --space-xs: 1rem;
            --space-sm: 1.5rem;
            --space-md: 2.5rem;
            --space-lg: 4rem;
            --space-xl: 6rem;
            --space-xxl: 8rem;
            
            --radius-sm: 9px;
            --radius-md: 15px;
            --radius-lg: 24px;
            
            /* 质感与阴影 (丰富层次) */
            --shadow-sm: 0 2px 8px rgba(128, 108, 224, 0.04), 0 1px 2px rgba(17, 17, 26, 0.02);
            --shadow-md: 0 8px 24px rgba(128, 108, 224, 0.08), 0 2px 8px rgba(17, 17, 26, 0.04);
            --shadow-lg: 0 24px 48px rgba(128, 108, 224, 0.12), 0 12px 24px rgba(17, 17, 26, 0.04);
            
            /* 动画 */
            --transition: all 0.15s ease;
            
            /* 容器宽度 */
            --width-max: 1280px;
            --width-reading: 800px;
        }

        /* 基础重置 */
        *, *::before, *::after {
            box-sizing: border-box;
            min-width: 0; /* Flex子项防溢出 */
        }

        body {
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--color-bg);
            color: var(--color-text-rune);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

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

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

        /* 强制文本换行 */
        h1, h2, h3, h4, p, span, a {
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }
        
        p {
            word-break: keep-all;
            margin-top: 0;
            margin-bottom: var(--space-sm);
        }

        /* 布局容器 */
        .husk-master {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* 导航区域 (Banner) */
        .peak {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(252, 252, 253, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(128, 108, 224, 0.1);
            z-index: 1000;
            transition: var(--transition);
        }

        .nexus {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: var(--width-max);
            margin: 0 auto;
            padding: var(--space-xs) var(--space-md);
        }

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

        .mesh {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: var(--space-sm);
        }

        .path {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text-rune);
            padding: var(--space-xxs) var(--space-xs);
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }

        .path:hover, .path.active {
            color: var(--color-primary);
            background-color: var(--color-accent);
        }

        .radar {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-xs);
        }

        /* 按钮/动作组件 */
        .ping {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
            font-weight: 600;
            color: var(--color-surface);
            background-color: var(--color-primary);
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            cursor: pointer;
            border: 2px solid transparent;
        }

        .ping:hover {
            background-color: var(--color-primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .ping-alt {
            background-color: transparent;
            color: var(--color-text-crest);
            border-color: rgba(17, 17, 26, 0.1);
            box-shadow: none;
        }

        .ping-alt:hover {
            background-color: rgba(17, 17, 26, 0.03);
            border-color: rgba(17, 17, 26, 0.2);
            transform: translateY(-2px);
        }

        /* 主内容区 */
        .tunnel-tunnel {
            flex: 1;
            padding-top: 80px; /* 抵消固定导航 */
            display: flex;
            flex-direction: column;
        }

        /* 1. Hero区 (Intro) - text_dominant原型 */
        .vortex {
            position: relative;
            padding: var(--space-xxl) var(--space-md) var(--space-xl);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: radial-gradient(circle at top center, var(--color-accent) 0%, var(--color-bg) 70%);
            overflow: hidden;
        }

        .vortex::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 50vw;
            height: 50vw;
            background: radial-gradient(circle, rgba(128,108,224,0.08) 0%, transparent 60%);
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
        }

        .vortex-husk {
            position: relative;
            z-index: 1;
            max-width: 900px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .vortex-crest {
            font-size: clamp(3rem, 7vw, 5.5rem);
            font-weight: 800;
            line-height: 1.1;
            color: var(--color-text-crest);
            letter-spacing: -0.03em;
            margin-bottom: var(--space-md);
            text-wrap: balance;
        }

        .vortex-crest span {
            background: linear-gradient(135deg, var(--color-primary) 0%, #4facfe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .vortex-rune {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: var(--color-text-muted);
            max-width: var(--width-reading);
            margin-bottom: var(--space-lg);
            line-height: 1.7;
        }

        .vortex-band {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-sm);
            justify-content: center;
        }

        /* 通用区块结构 */
        .zone, .husk, .cloak {
            padding: var(--space-xl) var(--space-md);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
        }

        .husk-inner {
            max-width: var(--width-max);
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-lg);
            align-items: center;
        }

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

        .rune-lg {
            font-size: 1.125rem;
            color: var(--color-text-muted);
            margin-bottom: var(--space-md);
        }

        /* 2. Capability 区块 (图文左右) */
        .zone {
            background-color: var(--color-surface);
        }

        .zone-rune {
            flex: 1 1 400px;
            display: flex;
            flex-direction: column;
        }

        .zone-lens {
            flex: 1 1 500px;
            position: relative;
        }

        .lens-frame {
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            background: var(--color-bg);
            border: 1px solid rgba(128, 108, 224, 0.08);
            transform: translateZ(0); /* 硬件加速防模糊 */
        }

        .lens-frame img {
            width: 100%;
            height: auto;
            transition: var(--transition);
        }

        .lens-frame:hover img {
            transform: scale(1.02);
        }

        /* 3. Detail 区块 (图文反向交叉) */
        .husk {
            background-color: var(--color-bg);
            position: relative;
        }
        
        .husk .husk-inner {
            flex-direction: row-reverse;
        }

        /* 列表项徽章设计 */
        .wire-cluster {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
            margin-top: var(--space-md);
        }

        .wire {
            display: flex;
            align-items: flex-start;
            gap: var(--space-sm);
        }

        .glyph-seal {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--color-accent) 0%, #ffffff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(128, 108, 224, 0.1);
        }

        .wire-husk .crest-sm {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--color-text-crest);
            margin-bottom: 0.25rem;
        }

        .wire-husk .rune-sm {
            font-size: 0.95rem;
            color: var(--color-text-muted);
            margin: 0;
        }

        /* 4. Comparison 区块 (网格卡片) */
        .cluster-article {
            padding: var(--space-xl) var(--space-md);
            background-color: var(--color-surface);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .cluster-peak {
            text-align: center;
            max-width: 700px;
            margin-bottom: var(--space-xl);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .vault-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: var(--space-lg);
            max-width: var(--width-max);
            width: 100%;
        }

        .vault {
            background: var(--color-bg);
            border-radius: var(--radius-md);
            padding: var(--space-md);
            border: 1px solid rgba(17, 17, 26, 0.04);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .vault:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: rgba(128, 108, 224, 0.2);
            background: var(--color-surface);
        }

        .vault .glyph-seal {
            margin-bottom: var(--space-sm);
            width: 56px;
            height: 56px;
        }

        .vault-crest {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--color-text-crest);
            margin-bottom: var(--space-xs);
        }

        .vault-rune {
            font-size: 0.95rem;
            color: var(--color-text-muted);
            flex: 1;
        }

        /* 5. CTA 区块 */
        .cloak {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
            color: var(--color-surface);
            text-align: center;
            padding: var(--space-xxl) var(--space-md);
            position: relative;
            overflow: hidden;
        }

        .cloak::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M10 10h10v10H10z" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
            pointer-events: none;
        }

        .cloak-husk {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .cloak .crest-lg {
            color: var(--color-surface);
            margin-bottom: var(--space-sm);
        }

        .cloak .rune-lg {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: var(--space-lg);
        }

        .cloak .ping {
            background-color: var(--color-surface);
            color: var(--color-primary-dark);
        }

        .cloak .ping:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
            background-color: var(--color-bg);
        }

        /* 页脚区域 */
        .core {
            background-color: var(--color-bg);
            border-top: 1px solid rgba(17, 17, 26, 0.05);
            padding: var(--space-lg) var(--space-md) var(--space-md);
            display: flex;
            justify-content: center;
        }

        .base-husk {
            max-width: var(--width-max);
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: var(--space-md);
        }

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

        .base-mesh {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-md);
        }

        .anchor-path {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            transition: var(--transition);
        }

        .anchor-path:hover {
            color: var(--color-primary);
        }

        /* 响应式调整 */
        @media (max-width: 1024px) {
            .husk-inner {
                flex-direction: column;
            }
            .husk .husk-inner {
                flex-direction: column;
            }
            .zone-rune, .zone-lens {
                flex: 1 1 100%;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .peak {
                padding: 0;
            }
            .mesh {
                display: none; /* 移动端简化，可由JS接管汉堡菜单 */
            }
            .vortex {
                padding: var(--space-xl) var(--space-xs) var(--space-lg);
            }
            .vault-grid {
                grid-template-columns: 1fr;
            }
            .base-husk {
                flex-direction: column;
                text-align: center;
            }
            .base-mesh {
                justify-content: center;
            }
        }

.nexus-peak {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text-rune);
}
.nexus-peak,
.nexus-peak *,
.nexus-peak *::before,
.nexus-peak *::after {
    box-sizing: border-box;
}

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

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

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

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

.nexus-peak a.nexus-path {
    --aisite-shell-nav-padding: 0.5rem 1rem;
    --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;
}

.nexus-peak a.nexus-path,
.nexus-peak a.nexus-path:hover,
.nexus-peak a.nexus-path:focus,
.nexus-peak a.nexus-path:active,
.nexus-peak a.nexus-path.active,
.nexus-peak a.nexus-path[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);
}

.nexus-peak{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(252, 252, 253, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(128, 108, 224, 0.1);
            z-index: 1000;
            transition: all 0.15s ease;
        }

.nexus-peak .nexus-nexus{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 2.5rem;
        }

.nexus-peak .nexus-sigil img{
            height: 32px;
            width: auto;
        }

.nexus-peak .nexus-mesh{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.5rem;
        }

.nexus-peak .nexus-path{
            font-size: 0.95rem;
            font-weight: 500;
            color: #474759;
            padding: 0.5rem 1rem;
            border-radius: 9px;
            transition: all 0.15s ease;
        }

.nexus-peak .nexus-path:hover, .nexus-peak .nexus-path.active{
            color: #806ce0;
            background-color: #f3f0ff;
        }

.nexus-peak .nexus-radar{
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

.nexus-peak .nexus-ping{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            background-color: #806ce0;
            border-radius: 9px;
            box-shadow: 0 2px 8px rgba(128, 108, 224, 0.04), 0 1px 2px rgba(17, 17, 26, 0.02);
            transition: all 0.15s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }

.nexus-peak .nexus-ping:hover{
            background-color: #634fc2;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(128, 108, 224, 0.08), 0 2px 8px rgba(17, 17, 26, 0.04);
        }

@media (max-width: 768px){.nexus-peak{
                padding: 0;
            }

.nexus-peak .nexus-mesh{
                display: none; 
            }}

.nexus-peak {
    background: rgb(252, 252, 253);
    background-image: none;
}

.anchor-husk-master {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text-rune);
}
.anchor-husk-master,
.anchor-husk-master *,
.anchor-husk-master *::before,
.anchor-husk-master *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-husk-master{
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            overflow-x: hidden;
        }

.anchor-husk-master .anchor-peak{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(252, 252, 253, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(128, 108, 224, 0.1);
            z-index: 1000;
            transition: all 0.15s ease;
        }

.anchor-husk-master .anchor-nexus{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 2.5rem;
        }

.anchor-husk-master .anchor-sigil img{
            height: 32px;
            width: auto;
        }

.anchor-husk-master .anchor-mesh{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.5rem;
        }

.anchor-husk-master .anchor-path-2{
            font-size: 0.95rem;
            font-weight: 500;
            color: #474759;
            padding: 0.5rem 1rem;
            border-radius: 9px;
            transition: all 0.15s ease;
        }

.anchor-husk-master .anchor-path-2:hover, .anchor-husk-master .anchor-path-2.active{
            color: #806ce0;
            background-color: #f3f0ff;
        }

.anchor-husk-master .anchor-radar{
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

.anchor-husk-master .anchor-ping{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            background-color: #806ce0;
            border-radius: 9px;
            box-shadow: 0 2px 8px rgba(128, 108, 224, 0.04), 0 1px 2px rgba(17, 17, 26, 0.02);
            transition: all 0.15s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }

.anchor-husk-master .anchor-ping:hover{
            background-color: #634fc2;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(128, 108, 224, 0.08), 0 2px 8px rgba(17, 17, 26, 0.04);
        }

.anchor-husk-master .anchor-ping-alt{
            background-color: transparent;
            color: #11111a;
            border-color: rgba(17, 17, 26, 0.1);
            box-shadow: none;
        }

.anchor-husk-master .anchor-ping-alt:hover{
            background-color: rgba(17, 17, 26, 0.03);
            border-color: rgba(17, 17, 26, 0.2);
            transform: translateY(-2px);
        }

.anchor-husk-master .anchor-tunnel-tunnel{
            flex: 1;
            padding-top: 80px; 
            display: flex;
            flex-direction: column;
        }

.anchor-husk-master .anchor-vortex{
            position: relative;
            padding: 8rem 2.5rem 6rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: radial-gradient(circle at top center, #f3f0ff 0%, #fcfcfd 70%);
            overflow: hidden;
        }

.anchor-husk-master .anchor-vortex::before{
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 50vw;
            height: 50vw;
            background: radial-gradient(circle, rgba(128,108,224,0.08) 0%, transparent 60%);
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
        }

.anchor-husk-master .anchor-vortex-husk{
            position: relative;
            z-index: 1;
            max-width: 900px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

.anchor-husk-master .anchor-vortex-crest{
            font-size: clamp(3rem, 7vw, 5.5rem);
            font-weight: 800;
            line-height: 1.1;
            color: #11111a;
            letter-spacing: -0.03em;
            margin-bottom: 2.5rem;
            text-wrap: balance;
        }

.anchor-husk-master .anchor-vortex-crest span{
            background: linear-gradient(135deg, #806ce0 0%, #4facfe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

.anchor-husk-master .anchor-vortex-rune{
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: #73738c;
            max-width: 800px;
            margin-bottom: 4rem;
            line-height: 1.7;
        }

.anchor-husk-master .anchor-vortex-band{
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
        }

.anchor-husk-master .anchor-zone, .anchor-husk-master .anchor-husk, .anchor-husk-master .anchor-cloak{
            padding: 6rem 2.5rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
        }

.anchor-husk-master .anchor-husk-inner{
            max-width: 1280px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
        }

.anchor-husk-master .anchor-crest-lg{
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: #11111a;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

.anchor-husk-master .anchor-rune-lg{
            font-size: 1.125rem;
            color: #73738c;
            margin-bottom: 2.5rem;
        }

.anchor-husk-master .anchor-zone{
            background-color: #ffffff;
        }

.anchor-husk-master .anchor-zone-rune{
            flex: 1 1 400px;
            display: flex;
            flex-direction: column;
        }

.anchor-husk-master .anchor-zone-lens{
            flex: 1 1 500px;
            position: relative;
        }

.anchor-husk-master .anchor-lens-frame{
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 24px 48px rgba(128, 108, 224, 0.12), 0 12px 24px rgba(17, 17, 26, 0.04);
            background: #fcfcfd;
            border: 1px solid rgba(128, 108, 224, 0.08);
            transform: translateZ(0); 
        }

.anchor-husk-master .anchor-lens-frame img{
            width: 100%;
            height: auto;
            transition: all 0.15s ease;
        }

.anchor-husk-master .anchor-lens-frame:hover img{
            transform: scale(1.02);
        }

.anchor-husk-master .anchor-husk{
            background-color: #fcfcfd;
            position: relative;
        }

.anchor-husk-master .anchor-husk .anchor-husk-inner{
            flex-direction: row-reverse;
        }

.anchor-husk-master .anchor-wire-cluster{
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

.anchor-husk-master .anchor-wire{
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }

.anchor-husk-master .anchor-glyph-seal{
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 9px;
            background: linear-gradient(135deg, #f3f0ff 0%, #ffffff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #806ce0;
            box-shadow: 0 2px 8px rgba(128, 108, 224, 0.04), 0 1px 2px rgba(17, 17, 26, 0.02);
            border: 1px solid rgba(128, 108, 224, 0.1);
        }

.anchor-husk-master .anchor-wire-husk .anchor-crest-sm{
            font-size: 1.1rem;
            font-weight: 600;
            color: #11111a;
            margin-bottom: 0.25rem;
        }

.anchor-husk-master .anchor-wire-husk .anchor-rune-sm{
            font-size: 0.95rem;
            color: #73738c;
            margin: 0;
        }

.anchor-husk-master .anchor-cluster-article{
            padding: 6rem 2.5rem;
            background-color: #ffffff;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

.anchor-husk-master .anchor-cluster-peak{
            text-align: center;
            max-width: 700px;
            margin-bottom: 6rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

.anchor-husk-master .anchor-vault-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 4rem;
            max-width: 1280px;
            width: 100%;
        }

.anchor-husk-master .anchor-vault{
            background: #fcfcfd;
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid rgba(17, 17, 26, 0.04);
            transition: all 0.15s ease;
            display: flex;
            flex-direction: column;
        }

.anchor-husk-master .anchor-vault:hover{
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(128, 108, 224, 0.08), 0 2px 8px rgba(17, 17, 26, 0.04);
            border-color: rgba(128, 108, 224, 0.2);
            background: #ffffff;
        }

.anchor-husk-master .anchor-vault .anchor-glyph-seal{
            margin-bottom: 1.5rem;
            width: 56px;
            height: 56px;
        }

.anchor-husk-master .anchor-vault-crest{
            font-size: 1.25rem;
            font-weight: 700;
            color: #11111a;
            margin-bottom: 1rem;
        }

.anchor-husk-master .anchor-vault-rune{
            font-size: 0.95rem;
            color: #73738c;
            flex: 1;
        }

.anchor-husk-master .anchor-cloak{
            background: linear-gradient(135deg, #806ce0 0%, #634fc2 100%);
            color: #ffffff;
            text-align: center;
            padding: 8rem 2.5rem;
            position: relative;
            overflow: hidden;
        }

.anchor-husk-master .anchor-cloak::after{
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M10 10h10v10H10z" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
            pointer-events: none;
        }

.anchor-husk-master .anchor-cloak-husk{
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

.anchor-husk-master .anchor-cloak .anchor-crest-lg{
            color: #ffffff;
            margin-bottom: 1.5rem;
        }

.anchor-husk-master .anchor-cloak .anchor-rune-lg{
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 4rem;
        }

.anchor-husk-master .anchor-cloak .anchor-ping{
            background-color: #ffffff;
            color: #634fc2;
        }

.anchor-husk-master .anchor-cloak .anchor-ping:hover{
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
            background-color: #fcfcfd;
        }

.anchor-husk-master .anchor-core{
            background-color: #fcfcfd;
            border-top: 1px solid rgba(17, 17, 26, 0.05);
            padding: 4rem 2.5rem 2.5rem;
            display: flex;
            justify-content: center;
        }

.anchor-husk-master .anchor-base-husk{
            max-width: 1280px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2.5rem;
        }

.anchor-husk-master .anchor-anchor-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #11111a;
            letter-spacing: -0.02em;
        }

.anchor-husk-master .anchor-base-mesh{
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
        }

.anchor-husk-master .anchor-anchor-path{
            font-size: 0.9rem;
            color: #73738c;
            transition: all 0.15s ease;
        }

.anchor-husk-master .anchor-anchor-path:hover{
            color: #806ce0;
        }

@media (max-width: 1024px){.anchor-husk-master .anchor-husk-inner{
                flex-direction: column;
            }

.anchor-husk-master .anchor-husk .anchor-husk-inner{
                flex-direction: column;
            }

.anchor-husk-master .anchor-zone-rune, .anchor-husk-master .anchor-zone-lens{
                flex: 1 1 100%;
                width: 100%;
            }}

@media (max-width: 768px){.anchor-husk-master .anchor-peak{
                padding: 0;
            }

.anchor-husk-master .anchor-mesh{
                display: none; 
            }

.anchor-husk-master .anchor-vortex{
                padding: 6rem 1rem 4rem;
            }

.anchor-husk-master .anchor-vault-grid{
                grid-template-columns: 1fr;
            }

.anchor-husk-master .anchor-base-husk{
                flex-direction: column;
                text-align: center;
            }

.anchor-husk-master .anchor-base-mesh{
                justify-content: center;
            }}