/* 基础变量与重置 */
        :root {
            --bg-base: #08080a;
            --bg-surface: rgba(18, 19, 24, 0.65);
            --text-primary: #ffffff;
            --text-secondary: #a1a1aa;
            --accent: #2b58d6;
            --accent-hover: #3b6bef;
            --border: rgba(255, 255, 255, 0.08);
            --radius-md: 12px;
            --radius-lg: 16px;
            --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.4);
            --shadow-deep: 0 32px 64px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
            --transition: all 0.15s ease;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--bg-base);
            color: var(--text-secondary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

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

        /* 文本约束规范 */
        .hum, 
        .apex, 
        .apex-huge, 
        .apex-large {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        
        .hum {
            word-break: keep-all;
        }

        .apex-huge, .apex-large, .apex {
            white-space: normal;
            color: var(--text-primary);
            font-weight: 700;
        }

        /* 布局壳层 */
        .cloak {
            width: 100%;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* 强制复用：导航栏样式 */
        .orbit {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            background: rgba(8, 8, 10, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            z-index: 100;
            flex-wrap: wrap;
        }

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

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

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

        .thread {
            color: var(--text-secondary);
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--transition);
            min-width: 0;
        }

        .thread:hover, .thread.active {
            color: var(--text-primary);
        }

        /* 首屏展示区变体 */
        .flare {
            padding: 12rem 5% 6rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex-wrap: wrap;
            background: radial-gradient(circle at 50% 0%, rgba(43, 88, 214, 0.15) 0%, transparent 60%);
        }

        .apex-huge {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            max-width: 900px;
            min-width: 0;
        }

        .hum-lead {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            max-width: 700px;
            margin-bottom: 3rem;
            min-width: 0;
        }

        /* 按钮语法 */
        .knot {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
        }

        .ping {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.25rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            cursor: pointer;
            min-width: 0;
        }

        .ping-primary {
            background: var(--accent);
            color: var(--text-primary);
            box-shadow: 0 4px 14px rgba(43, 88, 214, 0.4);
        }

        .ping-primary:hover, .ping-primary:focus {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(43, 88, 214, 0.6);
        }

        .ping-ghost {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border);
        }

        .ping-ghost:hover, .ping-ghost:focus {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-2px);
        }

        .mark-inline {
            width: 20px;
            height: 20px;
            margin-right: 8px;
            fill: currentColor;
        }

        /* 顶层内容块容器 */
        .zone, .beacon {
            padding: 6rem 5%;
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            max-width: 1440px;
            margin: 0 auto;
            width: 100%;
        }

        .zone-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        @media (max-width: 1024px) {
            .zone-split {
                grid-template-columns: 1fr;
            }
        }

        .zone-cloak {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            min-width: 0;
        }

        .apex-large {
            font-size: clamp(2rem, 3vw, 2.5rem);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
            min-width: 0;
        }

        .zone-cloak .hum {
            margin-bottom: 3rem;
            font-size: 1.1rem;
            min-width: 0;
        }

        /* 卡片语法 (矩阵) */
        .hive {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            flex-wrap: wrap;
            min-width: 0;
        }

        .node {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--bg-surface);
            backdrop-filter: blur(24px);
            padding: 1.5rem 2rem;
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            transition: var(--transition);
            flex-wrap: wrap;
            gap: 1rem;
            min-width: 0;
        }

        .node:hover {
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(30, 32, 40, 0.8);
        }

        .node-meta {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            flex-wrap: wrap;
            min-width: 0;
        }

        .mark-plate {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid var(--border);
            color: var(--text-primary);
        }

        .mark-plate svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .node-info {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .apex {
            font-size: 1.1rem;
            min-width: 0;
        }

        .node-info .hum {
            font-size: 0.85rem;
            margin-top: 0.25rem;
            min-width: 0;
        }

        /* 媒体视觉 */
        .lens-cloak {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-deep);
            border: 1px solid var(--border);
            display: flex;
            min-width: 0;
        }

        .lens-cloak::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
            pointer-events: none;
            z-index: 1;
        }

        .lens {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        /* 步骤组件 */
        .beacon {
            flex-direction: column;
            align-items: center;
            text-align: center;
            background: linear-gradient(to bottom, transparent, rgba(18, 19, 24, 0.3));
            border-top: 1px solid rgba(255, 255, 255, 0.03);
        }

        .beacon .hum-lead {
            margin-bottom: 4rem;
        }

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

        .packet {
            background: transparent;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            position: relative;
            border-radius: var(--radius-md);
            transition: var(--transition);
            min-width: 0;
        }

        .packet:hover {
            background: rgba(255, 255, 255, 0.02);
            box-shadow: inset 0 0 0 1px var(--border);
        }

        .spark {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(43, 88, 214, 0.1);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(43, 88, 214, 0.2);
        }

        .packet .apex {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        /* 页脚 */
        .anchor {
            padding: 4rem 5% 2rem;
            border-top: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            background: #050507;
            flex-wrap: wrap;
        }

        .anchor-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.02em;
            min-width: 0;
        }

        .sole {
            font-size: 0.85rem;
            color: rgba(161, 161, 170, 0.6);
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
            min-width: 0;
        }

        .sole a {
            transition: var(--transition);
        }

        .sole a:hover {
            color: var(--text-secondary);
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .orbit {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem;
            }
            .loom {
                width: 100%;
                justify-content: center;
                gap: 1rem;
            }
            .flare {
                padding-top: 10rem;
            }
            .node {
                flex-direction: column;
                align-items: flex-start;
            }
            .ping {
                width: 100%;
            }
        }

.nexus-orbit {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
}
.nexus-orbit,
.nexus-orbit *,
.nexus-orbit *::before,
.nexus-orbit *::after {
    box-sizing: border-box;
}

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

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

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

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

.nexus-orbit a.nexus-thread {
    --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-orbit a.nexus-thread,
.nexus-orbit a.nexus-thread:hover,
.nexus-orbit a.nexus-thread:focus,
.nexus-orbit a.nexus-thread:active,
.nexus-orbit a.nexus-thread.active,
.nexus-orbit a.nexus-thread[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-orbit{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 4%;
            background: rgba(13, 13, 18, 0.75);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

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

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

.nexus-orbit .nexus-loom{
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            align-items: center;
            min-width: 0;
        }

.nexus-orbit .nexus-thread{
            color: #a0a0a5;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9375rem;
            transition: color 0.15s ease;
            word-break: break-word;
            overflow-wrap: break-word;
        }

.nexus-orbit .nexus-thread:hover, .nexus-orbit .nexus-thread.active{
            color: #ffffff;
        }

.nexus-orbit .nexus-thread.active{
            position: relative;
        }

.nexus-orbit .nexus-thread.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #2b58d6;
            border-radius: 2px;
        }

@media (max-width: 768px){.nexus-orbit{
                padding: 1rem 5%;
                justify-content: center;
                gap: 1.5rem;
            }

.nexus-orbit .nexus-loom{
                width: 100%;
                justify-content: center;
                gap: 1.25rem;
            }}

.nexus-orbit {
    background: rgb(13, 13, 18);
    background-image: none;
}

.anchor-sole {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
}
.anchor-sole,
.anchor-sole *,
.anchor-sole *::before,
.anchor-sole *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-sole{
            background: #050507;
            padding: 4rem 5%;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

.anchor-sole .anchor-echo-knot{
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            width: 100%;
        }

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

.anchor-sole .anchor-echo-hum{
            color: #606065;
            font-size: 0.875rem;
            word-break: break-word;
        }

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