:root {
            --cnb-7-primary: #71dd43;
            --cnb-7-bg: #0a0f14;
            --cnb-7-surface: #141b23;
            --cnb-7-text: #e2e8f0;
            --cnb-7-text-dim: #94a3b8;
            --cnb-7-border: rgba(113, 221, 67, 0.2);
            --cnb-7-glass: rgba(20, 27, 35, 0.8);
        }

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

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

        /* 导航区域：orbit, nexus */
        .cnb-7-orbit {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--cnb-7-glass);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--cnb-7-border);
            z-index: 1000;
        }

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

        .cnb-7-logo img {
            height: 32px;
            display: block;
        }

        .cnb-7-nexus-links {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .cnb-7-nav-link {
            text-decoration: none;
            color: var(--cnb-7-text-dim);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.25s ease;
        }

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

        /* 展示区域：flare, apex, strobe (Cinematic Strip Hero) */
        .cnb-7-flare {
            padding-top: 80px;
            position: relative;
            background: linear-gradient(180deg, #0a0f14 0%, #111821 100%);
            overflow: hidden;
        }

        .cnb-7-flare-strip {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            min-height: 500px;
            border-bottom: 1px solid var(--cnb-7-border);
        }

        .cnb-7-flare-panel {
            flex: 1;
            min-width: 300px;
            padding: 4rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-right: 1px solid var(--cnb-7-border);
            position: relative;
            transition: transform 0.4s ease, background 0.4s ease;
        }

        .cnb-7-flare-panel:last-child {
            border-right: none;
        }

        .cnb-7-flare-panel:hover {
            background: rgba(113, 221, 67, 0.03);
        }

        .cnb-7-apex-title {
            font-size: 2.8rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--cnb-7-primary);
            font-weight: 800;
        }

        .cnb-7-strobe-lead {
            font-size: 1.1rem;
            color: var(--cnb-7-text-dim);
            max-width: 450px;
        }

        .cnb-7-visual-badge {
            width: 60px;
            height: 60px;
            background: rgba(113, 221, 67, 0.1);
            border: 1px solid var(--cnb-7-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .cnb-7-visual-badge svg {
            width: 30px;
            height: 30px;
            fill: var(--cnb-7-primary);
        }

        /* 容器组件：loom, vault, sphere */
        .cnb-7-vault {
            max-width: 1100px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .cnb-7-sphere {
            margin-bottom: 5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: flex-start;
        }

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

        .cnb-7-loom-text h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--cnb-7-primary);
        }

        .cnb-7-loom-text p {
            margin-bottom: 1.2rem;
            color: var(--cnb-7-text-dim);
        }

        /* 卡片组件：mote, shard */
        .cnb-7-mote-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .cnb-7-mote {
            flex: 1;
            min-width: 260px;
            background: var(--cnb-7-surface);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.25s ease;
        }

        .cnb-7-mote:hover {
            transform: translateY(-5px);
            border-color: var(--cnb-7-primary);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .cnb-7-shard-icon {
            margin-bottom: 1rem;
            color: var(--cnb-7-primary);
        }

        .cnb-7-shard-title {
            font-size: 1.25rem;
            margin-bottom: 0.8rem;
            font-weight: 600;
        }

        .cnb-7-shard-desc {
            font-size: 0.95rem;
            color: var(--cnb-7-text-dim);
        }

        /* 按钮组件：jolt, spark */
        .cnb-7-spark {
            display: inline-flex;
            align-items: center;
            padding: 0.8rem 2rem;
            background: var(--cnb-7-primary);
            color: #000;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.25s ease;
            margin-top: 1rem;
        }

        .cnb-7-spark:hover {
            filter: brightness(1.1);
            box-shadow: 0 0 20px rgba(113, 221, 67, 0.4);
        }

        /* 页脚区域：echo, residue */
        .cnb-7-echo {
            background: #05070a;
            padding: 4rem 2rem;
            border-top: 1px solid var(--cnb-7-border);
            margin-top: 6rem;
        }

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

        .cnb-7-residue-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--cnb-7-primary);
        }

        .cnb-7-residue-links {
            display: flex;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .cnb-7-residue-group h4 {
            margin-bottom: 1.2rem;
            font-size: 1rem;
            color: var(--cnb-7-text);
        }

        .cnb-7-residue-group a {
            display: block;
            color: var(--cnb-7-text-dim);
            text-decoration: none;
            margin-bottom: 0.6rem;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

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

        .cnb-7-copyright {
            width: 100%;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            color: var(--cnb-7-text-dim);
            font-size: 0.85rem;
            text-align: center;
        }

        @media (max-width: 768px) {
            .cnb-7-flare-panel {
                border-right: none;
                border-bottom: 1px solid var(--cnb-7-border);
                min-height: auto;
            }
            .cnb-7-apex-title {
                font-size: 2.2rem;
            }
            .cnb-7-nexus-links {
                display: none; /* Mobile menu would usually go here */
            }
        }

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