:root {
            --ieg_dcb8-primary: #d34a8f;
            --ieg_dcb8-primary-soft: rgba(211, 74, 143, 0.1);
            --ieg_dcb8-dark: #1a1a1c;
            --ieg_dcb8-light: #f8f9fa;
            --ieg_dcb8-text: #2d3436;
            --ieg_dcb8-gray: #636e72;
            --ieg_dcb8-radius: 16px;
            --ieg_dcb8-transition: 0.15s ease;
            --ieg_dcb8-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            word-break: keep-all;
            overflow-wrap: break-word;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.7;
            color: var(--ieg_dcb8-text);
            background-color: #fff;
            -webkit-font-smoothing: antialiased;
        }

        /* 强制复用导航栏 */
        .ieg_dcb8-synapse {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .ieg_dcb8-enclave {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .ieg_dcb8-flux-wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 72px;
            flex-wrap: wrap;
        }

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

        .ieg_dcb8-flux-links {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

        .ieg_dcb8-flux-link {
            text-decoration: none;
            color: var(--ieg_dcb8-text);
            font-weight: 500;
            font-size: 15px;
            transition: var(--ieg_dcb8-transition);
        }

        .ieg_dcb8-flux-link:hover {
            color: var(--ieg_dcb8-primary);
        }

        .ieg_dcb8-flux-link.active {
            color: var(--ieg_dcb8-primary);
            position: relative;
        }

        .ieg_dcb8-flux-link.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--ieg_dcb8-primary);
        }

        /* Hero: Cinematic Strip 布局 */
        .ieg_dcb8-zenith {
            padding-top: 140px;
            padding-bottom: 80px;
            background: linear-gradient(180deg, #fff 0%, #fff5fa 100%);
            overflow: hidden;
        }

        .ieg_dcb8-beam-strip {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 60px;
            padding: 0 5vw;
        }

        .ieg_dcb8-glimmer-item {
            flex: 1;
            min-width: 300px;
            height: 450px;
            border-radius: var(--ieg_dcb8-radius);
            background: var(--ieg_dcb8-dark);
            position: relative;
            overflow: hidden;
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 40px;
            color: #fff;
            box-shadow: var(--ieg_dcb8-shadow);
        }

        .ieg_dcb8-glimmer-item:hover {
            transform: scale(1.02);
        }

        .ieg_dcb8-glimmer-item:nth-child(2) {
            background-color: var(--ieg_dcb8-primary);
        }

        .ieg_dcb8-glimmer-item svg {
            position: absolute;
            top: 40px;
            right: 40px;
            width: 80px;
            height: 80px;
            opacity: 0.2;
        }

        .ieg_dcb8-glimmer-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .ieg_dcb8-glimmer-desc {
            font-size: 16px;
            opacity: 0.9;
        }

        /* 内容容器 */
        .ieg_dcb8-vault {
            max-width: 1100px;
            margin: 0 auto;
            padding: 100px 24px;
        }

        .ieg_dcb8-cradle {
            margin-bottom: 80px;
            text-align: center;
        }

        h1.ieg_dcb8-main-title {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 800;
            color: var(--ieg_dcb8-dark);
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .ieg_dcb8-intro-text {
            font-size: 18px;
            color: var(--ieg_dcb8-gray);
            max-width: 800px;
            margin: 0 auto;
        }

        /* 协作功能卡片 */
        .ieg_dcb8-capsule-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .ieg_dcb8-mote {
            padding: 40px;
            background: #fff;
            border-radius: var(--ieg_dcb8-radius);
            border: 1px solid rgba(0,0,0,0.06);
            transition: all var(--ieg_dcb8-transition);
        }

        .ieg_dcb8-mote:hover {
            border-color: var(--ieg_dcb8-primary);
            box-shadow: var(--ieg_dcb8-shadow);
        }

        .ieg_dcb8-icon-box {
            width: 64px;
            height: 64px;
            background: var(--ieg_dcb8-primary-soft);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--ieg_dcb8-primary);
        }

        .ieg_dcb8-mote h2 {
            font-size: 22px;
            margin-bottom: 16px;
            color: var(--ieg_dcb8-dark);
        }

        .ieg_dcb8-mote p {
            font-size: 15px;
            color: var(--ieg_dcb8-gray);
        }

        /* 交互按钮 */
        .ieg_dcb8-spark {
            display: inline-flex;
            align-items: center;
            padding: 14px 32px;
            background: var(--ieg_dcb8-primary);
            color: #fff;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            margin-top: 40px;
            transition: var(--ieg_dcb8-transition);
        }

        .ieg_dcb8-spark:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(211, 74, 143, 0.3);
            filter: brightness(1.1);
        }

        /* 页脚 */
        .ieg_dcb8-echo {
            background: var(--ieg_dcb8-dark);
            padding: 80px 0 40px;
            color: rgba(255,255,255,0.6);
        }

        .ieg_dcb8-residue-wrap {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 40px;
            margin-bottom: 40px;
        }

        .ieg_dcb8-residue-brand h3 {
            color: #fff;
            font-size: 24px;
            margin-bottom: 16px;
        }

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

        .ieg_dcb8-residue-col h4 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .ieg_dcb8-residue-col a {
            display: block;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            margin-bottom: 10px;
            font-size: 14px;
            transition: var(--ieg_dcb8-transition);
        }

        .ieg_dcb8-residue-col a:hover {
            color: var(--ieg_dcb8-primary);
        }

        .ieg_dcb8-copyright {
            text-align: center;
            font-size: 13px;
        }

        @media (max-width: 768px) {
            .ieg_dcb8-flux-links { display: none; }
            .ieg_dcb8-beam-strip { padding: 0 20px; }
            .ieg_dcb8-glimmer-item { height: 300px; min-width: 100%; }
            .ieg_dcb8-vault { padding: 60px 20px; }
        }

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

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

