:root {
            --cnb-7-primary: #71dd43;
            --cnb-7-primary-dim: rgba(113, 221, 67, 0.1);
            --cnb-7-bg: #0a0c10;
            --cnb-7-surface: #161b22;
            --cnb-7-text: #e6edf3;
            --cnb-7-text-muted: #8b949e;
            --cnb-7-border: #30363d;
            --cnb-7-radius: 16px;
            --cnb-7-transition: 0.25s ease;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--cnb-7-bg);
            color: var(--cnb-7-text);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            word-break: keep-all;
        }

        /* 强制导航栏复用 */
        .cnb-7-orbit {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 12, 16, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--cnb-7-border);
        }

        .cnb-7-nexus {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
            height: 72px;
        }

        .cnb-7-logo {
            display: flex;
            align-items: center;
        }

        .cnb-7-logo img {
            height: 32px;
            width: auto;
        }

        .cnb-7-nexus-links {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }

        .cnb-7-nav-link {
            color: var(--cnb-7-text-muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: var(--cnb-7-transition);
        }

        .cnb-7-nav-link:hover, .cnb-7-nav-link.active {
            color: var(--cnb-7-primary);
        }

        /* Cinematic Strip Hero Layout */
        .cnb-7-flare {
            position: relative;
            padding: 100px 24px;
            overflow: hidden;
            background: radial-gradient(circle at 50% 0%, #1a2a15 0%, #0a0c10 70%);
        }

        .cnb-7-sphere {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cnb-7-apex-title {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #fff 30%, var(--cnb-7-primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            word-break: break-word;
        }

        .cnb-7-strobe-desc {
            font-size: 1.25rem;
            color: var(--cnb-7-text-muted);
            max-width: 700px;
            margin-bottom: 48px;
            word-break: break-word;
        }

        /* Cinematic Strip Visual */
        .cnb-7-strip-visual {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 60px;
            opacity: 0.8;
            pointer-events: none;
        }

        .cnb-7-strip-item {
            height: 120px;
            flex: 1;
            min-width: 200px;
            background: var(--cnb-7-surface);
            border: 1px solid var(--cnb-7-border);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .cnb-7-strip-item svg {
            width: 100%;
            height: auto;
            stroke: var(--cnb-7-primary);
            opacity: 0.3;
        }

        /* Main Content Structure */
        .cnb-7-loom {
            padding: 120px 24px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .cnb-7-vault {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .cnb-7-mote {
            background: var(--cnb-7-surface);
            border: 1px solid var(--cnb-7-border);
            padding: 40px;
            border-radius: var(--cnb-7-radius);
            transition: var(--cnb-7-transition);
            position: relative;
            overflow: hidden;
        }

        .cnb-7-mote:hover {
            border-color: var(--cnb-7-primary);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .cnb-7-mote-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 24px;
            color: var(--cnb-7-primary);
        }

        .cnb-7-mote h2 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: #fff;
        }

        .cnb-7-mote p {
            color: var(--cnb-7-text-muted);
            font-size: 1rem;
        }

        /* Proxy & Sync Detailed Block */
        .cnb-7-shard-block {
            background: linear-gradient(180deg, var(--cnb-7-surface) 0%, var(--cnb-7-bg) 100%);
            border-radius: var(--cnb-7-radius);
            border: 1px solid var(--cnb-7-border);
            padding: 60px;
            margin-bottom: 80px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .cnb-7-shard-text {
            flex: 1;
            min-width: 300px;
        }

        .cnb-7-shard-visual {
            flex: 1;
            min-width: 300px;
            background: #000;
            border-radius: 12px;
            padding: 24px;
            font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
            font-size: 14px;
            color: var(--cnb-7-primary);
            border: 1px solid #333;
            box-shadow: inset 0 0 20px rgba(113, 221, 67, 0.1);
        }

        /* Action Spark */
        .cnb-7-jolt {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            background: var(--cnb-7-primary);
            color: #000;
            text-decoration: none;
            font-weight: 600;
            border-radius: 50px;
            transition: var(--cnb-7-transition);
            border: none;
            cursor: pointer;
        }

        .cnb-7-jolt:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(113, 221, 67, 0.4);
        }

        .cnb-7-spark-outline {
            background: transparent;
            border: 1px solid var(--cnb-7-border);
            color: var(--cnb-7-text);
            margin-left: 16px;
        }

        .cnb-7-spark-outline:hover {
            border-color: var(--cnb-7-primary);
            color: var(--cnb-7-primary);
        }

        /* Footer */
        .cnb-7-echo {
            border-top: 1px solid var(--cnb-7-border);
            padding: 80px 24px 40px;
            background: var(--cnb-7-bg);
        }

        .cnb-7-residue {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

        .cnb-7-residue-brand {
            flex: 1;
            min-width: 200px;
        }

        .cnb-7-residue-brand span {
            font-size: 24px;
            font-weight: 800;
            color: var(--cnb-7-primary);
            display: block;
            margin-bottom: 16px;
        }

        .cnb-7-residue-links {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
        }

        .cnb-7-residue-group h4 {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            color: #fff;
        }

        .cnb-7-residue-group a {
            display: block;
            color: var(--cnb-7-text-muted);
            text-decoration: none;
            font-size: 14px;
            margin-bottom: 12px;
            transition: var(--cnb-7-transition);
        }

        .cnb-7-residue-group a:hover {
            color: var(--cnb-7-primary);
        }

        .cnb-7-copyright {
            width: 100%;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid var(--cnb-7-border);
            color: var(--cnb-7-text-muted);
            font-size: 13px;
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .cnb-7-nexus { height: auto; padding: 16px 24px; }
            .cnb-7-nexus-links { gap: 16px; margin-top: 16px; width: 100%; }
            .cnb-7-nav-link { font-size: 13px; }
            .cnb-7-flare { padding: 60px 24px; }
            .cnb-7-shard-block { padding: 30px; }
            .cnb-7-vault { grid-template-columns: 1fr; }
        }

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

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

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

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

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

.cnb-7-hdr-orbit a.cnb-7-hdr-nav-link {
    --aisite-shell-nav-padding: 5px 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;
}

.cnb-7-hdr-orbit a.cnb-7-hdr-nav-link,
.cnb-7-hdr-orbit a.cnb-7-hdr-nav-link:hover,
.cnb-7-hdr-orbit a.cnb-7-hdr-nav-link:focus,
.cnb-7-hdr-orbit a.cnb-7-hdr-nav-link:active,
.cnb-7-hdr-orbit a.cnb-7-hdr-nav-link.active,
.cnb-7-hdr-orbit a.cnb-7-hdr-nav-link[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);
}

.cnb-7-hdr-orbit{
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 12, 16, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

.cnb-7-hdr-orbit .cnb-7-hdr-nexus{
            max-width: 1300px;
            margin: 0 auto;
            padding: 15px 25px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

.cnb-7-hdr-orbit .cnb-7-hdr-logo{
            height: 32px;
            display: flex;
            align-items: center;
        }

.cnb-7-hdr-orbit .cnb-7-hdr-logo img{
            height: 100%;
            width: auto;
        }

.cnb-7-hdr-orbit .cnb-7-hdr-nexus-links{
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

.cnb-7-hdr-orbit .cnb-7-hdr-nav-link{
            font-size: 0.95rem;
            font-weight: 500;
            color: #a0a0a0;
            padding: 5px 0;
            position: relative;
        }

.cnb-7-hdr-orbit .cnb-7-hdr-nav-link:hover, .cnb-7-hdr-orbit .cnb-7-hdr-nav-link.active{
            color: #71dd43;
        }

.cnb-7-hdr-orbit .cnb-7-hdr-nav-link.active::after{
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #71dd43;
            box-shadow: 0 0 8px #71dd43;
        }

@media (max-width: 768px){.cnb-7-hdr-orbit .cnb-7-hdr-nexus-links{
                display: none; 
            }}

.cnb-7-hdr-orbit {
    background: rgb(10, 12, 16);
    background-image: none;
}

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

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

.cnb-7-ftr-echo p,
.cnb-7-ftr-echo h1,
.cnb-7-ftr-echo h2,
.cnb-7-ftr-echo h3,
.cnb-7-ftr-echo h4,
.cnb-7-ftr-echo h5,
.cnb-7-ftr-echo h6 {
    text-decoration: none;
}

.cnb-7-ftr-echo img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.cnb-7-ftr-echo {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.cnb-7-ftr-echo a,
.cnb-7-ftr-echo a:hover,
.cnb-7-ftr-echo a:focus,
.cnb-7-ftr-echo a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.cnb-7-ftr-echo{
            background: #050608;
            padding: 80px 25px 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
        }

.cnb-7-ftr-echo .cnb-7-ftr-residue{
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 50px;
        }

.cnb-7-ftr-echo .cnb-7-ftr-residue-brand{
            flex: 1;
            min-width: 280px;
        }

.cnb-7-ftr-echo .cnb-7-ftr-residue-brand h2{
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #71dd43;
        }

.cnb-7-ftr-echo .cnb-7-ftr-residue-links{
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
        }

.cnb-7-ftr-echo .cnb-7-ftr-residue-group h4{
            margin-bottom: 20px;
            color: #fff;
            font-size: 1.1rem;
        }

.cnb-7-ftr-echo .cnb-7-ftr-residue-group a{
            display: block;
            color: #a0a0a0;
            margin-bottom: 12px;
            font-size: 0.9rem;
        }

.cnb-7-ftr-echo .cnb-7-ftr-residue-group a:hover{
            color: #71dd43;
        }

.cnb-7-ftr-echo .cnb-7-ftr-copyright{
            width: 100%;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            color: #555;
            font-size: 0.85rem;
        }