/* 变量定义：继承首页高对比科技框架家族 */
        :root {
            --bg: #09090b;
            --surface: #121214;
            --surface-elevated: #1c1c1f;
            --primary: #17dfdf;
            --primary-dim: rgba(23, 223, 223, 0.15);
            --text-main: #f4f4f5;
            --text-muted: #a1a1aa;
            --text-dark: #000000;
            --border: #3f3f46;
            --border-light: rgba(255, 255, 255, 0.08);
            --radius: 8px;
            --radius-sm: 4px;
            --transition: 0.35s ease;
            --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
        }

        /* 基础重置 */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg);
            color: var(--text-main);
            font-family: var(--font-sans);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

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

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

        /* 强制规范：Flex & 换行 */
        [class*="pod"], [class*="orbit"], [class*="wire"], [class*="wake-grid"] {
            display: flex;
            flex-wrap: wrap;
        }

        [class*="pod"] > *, [class*="orbit"] > *, [class*="wire"] > *, [class*="wake-grid"] > * {
            min-width: 0;
        }

        [class*="lore"], [class*="peak"] {
            word-break: break-word;
            overflow-wrap: break-word;
        }

        p[class*="lore"] {
            word-break: keep-all;
        }

        [class*="peak"] {
            white-space: normal;
        }

        /* 布局容器 */
        .mesh {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* ----------------导航栏 (严格复用)---------------- */
        .apex {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(9, 9, 11, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-light);
        }

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

        .seal img {
            height: 32px;
            width: auto;
        }

        .wire {
            gap: 2rem;
            align-items: center;
        }

        .tie {
            color: var(--text-muted);
            font-size: 0.95rem;
            font-weight: 500;
        }

        .tie:hover,
        .tie.active {
            color: var(--text-main);
        }

        .tie.active {
            position: relative;
            color: var(--primary);
        }

        .tie.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary);
            border-radius: 2px;
        }

        /* ----------------主内容区---------------- */
        .zone {
            display: flex;
            flex-direction: column;
            gap: 6rem;
            padding-bottom: 6rem;
        }

        /* 区块 1: 重塑视觉体验 (Hero 变体) */
        .nova {
            padding-top: 5rem;
            position: relative;
        }

        .nova::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 400px;
            background: radial-gradient(circle, var(--primary-dim) 0%, transparent 70%);
            opacity: 0.5;
            z-index: -1;
            pointer-events: none;
        }

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

        .nova-lore {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .peak-xl {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: var(--text-main);
        }

        .lore-lead {
            font-size: 1.125rem;
            color: var(--text-muted);
            max-width: 90%;
        }

        .pod-actions {
            gap: 1rem;
            margin-top: 1rem;
        }

        .ping-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary);
            color: var(--text-dark);
            font-weight: 600;
            padding: 0.875rem 2rem;
            border-radius: var(--radius-sm);
            border: 1px solid var(--primary);
            transition: all var(--transition);
            cursor: pointer;
        }

        .ping-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px -10px var(--primary);
        }

        .nova-lens-shell {
            position: relative;
            perspective: 1000px;
        }

        .lens-mesh {
            border-radius: var(--radius);
            border: 1px solid var(--border);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
            transform: rotateY(-5deg) rotateX(2deg);
            transition: transform var(--transition);
        }

        .nova-lens-shell:hover .lens-mesh {
            transform: rotateY(0) rotateX(0);
        }

        .nova-float-packet {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: rgba(18, 18, 20, 0.9);
            backdrop-filter: blur(8px);
            border: 1px solid var(--border);
            padding: 1rem 1.5rem;
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            gap: 1rem;
            box-shadow: 0 15px 30px rgba(0,0,0,0.5);
            transform: translateY(0);
            transition: transform var(--transition);
        }

        .nova-lens-shell:hover .nova-float-packet {
            transform: translateY(-5px);
        }

        .rune {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: var(--primary);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .lore-sm {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-main);
        }

        /* 区块 2: 精选配色方案 (Gallery) */
        .flare-apex {
            text-align: center;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .peak-lg {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .lore-muted {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

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

        .node {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.5rem;
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .node:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px -15px rgba(0,0,0,0.5);
        }

        .node-preview {
            width: 100%;
            height: 140px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-light);
            margin-bottom: 0.5rem;
            position: relative;
            overflow: hidden;
        }

        /* 模拟界面线条，增强预览质感 */
        .node-preview::after {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            height: 8px;
            background: rgba(255,255,255,0.1);
            border-radius: 4px;
            box-shadow: 0 16px 0 rgba(255,255,255,0.05), 0 32px 0 rgba(255,255,255,0.05);
        }

        .peak-md {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-main);
        }

        .lore {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* 区块 3: 字体与颜色微调 (Guide) */
        .beacon-shell {
            background: var(--surface-elevated);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 4rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .beacon-lore {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .pod-wire {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .bead {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .bead .rune {
            flex-shrink: 0;
            margin-top: 0.25rem;
            stroke: var(--primary);
        }

        .peak-sm {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .beacon-visual {
            position: relative;
        }

        .packet-code {
            background: #000000;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .vein-top {
            background: var(--surface);
            padding: 0.75rem 1rem;
            border-bottom: 1px solid var(--border);
            display: flex;
            gap: 6px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        .dot:nth-child(1) { background: #ff5f56; }
        .dot:nth-child(2) { background: #ffbd2e; }
        .dot:nth-child(3) { background: #27c93f; }

        .lore-code {
            padding: 1.5rem;
            font-family: var(--font-mono);
            font-size: 0.9rem;
            color: #a1a1aa;
            line-height: 1.5;
            overflow-x: auto;
        }

        .lore-code .highlight { color: var(--primary); }
        .lore-code .comment { color: #6b7280; }
        .lore-code .string { color: #4ade80; }

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

        .wake-grid {
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .wake-brand {
            max-width: 300px;
        }

        .peak-brand {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.05em;
            color: var(--text-main);
            display: block;
            margin-bottom: 1rem;
        }

        .wake-links {
            gap: 2rem;
        }

        .wake-bottom {
            padding-top: 2rem;
            border-top: 1px solid var(--border-light);
            text-align: center;
        }

        .lore-xs {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* ----------------响应式断点---------------- */
        @media (max-width: 1024px) {
            .nova-grid, .beacon-shell {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .beacon-shell {
                padding: 2.5rem;
            }
            .nova-lens-shell {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .orbit {
                flex-direction: column;
                gap: 1rem;
            }
            .wire {
                gap: 1rem;
                justify-content: center;
            }
            .wake-grid {
                flex-direction: column;
            }
            .zone {
                gap: 4rem;
                padding-bottom: 4rem;
            }
            .nova {
                padding-top: 2rem;
            }
        }
    


        @keyframes blink {
            50% { opacity: 0; }
        }

.orbit-apex {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-main);
}
.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-tie {
    --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-tie,
.orbit-apex a.orbit-tie:hover,
.orbit-apex a.orbit-tie:focus,
.orbit-apex a.orbit-tie:active,
.orbit-apex a.orbit-tie.active,
.orbit-apex a.orbit-tie[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: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(9, 9, 11, 0.75);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid #27272a;
        }

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

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

.orbit-apex .orbit-seal img{
            height: 28px;
            display: block;
        }

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

.orbit-apex .orbit-wire > *{ min-width: 0; }

.orbit-apex .orbit-tie{
            color: #a1a1aa;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: 0.35s ease;
            padding: 0.5rem 0;
            position: relative;
        }

.orbit-apex .orbit-tie:hover, .orbit-apex .orbit-tie.active{
            color: #f4f4f5;
        }

.orbit-apex .orbit-tie.active::after{
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #17dfdf;
        }

@media (max-width: 1024px){.orbit-apex .orbit-wire{
                display: none; 
            }}

.orbit-apex {
    background: rgb(9, 9, 11);
    background-image: none;
}

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

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

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

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

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

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

.root-wake .root-lore-md{ font-size: 1rem; color: #a1a1aa; }

.root-wake .root-mesh-mesh{
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

.root-wake .root-tie{
            color: #a1a1aa;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: 0.35s ease;
            padding: 0.5rem 0;
            position: relative;
        }

.root-wake .root-tie:hover, .root-wake .root-tie.active{
            color: #f4f4f5;
        }

.root-wake .root-tie.active::after{
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #17dfdf;
        }

.root-wake{
            border-top: 1px solid #27272a;
            background: #121214;
            padding: 4rem 0 2rem;
        }

.root-wake .root-root{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            gap: 4rem;
        }

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

.root-wake .root-root-brand{
            flex: 1 1 300px;
        }

.root-wake .root-brand-lore{
            font-size: 1.5rem;
            font-weight: 800;
            color: #f4f4f5;
            letter-spacing: -0.05em;
            margin-bottom: 1rem;
        }

.root-wake .root-root-links{
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
        }

.root-wake .root-root-links > *{ min-width: 0; }

.root-wake .root-tie-pod{
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

.root-wake .root-tie-peak{
            font-size: 0.875rem;
            font-weight: 600;
            color: #f4f4f5;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

.root-wake .root-echo-bottom{
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid #27272a;
            text-align: center;
            color: #a1a1aa;
            font-size: 0.875rem;
        }