/* 基础样式重置与排版系统 */
        html, body {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #334155;
            background-color: #ffffff;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        *, *::before, *::after {
            box-sizing: border-box;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        
        /* 布局与文本安全规则 */
        .flow-wrap {
            display: flex;
            flex-wrap: wrap;
        }
        .flow-wrap > * {
            min-width: 0;
        }
        .word-safe {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        
        /* 顶部导航区域 (brow) */
        .brow {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #e2e8f0;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
        }
        .brow-mesh {
            max-width: 1300px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
        }
        .brow-mesh > * { min-width: 0; }
        
        .sigil {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        .sigil > * { min-width: 0; }
        .sigil img {
            height: 36px;
            width: auto;
            display: block;
        }
        
        .flow {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }
        .flow > * { min-width: 0; }
        
        .wire {
            font-size: 0.95rem;
            font-weight: 600;
            color: #64748b;
            transition: color 0.25s ease;
            position: relative;
        }
        .wire:hover, .wire.active {
            color: #37b9e9;
        }
        .wire.active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #37b9e9;
            border-radius: 2px;
        }

        /* Hero展示区 (nova) - Asymmetric Grid 原型 */
        .nova {
            background: radial-gradient(circle at 100% 0%, #f0f9ff 0%, #ffffff 60%);
            padding: 6rem 0;
            overflow: hidden;
            border-bottom: 1px solid #f1f5f9;
        }
        .nova-mesh {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 38% 62%;
            gap: 4rem;
            align-items: center;
        }
        @media (max-width: 1024px) {
            .nova-mesh {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
        }
        
        .nova-lore-box {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            word-break: break-word;
            overflow-wrap: break-word;
        }
        .nova-lore-box > * { min-width: 0; }
        
        .crux-pod {
            font-size: 3.2rem;
            font-weight: 800;
            color: #0f172a;
            line-height: 1.15;
            margin: 0 0 1.5rem 0;
            white-space: normal;
            letter-spacing: -0.02em;
        }
        
        .lore-lead {
            font-size: 1.15rem;
            color: #475569;
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }
        
        .ping-knot {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .ping-knot > * { min-width: 0; }
        
        .ping-primary {
            background: #37b9e9;
            color: #ffffff;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.05rem;
            transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
            box-shadow: 0 4px 14px rgba(55, 185, 233, 0.35);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .ping-primary:hover {
            transform: translateY(-2px);
            background: #2ea5d4;
            box-shadow: 0 6px 20px rgba(55, 185, 233, 0.45);
        }
        
        .ping-secondary {
            background: #ffffff;
            color: #0f172a;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.05rem;
            border: 1px solid #cbd5e1;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .ping-secondary:hover {
            border-color: #37b9e9;
            color: #37b9e9;
            background: #f8fafc;
        }

        /* 终端视觉焦点 (lens) */
        .nova-lens {
            background: #0f172a;
            border-radius: 11px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            padding: 1.25rem;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            border: 1px solid #1e293b;
            transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
            transition: transform 0.5s ease;
        }
        .nova-lens:hover {
            transform: perspective(1000px) rotateY(0) rotateX(0);
        }
        .nova-lens > * { min-width: 0; }
        
        .nova-lens-brow {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.25rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #1e293b;
        }
        .nova-lens-brow > * { min-width: 0; }
        
        .lens-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        .lens-dot:nth-child(1) { background: #ef4444; }
        .lens-dot:nth-child(2) { background: #eab308; }
        .lens-dot:nth-child(3) { background: #22c55e; }
        
        .lens-body {
            background: #020617;
            border-radius: 6px;
            padding: 1.5rem;
            font-family: 'Consolas', 'Monaco', monospace;
            color: #38bdf8;
            font-size: 0.95rem;
            line-height: 1.8;
            min-height: 280px;
        }

        /* 核心能力区 (pod) */
        .pod {
            padding: 6rem 0;
            word-break: break-word;
            overflow-wrap: break-word;
        }
        .pod-alt {
            background: #f8fafc;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .hive {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .crux-sec {
            font-size: 2.5rem;
            font-weight: 800;
            color: #0f172a;
            margin: 0 0 1.5rem 0;
            white-space: normal;
            text-align: center;
            letter-spacing: -0.01em;
        }
        .crux-sec.left {
            text-align: left;
        }
        
        .lore-desc {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem auto;
            color: #64748b;
            font-size: 1.15rem;
            line-height: 1.8;
        }
        .lore-desc.left {
            text-align: left;
            margin: 0 0 3rem 0;
        }
        
        /* 节点网格 (knot) */
        .knot-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }
        
        .node {
            background: #ffffff;
            padding: 2.5rem;
            border-radius: 11px;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
            border: 1px solid #f1f5f9;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
        }
        .node::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: transparent;
            transition: background 0.25s ease;
        }
        .node:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
        }
        .node:hover::before {
            background: #37b9e9;
        }
        .node > * { min-width: 0; }
        
        .glyph-wrap {
            width: 60px;
            height: 60px;
            border-radius: 11px;
            background: #f0f9ff;
            color: #37b9e9;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.75rem;
        }
        .glyph-wrap svg {
            width: 30px;
            height: 30px;
        }
        
        .crux-sub {
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0 0 1rem 0;
            color: #0f172a;
        }
        .lore-body {
            color: #475569;
            font-size: 1.05rem;
            line-height: 1.7;
            margin: 0;
        }

        /* 左右对角布局 (split) */
        .split-mesh {
            display: grid;
            grid-template-columns: 50% 50%;
            gap: 5rem;
            align-items: center;
        }
        @media (max-width: 1024px) {
            .split-mesh {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
        }
        
        .split-lore {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
        }
        .split-lore > * { min-width: 0; }
        
        .blip-knot {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-top: 1rem;
        }
        .blip-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1.25rem;
            align-items: flex-start;
        }
        .blip-row > * { min-width: 0; }
        
        .blip-glyph {
            color: #37b9e9;
            background: #f8fafc;
            padding: 0.75rem;
            border-radius: 9px;
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .blip-glyph svg {
            width: 24px;
            height: 24px;
        }
        .blip-lore {
            flex: 1;
        }
        
        .crux-tiny {
            font-weight: 700;
            font-size: 1.1rem;
            color: #0f172a;
            margin: 0 0 0.5rem 0;
        }
        .lore-tiny {
            color: #64748b;
            font-size: 1rem;
            margin: 0;
            line-height: 1.6;
        }
        
        /* 几何拼接装饰 (lens-geo) */
        .lens-geo {
            position: relative;
            height: 100%;
            min-height: 400px;
            background: linear-gradient(145deg, #f8fafc, #f1f5f9);
            border-radius: 11px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e2e8f0;
        }
        .lens-geo::before {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            background: conic-gradient(from 90deg at 50% 50%, #f1f5f9 0deg, #e0f2fe 90deg, #f1f5f9 180deg, #ffffff 270deg, #f1f5f9 360deg);
            animation: rotate 20s linear infinite;
            opacity: 0.5;
        }
        @keyframes rotate {
            100% { transform: rotate(360deg); }
        }
        .lens-seal {
            position: relative;
            background: #ffffff;
            padding: 2rem;
            border-radius: 11px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            text-align: center;
            z-index: 2;
        }
        .lens-seal svg {
            width: 64px;
            height: 64px;
            color: #37b9e9;
        }

        /* 专题聚合区 (shard) */
        .pod-deep {
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
        }
        
        .shard-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .shard-grid { grid-template-columns: 1fr; }
        }
        
        .shard {
            background: #ffffff;
            border-radius: 11px;
            padding: 3rem 2.5rem;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
            border: 1px solid #e2e8f0;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .shard > * { min-width: 0; }
        .shard:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.06);
            border-color: #cbd5e1;
        }
        
        .wire-more {
            margin-top: auto;
            padding-top: 2rem;
            color: #37b9e9;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.25s ease;
        }
        .wire-more:hover {
            color: #2ea5d4;
        }
        .wire-more svg {
            width: 18px;
            height: 18px;
            transition: transform 0.25s ease;
        }
        .wire-more:hover svg {
            transform: translateX(4px);
        }

        /* 行动号召区 (pulse) */
        .pulse {
            background: #0f172a;
            color: #ffffff;
            padding: 7rem 2rem;
            text-align: center;
            word-break: break-word;
            overflow-wrap: break-word;
            position: relative;
            overflow: hidden;
        }
        .pulse::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 100%, rgba(55, 185, 233, 0.15) 0%, transparent 60%);
        }
        
        .pulse-mesh {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }
        .pulse-mesh > * { min-width: 0; }
        
        .crux-light {
            color: #ffffff;
            font-size: 3rem;
            font-weight: 800;
            margin: 0 0 1.5rem 0;
            letter-spacing: -0.01em;
        }
        
        .lore-light {
            color: #94a3b8;
            font-size: 1.2rem;
            margin-bottom: 3rem;
            line-height: 1.8;
        }

        /* 页脚区域 (heel) */
        .heel {
            background: #020617;
            color: #64748b;
            padding: 5rem 2rem 2rem 2rem;
            word-break: break-word;
            font-size: 0.95rem;
        }
        
        .root-mesh {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 4rem;
            margin-bottom: 4rem;
        }
        
        .root-col {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 1.25rem;
        }
        .root-col > * { min-width: 0; }
        
        .crux-root {
            color: #f8fafc;
            font-weight: 700;
            font-size: 1.1rem;
            margin: 0 0 0.5rem 0;
        }
        
        .root-col .wire {
            color: #94a3b8;
            font-weight: 400;
        }
        .root-col .wire:hover {
            color: #37b9e9;
        }
        
        .tail {
            max-width: 1300px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid #1e293b;
            text-align: center;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }
        .tail > * { min-width: 0; }

.orbit-brow {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: #334155;
}
.orbit-brow,
.orbit-brow *,
.orbit-brow *::before,
.orbit-brow *::after {
    box-sizing: border-box;
}

.orbit-brow [role="navigation"],
.orbit-brow div,
.orbit-brow section,
.orbit-brow article,
.orbit-brow aside,
.orbit-brow p,
.orbit-brow h1,
.orbit-brow h2,
.orbit-brow h3,
.orbit-brow h4,
.orbit-brow h5,
.orbit-brow h6,
.orbit-brow a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

.orbit-brow a.orbit-wire {
    --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;
}

.orbit-brow a.orbit-wire,
.orbit-brow a.orbit-wire:hover,
.orbit-brow a.orbit-wire:focus,
.orbit-brow a.orbit-wire:active,
.orbit-brow a.orbit-wire.active,
.orbit-brow 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-brow{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #e2e8f0;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
        }

.orbit-brow .orbit-brow-mesh{
            max-width: 1300px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
        }

.orbit-brow .orbit-brow-mesh > *{ min-width: 0; }

.orbit-brow .orbit-sigil{
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

.orbit-brow .orbit-sigil > *{ min-width: 0; }

.orbit-brow .orbit-sigil img{
            height: 36px;
            width: auto;
            display: block;
        }

.orbit-brow .orbit-flow{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.orbit-brow .orbit-flow > *{ min-width: 0; }

.orbit-brow .orbit-wire{
            font-size: 0.95rem;
            font-weight: 600;
            color: #64748b;
            transition: color 0.25s ease;
            position: relative;
        }

.orbit-brow .orbit-wire:hover, .orbit-brow .orbit-wire.active{
            color: #37b9e9;
        }

.orbit-brow .orbit-wire.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #37b9e9;
            border-radius: 2px;
        }

.orbit-brow {
    background: rgb(255, 255, 255);
    background-image: none;
}

.root-heel {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: #334155;
}
.root-heel,
.root-heel *,
.root-heel *::before,
.root-heel *::after {
    box-sizing: border-box;
}

.root-heel [role="navigation"],
.root-heel div,
.root-heel section,
.root-heel article,
.root-heel aside,
.root-heel p,
.root-heel h1,
.root-heel h2,
.root-heel h3,
.root-heel h4,
.root-heel h5,
.root-heel h6,
.root-heel a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

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

.root-heel .root-wire{
            font-size: 0.95rem;
            font-weight: 600;
            color: #64748b;
            transition: color 0.25s ease;
            position: relative;
        }

.root-heel .root-wire:hover, .root-heel .root-wire.active{
            color: #37b9e9;
        }

.root-heel .root-wire.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #37b9e9;
            border-radius: 2px;
        }

.root-heel{
            background: #020617;
            color: #64748b;
            padding: 5rem 2rem 2rem 2rem;
            word-break: break-word;
            font-size: 0.95rem;
        }

.root-heel .root-root-mesh{
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 4rem;
            margin-bottom: 4rem;
        }

.root-heel .root-root-col{
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 1.25rem;
        }

.root-heel .root-root-col > *{ min-width: 0; }

.root-heel .root-crux-root{
            color: #f8fafc;
            font-weight: 700;
            font-size: 1.1rem;
            margin: 0 0 0.5rem 0;
        }

.root-heel .root-root-col .root-wire{
            color: #94a3b8;
            font-weight: 400;
        }

.root-heel .root-root-col .root-wire:hover{
            color: #37b9e9;
        }

.root-heel .root-tail{
            max-width: 1300px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid #1e293b;
            text-align: center;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }

.root-heel .root-tail > *{ min-width: 0; }