:root {
            --color-primary: #e524a1;
            --color-primary-glow: rgba(229, 36, 161, 0.25);
            --color-bg-base: #09090b;
            --color-bg-surface: #121214;
            --color-bg-elevated: #1a1a1e;
            --color-border: #27272a;
            --color-border-hover: #3f3f46;
            --color-text-peak: #ffffff;
            --color-text-echo: #a1a1aa;
            --color-text-muted: #71717a;
            --radius-base: 16px;
            --radius-inner: 12px;
            --transition: all 0.15s ease;
            --shadow-base: 0 4px 24px rgba(0, 0, 0, 0.4);
            --shadow-glow: 0 0 40px rgba(229, 36, 161, 0.1);
            --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

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

        body {
            font-family: var(--font-family);
            background-color: var(--color-bg-base);
            color: var(--color-text-echo);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
        }

        /* 文本换行规范 */
        .echo-wrap {
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all;
        }

        /* --- 导航栏复用样式 (强制结构) --- */
        .crown-matrix {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(9, 9, 11, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 4vw;
            min-width: 0;
        }

        .crest-tunnel {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            min-width: 0;
        }

        .crest-tunnel img {
            height: 28px;
            width: auto;
            display: block;
        }

        .helm-array {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            min-width: 0;
        }

        .wire-dot {
            color: var(--color-text-echo);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--transition);
            padding: 0.5rem 0;
            position: relative;
        }

        .wire-dot:hover,
        .wire-dot:focus {
            color: var(--color-text-peak);
            outline: none;
        }

        .wire-dot.active {
            color: var(--color-primary);
        }

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

        /* --- 主内容区 --- */
        .prism-cloak {
            flex: 1;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            width: 100%;
            min-width: 0;
            padding-top: 80px; /* 补偿固定导航栏 */
        }

        /* 1. Hero / 快速入门 (acquire) - fullbleed_overlay 变体 */
        .flare-hull {
            position: relative;
            padding: 6rem 4vw;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-width: 0;
            overflow: hidden;
        }

        .flare-hull::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 80vw;
            height: 80vw;
            max-width: 1000px;
            max-height: 1000px;
            background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 60%);
            z-index: -1;
            pointer-events: none;
        }

        .peak-massive {
            font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            color: var(--color-text-peak);
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            white-space: normal;
        }

        .echo-lead {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            max-width: 680px;
            margin: 0 auto;
        }

        /* 通用内容版心 */
        .tunnel-core {
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 2rem 4vw 4rem;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 4rem;
            min-width: 0;
        }

        .peak-large {
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            font-weight: 700;
            color: var(--color-text-peak);
            margin-bottom: 1rem;
            white-space: normal;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }

        .peak-medium {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--color-text-peak);
            margin-bottom: 0.75rem;
            white-space: normal;
        }

        /* 2. 第一步：正确解压与运行 (faq/aside) */
        .portal-cluster {
            background: var(--color-bg-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-base);
            padding: 3rem;
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            box-shadow: var(--shadow-base);
            min-width: 0;
            position: relative;
            overflow: hidden;
        }
        
        .portal-cluster::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(229, 36, 161, 0.03));
            pointer-events: none;
        }

        .cluster-info {
            flex: 1 1 300px;
            min-width: 0;

            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
        }

        .cluster-array {
            flex: 1.5 1 400px;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 1.5rem;
            min-width: 0;
        }

        .shard-node {
            background: var(--color-bg-elevated);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-inner);
            padding: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 1rem;
            min-width: 0;
            transition: var(--transition);
        }

        .shard-node:hover {
            border-color: var(--color-border-hover);
            transform: translateY(-2px);
        }

        .glyph-box {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(229, 36, 161, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--color-primary);
        }

        .glyph-box svg {
            width: 24px;
            height: 24px;
        }

        /* 3. 第二步：激活节点与系统代理 (steps/div) */
        .matrix-band {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 2rem;
            min-width: 0;
        }

        .matrix-band > .echo-wrap {
            max-width: 800px;
        }

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

        .shard-step {
            background: var(--color-bg-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-base);
            padding: 2.5rem 2rem;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 1.5rem;
            position: relative;
            min-width: 0;
            transition: var(--transition);
        }

        .shard-step:hover {
            border-color: var(--color-primary);
            box-shadow: var(--shadow-glow);
        }

        .step-number {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1;
            color: var(--color-bg-elevated);
            -webkit-text-stroke: 1px var(--color-border-hover);
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            user-select: none;
        }
        
        .shard-step:hover .step-number {
            color: rgba(229, 36, 161, 0.1);
            -webkit-text-stroke: 1px var(--color-primary);
        }

        /* 4. 常见问题与排错 (faq/aside) */
        .root-shard {
            border-top: 1px solid var(--color-border);
            padding-top: 4rem;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 2.5rem;
            min-width: 0;
        }

        .faq-array {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .shard-faq {
            background: var(--color-bg-surface);
            border: 1px solid transparent;
            border-radius: var(--radius-inner);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            min-width: 0;
            transition: var(--transition);
        }

        .shard-faq:hover {
            background: var(--color-bg-elevated);
            border-color: var(--color-border);
        }

        .shard-faq .peak-medium {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.75rem;
        }

        .shard-faq .peak-medium svg {
            width: 20px;
            height: 20px;
            color: var(--color-primary);
            flex-shrink: 0;
        }

        /* --- 页脚 --- */
        .sole-anchor {
            border-top: 1px solid var(--color-border);
            padding: 3rem 4vw;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            background: var(--color-bg-base);
            min-width: 0;
        }

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

        /* 响应式断点 */
        @media (max-width: 768px) {
            .crown-matrix {
                padding: 1rem 5vw;
            }
            .helm-array {
                display: none; /* 简化移动端，通常会有汉堡菜单，但这里按要求不引入外置JS组件，仅隐藏或折叠 */
            }
            .helm-array {
                display: flex;
                flex-direction: row;
                overflow-x: auto;
                width: 100%;
                padding-top: 1rem;
                gap: 1rem;
                -webkit-overflow-scrolling: touch;
            }
            .crown-matrix {
                flex-direction: column;
                align-items: flex-start;
                padding-bottom: 0;
            }
            .prism-cloak {
                padding-top: 110px;
            }
            .flare-hull {
                padding: 4rem 5vw;
            }
            .portal-cluster {
                padding: 2rem;
                flex-direction: column;
            }
            .tunnel-core {
                padding: 1rem 5vw 3rem;
                gap: 3rem;
            }
            .shard-step {
                padding: 2rem 1.5rem;
            }
        }

.nexus-crown-matrix {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--color-text-echo);
}
.nexus-crown-matrix,
.nexus-crown-matrix *,
.nexus-crown-matrix *::before,
.nexus-crown-matrix *::after {
    box-sizing: border-box;
}

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

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

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

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

