: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;
            --radius-soft: 16px;
            --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        /* 基础与结构重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: var(--font-stack);
            background-color: var(--bg-base);
            color: var(--text-base);
            line-height: 1.7;
            overflow-x: hidden;
            word-break: break-word;
            overflow-wrap: break-word;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* 强制的 Flex 规则 */
        .orbit, 
        .synap-stream, 
        .flare, 
        .mesh, 
        .synap, 
        .node, 
        .roots {
            display: flex;
            flex-wrap: wrap;
        }
        .realm, 
        .pod {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
        }
        .glyph, 
        .synap-stream, 
        .flare-knot, 
        .shell, 
        .pod, 
        .pulse-knot, 
        .mesh, 
        .bead, 
        .roots, 
        .ping, 
        .spark {
            min-width: 0;
        }

        /* 导航区 (apex) */
        .apex {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(6, 8, 13, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(66, 231, 242, 0.1);
        }
        .orbit {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            justify-content: space-between;
            align-items: center;
        }
        .glyph {
            align-items: center;
        }
        .glyph img {
            height: 32px;
        }
        .synap-stream {
            gap: 2rem;
        }
        .wire {
            color: var(--text-base);
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.35s ease;
        }
        .wire:hover, 
        .wire.active {
            color: var(--accent-core);
        }

        /* 展示区 (flare) */
        .flare {
            width: 100%;
            min-height: 80vh;
            padding: 6rem 2rem 4rem;
            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);
        }
        .flare > .mesh {
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
            gap: 4rem;
            width: 100%;
        }
        .flare-knot {
            flex: 1 1 400px;
        }
        .flare-shout {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            letter-spacing: -0.02em;
            color: var(--accent-core);
            line-height: 1.2;
            margin-bottom: 1.5rem;
            white-space: normal;
            font-weight: 700;
        }
        .echo {
            font-size: 1.125rem;
            color: var(--text-base);
            margin-bottom: 2rem;
            line-height: 1.8;
            white-space: normal;
        }
        .flare .echo {
            font-size: 1.25rem;
        }
        .synap {
            gap: 1.5rem;
        }
        .ping {
            padding: 1rem 2.5rem;
            background: var(--accent-core);
            color: var(--bg-base);
            font-weight: 600;
            border-radius: 99px;
            box-shadow: 0 0 20px rgba(66, 231, 242, 0.2);
            transition: all 0.35s ease;
            align-items: center;
            justify-content: center;
        }
        .ping:hover {
            box-shadow: 0 0 30px rgba(66, 231, 242, 0.4);
            transform: translateY(-2px);
        }
        .spark {
            padding: 1rem 2.5rem;
            background: transparent;
            color: var(--accent-core);
            font-weight: 600;
            border-radius: 99px;
            border: 1px solid var(--accent-core);
            transition: all 0.35s ease;
            align-items: center;
            justify-content: center;
        }
        .spark:hover {
            background: var(--accent-dim);
            transform: translateY(-2px);
        }
        .flare .shell {
            flex: 1 1 400px;
            border-radius: var(--radius-soft);
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 40px var(--accent-dim);
            border: 1px solid rgba(66, 231, 242, 0.2);
        }
        .lens {
            width: 100%;
            border-radius: calc(var(--radius-soft) - 1px);
        }

        /* 矩阵区 (nexus) */
        .nexus {
            padding: 6rem 2rem;
            background: var(--bg-base);
        }
        .realm {
            max-width: 1200px;
            margin: 0 auto;
            gap: 4rem;
        }
        .nexus-knot {
            text-align: center;
            max-width: 720px;
            margin: 0 auto;
        }
        .shout {
            font-size: clamp(2rem, 3vw, 2.5rem);
            color: var(--text-loud);
            margin-bottom: 1.5rem;
            font-weight: 700;
            white-space: normal;
        }
        .hive {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            width: 100%;
        }
        .pod {
            background: var(--bg-elevated);
            padding: 3rem 2rem;
            border-radius: 24px;
            border: 1px solid rgba(66, 231, 242, 0.1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: all 0.35s ease;
        }
        .pod:hover {
            border-color: rgba(66, 231, 242, 0.3);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px var(--accent-dim);
            transform: translateY(-5px);
        }
        .rune {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: var(--bg-surface);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            color: var(--accent-core);
            border: 1px solid rgba(66, 231, 242, 0.2);
        }
        .pod .shout {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        .pod .echo {
            flex-grow: 1;
        }
        .belt {
            margin-top: 2rem;
            border-radius: var(--radius-soft);
            overflow: hidden;
            border: 1px solid rgba(66, 231, 242, 0.2);
            box-shadow: 0 10px 40px rgba(0,0,0,0.4);
        }

        /* 环境与依赖 (pulse) */
        .pulse {
            padding: 6rem 2rem;
            background: var(--bg-elevated);
            border-top: 1px solid rgba(66, 231, 242, 0.05);
        }
        .pulse .mesh {
            max-width: 1200px;
            margin: 0 auto;
            gap: 4rem;
        }
        .pulse-knot {
            flex: 1 1 300px;
        }
        .pulse .shell {
            flex: 2 1 500px;
        }
        .node {
            gap: 2rem;
            background: var(--bg-surface);
            padding: 3rem;
            border-radius: 24px;
            border: 1px solid rgba(66, 231, 242, 0.1);
        }
        .bead {
            flex: 1 1 200px;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .bead:last-child,
        .bead:nth-last-child(2):nth-child(odd) {
            /* 保证最后一行没有底边框，视列数而定，这里提供基础平滑体验 */
            border-bottom: none;
            padding-bottom: 0;
        }
        .bead dt.shout {
            font-size: 1.25rem;
            color: var(--text-loud);
            margin-bottom: 0.5rem;
        }
        .bead dd.echo {
            font-size: 1rem;
            margin-bottom: 0;
            color: var(--text-quiet);
        }

        /* 页脚 (sole) */
        .sole {
            background: var(--bg-base);
            padding: 4rem 2rem;
            border-top: 1px solid rgba(66, 231, 242, 0.1);
        }
        .roots {
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }
        .roots-shout {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-loud);
            letter-spacing: 0.05em;
            white-space: normal;
        }
        .roots-echo {
            color: var(--text-quiet);
            font-size: 0.95rem;
        }
        .sole .synap {
            justify-content: center;
            gap: 2rem;
            margin: 1rem 0;
        }
        .sole .wire {
            color: var(--text-base);
        }
        .sole .wire:hover {
            color: var(--accent-core);
        }

        /* 响应式断点 */
        @media (max-width: 768px) {
            .flare {
                padding: 4rem 1.5rem 3rem;
            }
            .flare-shout {
                font-size: 2.25rem;
            }
            .nexus, .pulse {
                padding: 4rem 1.5rem;
            }
            .orbit {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.5rem;
            }
            .synap-stream {
                width: 100%;
                gap: 1rem;
                flex-direction: column;
            }
            .node {
                padding: 2rem;
            }
            .bead {
                border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
                padding-bottom: 1.5rem !important;
            }
            .bead:last-child {
                border-bottom: none !important;
                padding-bottom: 0 !important;
            }
        }

.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;
            }}