*, *::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: #08080a;
            color: #e0e0e0;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* 导航栏 */
        .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);
        }

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

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

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

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

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

        .thread.active {
            position: relative;
        }

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

        /* 核心布局 */
        .core {
            display: block;
            min-width: 0;
        }

        /* Hero区 (card_float蓝图) */
        .flare {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end;
            padding: 8rem 5% 5rem;
        }

        .flare-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
        }

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

        .flare-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(8, 8, 10, 0.92) 0%, rgba(43, 88, 214, 0.2) 100%);
        }

        .pulse-node {
            background: rgba(18, 19, 24, 0.75);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            padding: 3.5rem;
            border-radius: 16px;
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.12);
            max-width: 680px;
            margin-left: 2vw;
            margin-bottom: 2vh;
            min-width: 0;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transform: translateY(0);
            transition: transform 0.15s ease, box-shadow 0.15s ease;
        }

        .pulse-node:hover {
            transform: translateY(-5px);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        /* 通用区块与容器 */
        .hive, 
        .cloak, 
        .zone {
            padding: 8rem 5%;
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

        .hive {
            background-color: #0b0b0e;
        }

        .cloak {
            background-color: #101014;
        }

        .accent-bg {
            background: linear-gradient(180deg, #101014 0%, #08080a 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }

        .knot {
            display: flex;
            flex-wrap: wrap;
            gap: 5rem;
            align-items: center;
            max-width: 1280px;
            margin: 0 auto;
            width: 100%;
        }

        .knot-reverse {
            flex-direction: row-reverse;
        }

        .knot > * {
            flex: 1 1 450px;
            min-width: 0;
        }

        /* 文本与排版 */
        .apex-huge {
            font-size: clamp(2.25rem, 4vw, 3.5rem);
            font-weight: 700;
            color: #ffffff;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
            letter-spacing: -0.02em;
        }

        .apex-display {
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
            white-space: normal;
            word-break: break-word;
            letter-spacing: -0.01em;
        }

        .apex-large {
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 700;
            color: #ffffff;
            line-height: 1.25;
            white-space: normal;
            word-break: break-word;
        }

        .apex-medium {
            font-size: 1.25rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1rem;
            white-space: normal;
            word-break: break-word;
        }

        .hum-lead {
            font-size: 1.125rem;
            color: #c0c0c5;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .hum-normal {
            font-size: 1rem;
            color: #98989f;
            line-height: 1.8;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .hum-center {
            font-size: 1.125rem;
            color: #a0a0a5;
            line-height: 1.7;
            word-break: break-word;
            text-align: center;
        }

        .hum-small {
            font-size: 0.9375rem;
            color: #808088;
            line-height: 1.6;
            word-break: break-word;
        }

        .hum-strong {
            color: #ffffff;
            font-weight: 600;
            word-break: break-word;
            font-size: 1.0625rem;
        }

        /* 交互组件 (Button) */
        .ping {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.25rem;
            background: #2b58d6;
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            border-radius: 8px;
            transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
            min-width: 0;
            word-break: break-word;
            font-size: 1rem;
        }

        .ping:hover {
            transform: translateY(-2px);
            background: #3666eb;
            box-shadow: 0 12px 24px rgba(43, 88, 214, 0.35);
        }

        .ping-primary {
            background: #2b58d6;
        }

        .ping-outline {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;
        }

        .ping-outline:hover {
            background: rgba(255, 255, 255, 0.08);
            box-shadow: none;
            transform: translateY(-2px);
        }

        /* 内部内容包裹 */
        .hum-cloak {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            min-width: 0;
        }

        .lens-cloak {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
            position: relative;
            min-width: 0;
            border: 1px solid rgba(255, 255, 255, 0.06);
            transform: translateY(0);
            transition: transform 0.15s ease, box-shadow 0.15s ease;
        }

        .lens-cloak:hover {
            transform: translateY(-5px);
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6);
        }

        .lens-cloak .lens {
            width: 100%;
            height: auto;
            display: block;
        }

        /* 列表与图标 */
        .bead-knot {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0 0 0;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .bead {
            display: flex;
            align-items: center;
            gap: 0.875rem;
            min-width: 0;
            background: rgba(255, 255, 255, 0.03);
            padding: 0.75rem 1.25rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .mark {
            width: 24px;
            height: 24px;
            color: #2b58d6;
            flex-shrink: 0;
        }

        /* 文字链接 */
        .thread-spark {
            display: inline-flex;
            align-items: center;
            color: #2b58d6;
            font-weight: 600;
            text-decoration: none;
            font-size: 1.125rem;
            transition: transform 0.15s ease, color 0.15s ease;
            word-break: break-word;
            margin-top: 1rem;
        }

        .thread-spark:hover {
            transform: translateX(6px);
            color: #4272f5;
        }

        /* CTA居中区块 */
        .blip-center {
            max-width: 860px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            min-width: 0;
        }

        .knot-center {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 1rem;
        }

        /* 站内路径卡片 (Grid布局) */
        .knot-paths {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            max-width: 1280px;
            margin: 0 auto;
            width: 100%;
        }

        .packet {
            background: #15151a;
            border-radius: 16px;
            padding: 3rem 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.04);
            transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            min-width: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .packet:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
            border-color: rgba(43, 88, 214, 0.4);
        }

        .mark-large {
            width: 48px;
            height: 48px;
            color: #2b58d6;
            margin-bottom: 2rem;
            filter: drop-shadow(0 4px 8px rgba(43, 88, 214, 0.3));
        }

        .thread-inline {
            margin-top: auto;
            padding-top: 2rem;
            color: #2b58d6;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.15s ease;
            word-break: break-word;
        }

        .thread-inline::after {
            content: '→';
            font-family: system-ui;
            transition: transform 0.15s ease;
        }

        .thread-inline:hover {
            color: #4272f5;
        }

        .thread-inline:hover::after {
            transform: translateX(4px);
        }

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

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

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

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

        /* 响应式断点 */
        @media (max-width: 1024px) {
            .flare {
                padding-top: 8rem;
            }
            .knot {
                gap: 4rem;
            }
        }

        @media (max-width: 768px) {
            .flare {
                align-items: center;
                padding-top: 7rem;
                padding-bottom: 4rem;
            }
            .pulse-node {
                margin: 0;
                padding: 2.5rem 2rem;
            }
            .orbit {
                padding: 1rem 5%;
                justify-content: center;
                gap: 1.5rem;
            }
            .loom {
                width: 100%;
                justify-content: center;
                gap: 1.25rem;
            }
            .knot {
                gap: 3.5rem;
            }
            .knot > * {
                flex-basis: 100%;
            }
            .hive, 
            .cloak, 
            .zone {
                padding: 5rem 5%;
            }
            .knot-center {
                flex-direction: column;
                width: 100%;
            }
            .ping {
                width: 100%;
            }
            .echo-knot {
                flex-direction: column;
                text-align: center;
            }
        }

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