.nexus-crown-matrix a.nexus-wire-dot {
    --aisite-shell-nav-padding: 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;
}

.nexus-crown-matrix a.nexus-wire-dot,
.nexus-crown-matrix a.nexus-wire-dot:hover,
.nexus-crown-matrix a.nexus-wire-dot:focus,
.nexus-crown-matrix a.nexus-wire-dot:active,
.nexus-crown-matrix a.nexus-wire-dot.active,
.nexus-crown-matrix a.nexus-wire-dot[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-crown-matrix{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(9, 9, 11, 0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 1rem 6vw;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.nexus-crown-matrix .nexus-crest-tunnel{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.nexus-crown-matrix .nexus-crest-tunnel img{
            height: 28px;
            width: auto;
            object-fit: contain;
        }

.nexus-crown-matrix .nexus-helm-array{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.nexus-crown-matrix .nexus-wire-dot{
            font-size: 0.95rem;
            font-weight: 500;
            color: #a1a1aa;
            transition: color 0.15s ease;
            position: relative;
        }

.nexus-crown-matrix .nexus-wire-dot:hover{
            color: #ffffff;
        }

.nexus-crown-matrix .nexus-wire-dot.active{
            color: #e524a1;
        }

@media (max-width: 768px){.nexus-crown-matrix .nexus-helm-array{
                display: none; 
            }

.nexus-crown-matrix{
                justify-content: center;
            }}

.nexus-crown-matrix {
    background: rgb(9, 9, 11);
    background-image: none;
}

.anchor-sole-anchor {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--color-text-echo);
}
.anchor-sole-anchor,
.anchor-sole-anchor *,
.anchor-sole-anchor *::before,
.anchor-sole-anchor *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-sole-anchor .anchor-matrix-fluid{
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 6vw;
        }

.anchor-sole-anchor .anchor-wire-dot{
            font-size: 0.95rem;
            font-weight: 500;
            color: #a1a1aa;
            transition: color 0.15s ease;
            position: relative;
        }

.anchor-sole-anchor .anchor-wire-dot:hover{
            color: #ffffff;
        }

.anchor-sole-anchor .anchor-wire-dot.active{
            color: #e524a1;
        }

.anchor-sole-anchor{
            border-top: 1px solid #27272a;
            background: #09090b;
            padding: 4rem 0 2rem;
        }

.anchor-sole-anchor .anchor-sole-split{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
            margin-bottom: 4rem;
        }

.anchor-sole-anchor .anchor-sole-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -0.02em;
        }

.anchor-sole-anchor .anchor-sole-links{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

.anchor-sole-anchor .anchor-sole-bottom{
            text-align: center;
            font-size: 0.875rem;
            color: #52525b;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

@media (max-width: 768px){.anchor-sole-anchor .anchor-sole-split{
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

.anchor-sole-anchor .anchor-sole-links{
                justify-content: center;
            }}