/* 核心变量与重置 */
        :root {
            --bg-base: #06080d;
            --bg-elevated: #0f131d;
            --bg-surface: #171c28;
            --accent-core: #42e7f2;
            --accent-dim: rgba(66, 231, 242, 0.15);
            --accent-glow: rgba(66, 231, 242, 0.4);
            --text-loud: #f8fafc;
            --text-base: #cbd5e1;
            --text-quiet: #64748b;
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-highlight: rgba(66, 231, 242, 0.2);
            --radius-soft: 16px;
            --radius-pill: 99px;
            --fluid-max: 1240px;
            --spacing-gap: 2rem;
            --anim-snappy: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        * {
            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-base);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* 强制排版规则 */
        .echo {
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all;
        }
        
        .shout {
            white-space: normal;
            color: var(--text-loud);
            font-weight: 700;
            line-height: 1.2;
        }

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

        a {
            text-decoration: none;
            color: inherit;
            transition: all var(--anim-snappy);
        }

        /* 顶部架构 (Header) */
        .apex {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(6, 8, 13, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-subtle);
        }

        .orbit {
            max-width: var(--fluid-max);
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

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

        .glyph img {
            height: 32px;
            filter: drop-shadow(0 0 8px var(--accent-dim));
        }

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

        .wire {
            color: var(--text-base);
            font-size: 0.95rem;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
        }

        .wire:hover,
        .wire.active {
            color: var(--text-loud);
        }

        .wire::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-core);
            transition: width var(--anim-snappy);
            box-shadow: 0 0 8px var(--accent-glow);
        }

        .wire:hover::after,
        .wire.active::after {
            width: 100%;
        }

        /* 主舞台 (Hero) - fullbleed_overlay */
        .flare {
            position: relative;
            width: 100%;
            min-height: 95vh;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            padding: 6rem 2rem 4rem;
            /* 使用纯CSS构建极客风暗夜矩阵背景以替代缺失的真实图片，满足fullbleed要求 */
            background: 
                radial-gradient(circle at 50% 40%, var(--accent-dim) 0%, transparent 60%),
                linear-gradient(rgba(6, 8, 13, 0.3) 1px, transparent 1px),
                linear-gradient(90deg, rgba(6, 8, 13, 0.3) 1px, transparent 1px),
                var(--bg-elevated);
            background-size: 100% 100%, 40px 40px, 40px 40px;
            background-position: center;
        }

        .flare::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 0%, var(--bg-base) 100%);
            z-index: 1;
        }

        .flare-shell {
            position: relative;
            z-index: 2;
            max-width: 860px;
            min-width: 0;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .flare-shout {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 24px rgba(0,0,0,0.5);
        }

        .flare-shout span {
            color: var(--accent-core);
            position: relative;
            display: inline-block;
        }

        .flare .echo {
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            color: var(--text-base);
            max-width: 720px;
            margin-bottom: 3rem;
            line-height: 1.8;
        }

        .ping {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            background: var(--accent-core);
            color: var(--bg-base);
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: var(--radius-pill);
            transition: all var(--anim-snappy);
            box-shadow: 0 0 20px rgba(66, 231, 242, 0.2);
            min-width: 0;
        }

        .ping:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px var(--accent-glow);
            background: #fff;
        }

        /* 核心能力区 (Capability) */
        .hive {
            padding: 8rem 2rem;
            background: var(--bg-base);
            position: relative;
        }

        .hive-shell {
            max-width: var(--fluid-max);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
        }

        .hive-knot {
            flex: 1;
            min-width: 320px;
        }

        .lens-shell {
            flex: 1.2;
            min-width: 320px;
            position: relative;
        }

        .lens-shell::after {
            content: '';
            position: absolute;
            inset: -20px;
            border-radius: 24px;
            background: linear-gradient(135deg, var(--border-highlight), transparent);
            z-index: 0;
            opacity: 0.5;
        }

        .lens {
            position: relative;
            z-index: 1;
            border-radius: var(--radius-soft);
            box-shadow: 0 24px 50px rgba(0,0,0,0.5);
            border: 1px solid var(--border-subtle);
            width: 100%;
        }

        .hive-shout {
            font-size: clamp(2rem, 3vw, 2.75rem);
            margin-bottom: 1.5rem;
        }

        .hive .echo {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            color: var(--text-quiet);
        }

        .pod-knot {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            min-width: 0;
        }

        .pod {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            padding: 1.5rem;
            background: var(--bg-elevated);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-soft);
            transition: transform var(--anim-snappy), border-color var(--anim-snappy);
            min-width: 0;
        }

        .pod:hover {
            transform: translateX(8px);
            border-color: var(--border-highlight);
        }

        .rune {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(66, 231, 242, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-core);
            flex-shrink: 0;
            border: 1px solid var(--border-highlight);
        }

        .pod-shell {
            flex: 1;
            min-width: 0;
        }

        .pod-shout {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--text-loud);
        }

        /* 生态扩展区 (Ecosystem / Acquire) */
        .mesh {
            padding: 8rem 2rem;
            background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-base) 100%);
            position: relative;
            overflow: hidden;
        }

        /* 反向布局 */
        .mesh .hive-shell {
            flex-direction: row-reverse;
        }

        .belt-knot {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
            min-width: 0;
            width: 100%;
        }

        .belt-pod {
            background: var(--bg-surface);
            padding: 2rem;
            border-radius: var(--radius-soft);
            border: 1px solid var(--border-subtle);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

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

        .belt-pod:hover::before {
            opacity: 1;
        }

        .belt-shout {
            font-size: 1.25rem;
            color: var(--text-loud);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .belt-echo {
            color: var(--text-quiet);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .spark-wire {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--accent-core);
            font-weight: 500;
            font-size: 0.95rem;
            margin-top: auto;
        }

        .spark-wire svg {
            transition: transform var(--anim-snappy);
        }

        .spark-wire:hover svg {
            transform: translateX(4px);
        }

        /* 行动召唤区 (CTA) */
        .nexus {
            padding: 6rem 2rem;
            background: var(--bg-base);
        }

        .nexus-shell {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            background: var(--bg-elevated);
            padding: 4rem 2rem;
            border-radius: 24px;
            border: 1px solid var(--border-highlight);
            box-shadow: 0 0 60px rgba(66, 231, 242, 0.05);
            position: relative;
            overflow: hidden;
        }

        .nexus-shell::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, var(--accent-dim) 0%, transparent 50%);
            opacity: 0.5;
            pointer-events: none;
        }

        .nexus-shout {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .nexus-echo {
            font-size: 1.1rem;
            color: var(--text-base);
            margin-bottom: 2.5rem;
            position: relative;
            z-index: 2;
        }

        /* 页脚 (Footer) */
        .base {
            border-top: 1px solid var(--border-subtle);
            padding: 4rem 2rem 2rem;
            background: var(--bg-base);
        }

        .roots-sole {
            max-width: var(--fluid-max);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .base-shout {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--text-loud);
        }

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

        /* 响应式断点 */
        @media (max-width: 1024px) {
            .hive-shell {
                flex-direction: column !important;
                gap: 3rem;
            }
            .lens-shell, .hive-knot {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .synap-stream {
                display: none; /* 移动端简化，此处仅作基础适配，实际项目中可加汉堡菜单 */
            }
            .flare {
                padding-top: 8rem;
            }
            .hive, .mesh, .nexus {
                padding: 4rem 1.5rem;
            }
            .belt-knot {
                grid-template-columns: 1fr;
            }
            .roots-sole {
                flex-direction: column;
                text-align: center;
            }
        }

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

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

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

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

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

.orbit-apex a.orbit-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;
}

.orbit-apex a.orbit-wire,
.orbit-apex a.orbit-wire:hover,
.orbit-apex a.orbit-wire:focus,
.orbit-apex a.orbit-wire:active,
.orbit-apex a.orbit-wire.active,
.orbit-apex a.orbit-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);
}