.ieg_dcb8-hdr-synapse p,
.ieg_dcb8-hdr-synapse h1,
.ieg_dcb8-hdr-synapse h2,
.ieg_dcb8-hdr-synapse h3,
.ieg_dcb8-hdr-synapse h4,
.ieg_dcb8-hdr-synapse h5,
.ieg_dcb8-hdr-synapse h6 {
    text-decoration: none;
}

.ieg_dcb8-hdr-synapse img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.ieg_dcb8-hdr-synapse {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.ieg_dcb8-hdr-synapse a.ieg_dcb8-hdr-flux-link {
    --aisite-shell-nav-padding: 0;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: flex;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.ieg_dcb8-hdr-synapse a.ieg_dcb8-hdr-flux-link,
.ieg_dcb8-hdr-synapse a.ieg_dcb8-hdr-flux-link:hover,
.ieg_dcb8-hdr-synapse a.ieg_dcb8-hdr-flux-link:focus,
.ieg_dcb8-hdr-synapse a.ieg_dcb8-hdr-flux-link:active,
.ieg_dcb8-hdr-synapse a.ieg_dcb8-hdr-flux-link.active,
.ieg_dcb8-hdr-synapse a.ieg_dcb8-hdr-flux-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);
}

.ieg_dcb8-hdr-synapse .ieg_dcb8-hdr-enclave{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.ieg_dcb8-hdr-synapse{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(211, 74, 143, 0.1);
        }

.ieg_dcb8-hdr-synapse .ieg_dcb8-hdr-flux-wrap{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

.ieg_dcb8-hdr-synapse .ieg_dcb8-hdr-logo{
            height: 32px;
            display: flex;
            align-items: center;
        }

.ieg_dcb8-hdr-synapse .ieg_dcb8-hdr-logo img{
            height: 100%;
            width: auto;
        }

.ieg_dcb8-hdr-synapse .ieg_dcb8-hdr-flux-links{
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }

.ieg_dcb8-hdr-synapse .ieg_dcb8-hdr-flux-link{
            font-size: 14px;
            font-weight: 500;
            color: #5c536b;
            position: relative;
        }

.ieg_dcb8-hdr-synapse .ieg_dcb8-hdr-flux-link:hover, .ieg_dcb8-hdr-synapse .ieg_dcb8-hdr-flux-link.active{
            color: #d34a8f;
        }

.ieg_dcb8-hdr-synapse .ieg_dcb8-hdr-flux-link.active::after{
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #d34a8f;
        }

@media (max-width: 768px){.ieg_dcb8-hdr-synapse .ieg_dcb8-hdr-flux-links{
                display: none; 
            }}

.ieg_dcb8-hdr-synapse {
    background: rgb(255, 255, 255);
    background-image: none;
}

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

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

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

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

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

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

.ieg_dcb8-ftr-echo .ieg_dcb8-ftr-enclave{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.ieg_dcb8-ftr-echo{
            background: #110d18;
            color: #fff;
            padding: 80px 0 40px;
            margin-top: 100px;
        }

.ieg_dcb8-ftr-echo .ieg_dcb8-ftr-residue-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

.ieg_dcb8-ftr-echo .ieg_dcb8-ftr-residue-brand h4{
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 16px;
            color: #d34a8f;
        }

.ieg_dcb8-ftr-echo .ieg_dcb8-ftr-residue-brand p{
            font-size: 14px;
            opacity: 0.6;
            margin-bottom: 24px;
        }

.ieg_dcb8-ftr-echo .ieg_dcb8-ftr-residue-list h5{
            font-size: 16px;
            margin-bottom: 20px;
            font-weight: 600;
        }

.ieg_dcb8-ftr-echo .ieg_dcb8-ftr-residue-list a{
            display: block;
            font-size: 14px;
            opacity: 0.6;
            margin-bottom: 12px;
        }

.ieg_dcb8-ftr-echo .ieg_dcb8-ftr-residue-list a:hover{
            opacity: 1;
            color: #d34a8f;
        }

.ieg_dcb8-ftr-echo .ieg_dcb8-ftr-echo-bottom{
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            font-size: 13px;
            opacity: 0.4;
        }