/* ==================== 基础与排版重置 ==================== */
        :root {
            --brand-primary: #8264f2;
            --brand-primary-hover: #6a4bd8;
            --brand-secondary: #00d2ff;
            --bg-page: #f8f9fe;
            --bg-surface: #ffffff;
            --text-main: #1a1528;
            --text-muted: #6b6280;
            --radius-lg: 24px;
            --radius-md: 16px;
            --radius-sm: 8px;
            --shadow-soft: 0 12px 32px rgba(130, 100, 242, 0.08);
            --shadow-hover: 0 20px 48px rgba(130, 100, 242, 0.15);
            --transition-base: all 0.25s ease;
            --container-w: 1280px;
        }

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

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

        a {
            text-decoration: none;
            color: inherit;
        }

        /* ==================== 结构容器 ==================== */
        /* 替代 [role="banner"] */
        .apex-zone {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(130, 100, 242, 0.1);
        }

        /* 顶部内容约束 */
        .sync-mesh {
            max-width: var(--container-w);
            margin: 0 auto;
            padding: 16px 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            min-width: 0;
        }

        /* 替代 logo */
        .crest {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            min-width: 0;
        }

        .crest img {
            height: 36px;
            width: auto;
            display: block;
        }

        /* 替代 [role="navigation"] */
        .sync-array {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            min-width: 0;
        }

        /* 替代 [role="navigation"] link */
        .xwave-bond {
            padding: 8px 16px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-muted);
            border-radius: var(--radius-sm);
            transition: var(--transition-base);
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .xwave-bond:hover,
        .xwave-bond.active {
            color: var(--brand-primary);
            background: rgba(130, 100, 242, 0.08);
        }

        /* 替代 main */
        .mesh-shell {
            display: block;
            min-height: 80vh;
        }

        /* ==================== 1. Hero 区域 (vertical_stack 原型) ==================== */
        /* 替代 hero section */
        .shout-realm {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            /* 满足 flex 强制规则 */
            flex-wrap: wrap;
            min-width: 0;
            background: linear-gradient(135deg, #f8f9fe 0%, #ece9ff 100%);
            padding-top: 80px;
            overflow: hidden;
        }

        .shout-cluster {
            max-width: 900px;
            width: 100%;
            padding: 0 24px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-wrap: wrap;
            min-width: 0;
            margin-bottom: 40px;
        }

        /* 替代 h1 */
        .flare-peak {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: #110d1a;
            margin-bottom: 24px;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .flare-peak span {
            background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* 替代 hero description */
        .pulse-yarn {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: var(--text-muted);
            max-width: 720px;
            margin-bottom: 40px;
            line-height: 1.8;
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all;
        }

        /* 替代 cta btn */
        .spark-emit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 40px;
            background: var(--brand-primary);
            color: #fff;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 100px;
            box-shadow: 0 8px 24px rgba(130, 100, 242, 0.4);
            transition: var(--transition-base);
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .spark-emit:hover,
        .spark-emit:focus {
            background: var(--brand-primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(130, 100, 242, 0.5);
        }

        /* Hero 全宽底部视觉块 (满足 vertical_stack 蓝图) */
        .shout-band {
            width: 100%;
            height: 300px;
            background: linear-gradient(to right, rgba(130, 100, 242, 0.05) 1px, transparent 1px),
                        linear-gradient(to bottom, rgba(130, 100, 242, 0.05) 1px, transparent 1px);
            background-size: 40px 40px;
            border-top: 1px solid rgba(130, 100, 242, 0.1);
            position: relative;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: flex-end;
            min-width: 0;
            padding: 0 24px;
        }

        .shout-shell {
            width: 100%;
            max-width: 1000px;
            height: 80%;
            background: var(--bg-surface);
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
            box-shadow: 0 -20px 40px rgba(0,0,0,0.05);
            border: 1px solid rgba(130, 100, 242, 0.1);
            border-bottom: none;
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
            padding: 20px;
            gap: 16px;
        }

        .shout-speck {
            height: 12px;
            border-radius: 6px;
            background: rgba(130, 100, 242, 0.1);
            flex: 1;
            min-width: 100px;
        }

        /* ==================== 2. 能力特色 (Features) ==================== */
        .zone-realm {
            max-width: var(--container-w);
            margin: 0 auto;
            padding: 100px 24px;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            align-items: center;
            min-width: 0;
        }

        /* 替代 section h2 */
        .zone-peak {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 60px;
            text-align: center;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .zone-cluster {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            gap: 24px;
            min-width: 0;
        }

        /* 替代 feature card */
        .packet-speck {
            flex: 1;
            min-width: 320px;
            background: var(--bg-surface);
            border-radius: var(--radius-lg);
            padding: 48px 40px;
            box-shadow: var(--shadow-soft);
            transition: var(--transition-base);
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        .packet-speck:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(130, 100, 242, 0.2);
        }

        /* 替代 feature icon */
        .glyph-chime {
            width: 64px;
            height: 64px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(130, 100, 242, 0.1) 0%, rgba(0, 210, 255, 0.1) 100%);
            border-radius: var(--radius-md);
            color: var(--brand-primary);
        }

        .glyph-chime svg {
            width: 32px;
            height: 32px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .packet-peak {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 16px;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .packet-yarn {
            color: var(--text-muted);
            line-height: 1.7;
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all;
        }

        /* ==================== 3. 插件生态 (Aside) ==================== */
        .realm-band {
            background: var(--bg-surface);
            padding: 100px 0;
            border-top: 1px solid rgba(130, 100, 242, 0.05);
            border-bottom: 1px solid rgba(130, 100, 242, 0.05);
            display: block;
        }

        .realm-mesh {
            max-width: var(--container-w);
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 60px;
            min-width: 0;
        }

        .realm-yarn-cluster {
            flex: 1;
            min-width: 340px;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            min-width: 0;
        }

        .realm-peak {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 24px;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .realm-yarn {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 32px;
            line-height: 1.8;
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all;
        }

        .realm-lens-cluster {
            flex: 1.2;
            min-width: 400px;
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

        /* 替代 img */
        .lens-speck {
            width: 100%;
            height: auto;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-hover);
            display: block;
        }

        .ping-emit {
            display: inline-flex;
            align-items: center;
            font-weight: 600;
            color: var(--brand-primary);
            font-size: 1.1rem;
            transition: var(--transition-base);
            word-break: break-word;
            overflow-wrap: break-word;
            align-self: flex-start;
        }

        .ping-emit:hover {
            color: var(--brand-primary-hover);
            gap: 8px;
        }

        .ping-emit svg {
            width: 20px;
            height: 20px;
            margin-left: 4px;
            transition: var(--transition-base);
        }

        .ping-emit:hover svg {
            transform: translateX(4px);
        }

        /* ==================== 4. 资讯动态 (Div) ==================== */
        .mesh-cluster {
            max-width: var(--container-w);
            margin: 0 auto;
            padding: 100px 24px;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            min-width: 0;
        }

        .mesh-peak {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 60px;
            text-align: center;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .mesh-zone {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            min-width: 0;
        }

        .blip-speck {
            flex: 1;
            min-width: 320px;
            background: var(--bg-surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: var(--transition-base);
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            border: 1px solid rgba(130, 100, 242, 0.05);
        }

        .blip-speck:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .blip-lens-shell {
            width: 100%;
            height: 240px;
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

        .blip-lens-shell img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-base);
        }

        .blip-speck:hover .blip-lens-shell img {
            transform: scale(1.05);
        }

        .blip-yarn-shell {
            padding: 32px;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            flex: 1;
            min-width: 0;
        }

        .blip-band {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--brand-primary);
            margin-bottom: 12px;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .blip-peak {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.4;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .blip-yarn {
            color: var(--text-muted);
            margin-bottom: 24px;
            flex: 1;
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all;
        }

        /* 无图文章块样式 */
        .blip-solid-shell {
            height: 240px;
            background: linear-gradient(135deg, #f0ecff 0%, #e6f7ff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-primary);
            flex-wrap: wrap;
            min-width: 0;
        }
        
        .blip-solid-shell svg {
            width: 64px;
            height: 64px;
            opacity: 0.5;
        }

        /* ==================== Footer ==================== */
        /* 替代 [role="contentinfo"] */
        .base-root {
            background: #110d1a;
            color: rgba(255, 255, 255, 0.7);
            padding: 80px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .base-mesh {
            max-width: var(--container-w);
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            min-width: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 60px;
            margin-bottom: 40px;
        }

        .anchor-cluster {
            flex: 1;
            min-width: 240px;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            min-width: 0;
        }

        .anchor-peak {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 24px;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .anchor-yarn {
            line-height: 1.8;
            margin-bottom: 24px;
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all;
        }

        .anchor-array {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 16px;
            min-width: 0;
        }

        .anchor-bond {
            color: inherit;
            transition: var(--transition-base);
            word-break: break-word;
            overflow-wrap: break-word;
            align-self: flex-start;
        }

        .anchor-bond:hover {
            color: #ffffff;
            padding-left: 4px;
        }

        .echo-zone {
            max-width: var(--container-w);
            margin: 0 auto;
            padding: 0 24px;
            text-align: center;
            font-size: 0.9rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            min-width: 0;
        }

        .echo-yarn {
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* ==================== 响应式断点 ==================== */
        @media (max-width: 1024px) {
            .realm-mesh {
                flex-direction: column;
                align-items: flex-start;
            }
            .realm-lens-cluster {
                width: 100%;
                min-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .sync-array {
                display: none; /* 移动端简化演示，实际应有汉堡菜单，此处遵循全显示或简化逻辑，题目允许自由设计 */
            }
            .zone-cluster,
            .mesh-zone {
                flex-direction: column;
            }
            .packet-speck,
            .blip-speck {
                min-width: 100%;
            }
            .base-mesh {
                flex-direction: column;
            }
            .shout-band {
                height: 150px;
            }
        }

.sync-apex-zone {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
}
.sync-apex-zone,
.sync-apex-zone *,
.sync-apex-zone *::before,
.sync-apex-zone *::after {
    box-sizing: border-box;
}

.sync-apex-zone [role="navigation"],
.sync-apex-zone div,
.sync-apex-zone section,
.sync-apex-zone article,
.sync-apex-zone aside,
.sync-apex-zone p,
.sync-apex-zone h1,
.sync-apex-zone h2,
.sync-apex-zone h3,
.sync-apex-zone h4,
.sync-apex-zone h5,
.sync-apex-zone h6,
.sync-apex-zone a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.sync-apex-zone p,
.sync-apex-zone h1,
.sync-apex-zone h2,
.sync-apex-zone h3,
.sync-apex-zone h4,
.sync-apex-zone h5,
.sync-apex-zone h6 {
    text-decoration: none;
}

.sync-apex-zone img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.sync-apex-zone {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.sync-apex-zone a.sync-xwave-bond {
    --aisite-shell-nav-padding: 8px 16px;
    --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;
}

.sync-apex-zone a.sync-xwave-bond,
.sync-apex-zone a.sync-xwave-bond:hover,
.sync-apex-zone a.sync-xwave-bond:focus,
.sync-apex-zone a.sync-xwave-bond:active,
.sync-apex-zone a.sync-xwave-bond.active,
.sync-apex-zone a.sync-xwave-bond[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);
}

.sync-apex-zone{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(130, 100, 242, 0.1);
        }

.sync-apex-zone .sync-sync-mesh{
            max-width: 1280px;
            margin: 0 auto;
            padding: 16px 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            min-width: 0;
        }

.sync-apex-zone .sync-crest{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            min-width: 0;
        }

.sync-apex-zone .sync-crest img{
            height: 36px;
            width: auto;
            display: block;
        }

.sync-apex-zone .sync-sync-array{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            min-width: 0;
        }

.sync-apex-zone .sync-xwave-bond{
            padding: 8px 16px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #6b6280;
            border-radius: 8px;
            transition: all 0.25s ease;
            word-break: break-word;
            overflow-wrap: break-word;
        }

.sync-apex-zone .sync-xwave-bond:hover, .sync-apex-zone .sync-xwave-bond.active{
            color: #8264f2;
            background: rgba(130, 100, 242, 0.08);
        }

@media (max-width: 768px){.sync-apex-zone .sync-sync-array{
                display: none; 
            }}

.sync-apex-zone {
    background: rgb(255, 255, 255);
    background-image: none;
}

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

.base-base-root [role="navigation"],
.base-base-root div,
.base-base-root section,
.base-base-root article,
.base-base-root aside,
.base-base-root p,
.base-base-root h1,
.base-base-root h2,
.base-base-root h3,
.base-base-root h4,
.base-base-root h5,
.base-base-root h6,
.base-base-root a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

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

.base-base-root{
            background: #110d1a;
            color: rgba(255, 255, 255, 0.7);
            padding: 80px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

.base-base-root .base-base-mesh{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            min-width: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 60px;
            margin-bottom: 40px;
        }

.base-base-root .base-anchor-cluster{
            flex: 1;
            min-width: 240px;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            min-width: 0;
        }

.base-base-root .base-anchor-peak{
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 24px;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
        }

.base-base-root .base-anchor-yarn{
            line-height: 1.8;
            margin-bottom: 24px;
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all;
        }

.base-base-root .base-anchor-array{
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 16px;
            min-width: 0;
        }

.base-base-root .base-anchor-bond{
            color: inherit;
            transition: all 0.25s ease;
            word-break: break-word;
            overflow-wrap: break-word;
            align-self: flex-start;
        }

.base-base-root .base-anchor-bond:hover{
            color: #ffffff;
            padding-left: 4px;
        }

.base-base-root .base-echo-zone{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            text-align: center;
            font-size: 0.9rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            min-width: 0;
        }

.base-base-root .base-echo-yarn{
            word-break: break-word;
            overflow-wrap: break-word;
        }

@media (max-width: 768px){.base-base-root .base-base-mesh{
                flex-direction: column;
            }}