.orbit-apex{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(6, 8, 13, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

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

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

.orbit-apex .orbit-glyph img{
            height: 32px;
            filter: drop-shadow(0 0 8px rgba(66, 231, 242, 0.15));
        }

.orbit-apex .orbit-synap-stream{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            min-width: 0;
            align-items: center;
        }

.orbit-apex .orbit-wire{
            color: #cbd5e1;
            font-size: 0.95rem;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
        }

.orbit-apex .orbit-wire:hover, .orbit-apex .orbit-wire.active{
            color: #f8fafc;
        }

.orbit-apex .orbit-wire::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #42e7f2;
            transition: width 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
            box-shadow: 0 0 8px rgba(66, 231, 242, 0.4);
        }

.orbit-apex .orbit-wire:hover::after, .orbit-apex .orbit-wire.active::after{
            width: 100%;
        }

@media (max-width: 768px){.orbit-apex .orbit-synap-stream{
                display: none; 
            }}

.orbit-apex {
    background: rgb(6, 8, 13);
    background-image: none;
}

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

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

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

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

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

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

.base-base{
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 4rem 2rem 2rem;
            background: #06080d;
        }

.base-base .base-roots-sole{
            max-width: 1240px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

.base-base .base-base-shout{
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: #f8fafc;
        }

.base-base .base-base-echo{
            color: #64748b;
            font-size: 0.9rem;
        }

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