/* 杂志专题设计基因系统 */
        :root {
            --brand: #8d57d4;
            --brand-light: #b894ec;
            --brand-dark: #5c2fa8;
            --accent: #f0e6ff;
            --dark: #120e1a;
            --slate: #1f1b29;
            --muted: #88809c;
            --light: #f8f6fc;
            --white: #ffffff;
            --radius-sm: 4px;
            --radius-lg: 10px;
            --shadow: 0 10px 30px rgba(141, 87, 212, 0.08);
            --shadow-hover: 0 20px 40px rgba(141, 87, 212, 0.16);
            --transition: 0.25s ease;
        }

        /* 基础重置 */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans CJK SC", sans-serif;
            background-color: var(--light);
            color: var(--slate);
            line-height: 1.7;
            overflow-x: hidden;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition), background-color var(--transition);
        }

        /* 顶部导航区域 - role="banner" */
        .spire {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: rgba(248, 246, 252, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(141, 87, 212, 0.1);
        }

        .strada {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1300px;
            margin: 0 auto;
            padding: 16px 24px;
        }

        .glyph {
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        .nexus {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
        }

        .nexus-tether {
            font-size: 15px;
            font-weight: 500;
            padding: 8px 18px;
            border-radius: var(--radius-sm);
            color: var(--slate);
            transition: all var(--transition);
        }

        .nexus-tether:hover {
            color: var(--brand);
            background-color: rgba(141, 87, 212, 0.05);
        }

        .nexus-tether.active {
            color: var(--white);
            background-color: var(--brand);
        }

        /* 顶部快速动作 */
        .beacon {
            display: flex;
            align-items: center;
        }

        .warp-mini {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            background-color: var(--slate);
            color: var(--white);
            transition: all var(--transition);
        }

        .warp-mini:hover {
            background-color: var(--brand);
            color: var(--white);
        }

        /* 主内容容器 */
        .conduit {
            max-width: 100%;
            margin: 0 auto;
        }

        /* HERO区结构蓝图: split_diagonal */
        .apex {
            position: relative;
            background-color: var(--dark);
            color: var(--white);
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
            min-height: 620px;
            align-items: stretch;
        }

        .diagonal-opposite {
            flex: 1 1 50%;
            min-width: 320px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px 60px;
            z-index: 5;
            position: relative;
        }

        .diagonal-fill {
            flex: 1 1 50%;
            min-width: 320px;
            position: relative;
            overflow: hidden;
            background-color: var(--slate);
            clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mirage-apex {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .diagonal-fill:hover .mirage-apex {
            transform: scale(1.03);
        }

        /* Hero 内容排版 */
        .vertex-primary {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            line-height: 1.25;
            color: var(--white);
            margin-bottom: 16px;
            white-space: normal;
        }

        .seam-highlight {
            display: inline-block;
            color: var(--brand-light);
            border-bottom: 3px solid var(--brand);
            padding-bottom: 2px;
        }

        .scribe-lead {
            font-size: 18px;
            line-height: 1.6;
            color: var(--muted);
            margin-bottom: 32px;
            max-width: 580px;
        }

        .cluster-volt {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 40px;
        }

        .warp-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 600;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            background-color: var(--brand);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(141, 87, 212, 0.3);
            transition: all var(--transition);
        }

        .warp-primary:hover {
            background-color: var(--brand-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(141, 87, 212, 0.4);
        }

        .warp-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 600;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            background-color: transparent;
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.25);
            transition: all var(--transition);
        }

        .warp-secondary:hover {
            border-color: var(--brand-light);
            background-color: rgba(255, 255, 255, 0.05);
            transform: translateY(-2px);
        }

        /* 核心价值条 */
        .seam-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
        }

        .bead-highlight {
            flex: 1 1 180px;
            min-width: 0;
        }

        .vertex-highlight {
            font-size: 16px;
            font-weight: 700;
            color: var(--brand-light);
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .scribe-highlight {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.5;
        }

        /* 特性展示区 (faq/capabilities) */
        .matrix {
            max-width: 1300px;
            margin: 0 auto;
            padding: 100px 24px;
        }

        .sphere-spire {
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .vertex-conduit {
            font-size: clamp(28px, 3.5vw, 38px);
            font-weight: 800;
            color: var(--slate);
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .scribe-conduit {
            font-size: 16px;
            color: var(--muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* 特性网格 */
        .cluster-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .capsul-feature {
            background-color: var(--white);
            border-radius: var(--radius-lg);
            padding: 36px;
            box-shadow: var(--shadow);
            transition: all var(--transition);
            border: 1px solid rgba(141, 87, 212, 0.04);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .capsul-feature:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(141, 87, 212, 0.15);
        }

        .crest-feature {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-sm);
            background-color: var(--accent);
            color: var(--brand);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .crest-feature svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .vertex-packet {
            font-size: 20px;
            font-weight: 700;
            color: var(--slate);
            margin-bottom: 12px;
        }

        .scribe-packet {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6;
        }

        /* 数据流面板 UI 展示 */
        .data-packet {
            background-color: var(--slate);
            border-radius: var(--radius-lg);
            padding: 24px;
            color: var(--white);
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, 0.05);
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
        }

        .packet-spire {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 16px;
            margin-bottom: 20px;
        }

        .packet-dots {
            display: flex;
            gap: 6px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }
        .dot:nth-child(1) { background-color: #ff5f56; }
        .dot:nth-child(2) { background-color: #ffbd2e; }
        .dot:nth-child(3) { background-color: #27c93f; }

        .packet-vertex {
            font-size: 13px;
            color: var(--muted);
            font-family: monospace;
        }

        .packet-body {
            font-family: "Fira Code", Consolas, Monaco, monospace;
            font-size: 13px;
            line-height: 1.6;
            overflow-x: auto;
        }

        .code-line {
            display: flex;
            gap: 16px;
            margin-bottom: 6px;
        }

        .code-num {
            color: rgba(255, 255, 255, 0.25);
            width: 20px;
            text-align: right;
            user-select: none;
        }

        .code-val {
            color: #d4d4d4;
        }

        .code-keyword { color: #569cd6; }
        .code-string { color: #ce9178; }
        .code-comment { color: #6a9955; }

        /* 三步极简上手流程 (steps) */
        .sphere {
            background-color: var(--white);
            border-top: 1px solid rgba(141, 87, 212, 0.08);
            border-bottom: 1px solid rgba(141, 87, 212, 0.08);
        }

        .sphere-conduit {
            max-width: 1300px;
            margin: 0 auto;
            padding: 100px 24px;
        }

        .cluster-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .capsul-step {
            position: relative;
            padding: 30px;
            border-radius: var(--radius-lg);
            background-color: var(--light);
            border: 1px solid rgba(141, 87, 212, 0.04);
            transition: all var(--transition);
        }

        .capsul-step:hover {
            transform: translateY(-3px);
            border-color: rgba(141, 87, 212, 0.15);
        }

        .step-num {
            position: absolute;
            top: -24px;
            left: 30px;
            font-size: 36px;
            font-weight: 900;
            color: var(--brand);
            background-color: var(--white);
            width: 54px;
            height: 54px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
        }

        .vertex-step {
            font-size: 18px;
            font-weight: 700;
            color: var(--slate);
            margin-top: 15px;
            margin-bottom: 12px;
        }

        .scribe-step {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6;
        }

        /* 常见故障排查区 */
        .matrix-faq {
            max-width: 900px;
            margin: 80px auto 0 auto;
            padding-top: 60px;
            border-top: 1px dashed rgba(141, 87, 212, 0.2);
        }

        .vertex-faq-conduit {
            font-size: 22px;
            font-weight: 800;
            color: var(--slate);
            text-align: center;
            margin-bottom: 30px;
        }

        .capsul-faq {
            margin-bottom: 18px;
            padding: 20px;
            background-color: var(--light);
            border-radius: var(--radius-sm);
        }

        .vertex-faq-q {
            font-size: 16px;
            font-weight: 700;
            color: var(--slate);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .vertex-faq-q::before {
            content: "?";
            display: inline-flex;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background-color: var(--brand);
            color: var(--white);
            font-size: 12px;
            align-items: center;
            justify-content: center;
        }

        .scribe-faq-a {
            font-size: 14px;
            color: var(--muted);
            padding-left: 30px;
            line-height: 1.6;
        }

        /* CTA 转换区 (action) */
        .aurora {
            background-color: var(--dark);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .aurora::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(141, 87, 212, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .aurora-conduit {
            max-width: 900px;
            margin: 0 auto;
            padding: 100px 24px;
            text-align: center;
            position: relative;
            z-index: 5;
        }

        .vertex-spark {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .scribe-spark {
            font-size: 16px;
            color: var(--muted);
            max-width: 600px;
            margin: 0 auto 40px auto;
        }

        .cluster-spark {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .warp-spark-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 600;
            padding: 16px 36px;
            border-radius: var(--radius-sm);
            background-color: var(--brand);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(141, 87, 212, 0.4);
            transition: all var(--transition);
        }

        .warp-spark-primary:hover {
            background-color: var(--brand-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(141, 87, 212, 0.5);
        }

        .warp-spark-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 600;
            padding: 16px 36px;
            border-radius: var(--radius-sm);
            background-color: transparent;
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all var(--transition);
        }

        .warp-spark-secondary:hover {
            border-color: var(--brand-light);
            background-color: rgba(255, 255, 255, 0.05);
            transform: translateY(-2px);
        }

        /* 页脚区域 - role="contentinfo" */
        .wake {
            background-color: var(--slate);
            color: var(--muted);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .abyss {
            max-width: 1300px;
            margin: 0 auto;
            padding: 60px 24px 30px 24px;
        }

        .bedrock {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }

        .anchor-brand {
            flex: 1 1 300px;
        }

        .brand-scribe {
            font-size: 24px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .scribe-wake {
            font-size: 14px;
            line-height: 1.6;
            max-width: 280px;
        }

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

        .cluster-wake-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .vertex-wake {
            font-size: 14px;
            font-weight: 700;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .tether {
            font-size: 14px;
            transition: color var(--transition);
        }

        .tether:hover {
            color: var(--brand-light);
        }

        .anchor-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 30px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            font-size: 13px;
        }

        /* 响应式断点控制 */
        @media (max-width: 1024px) {
            .diagonal-opposite {
                padding: 60px 40px;
            }
            .anchor-links {
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .strada {
                padding: 12px 16px;
            }
            .nexus {
                order: 3;
                width: 100%;
                justify-content: center;
                margin-top: 15px;
            }
            .apex {
                flex-direction: column;
            }
            .diagonal-opposite {
                flex: 1 1 auto;
                padding: 60px 20px 40px 20px;
            }
            .diagonal-fill {
                flex: 1 1 auto;
                min-height: 320px;
                clip-path: none;
            }
            .matrix {
                padding: 60px 16px;
            }
            .sphere-conduit {
                padding: 60px 16px;
            }
            .cluster-steps {
                gap: 50px;
            }
            .aurora-conduit {
                padding: 60px 16px;
            }
            .bedrock {
                flex-direction: column;
                gap: 30px;
            }
            .anchor-links {
                flex-direction: column;
                gap: 30px;
            }
        }

.nexus-spire{
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: rgba(248, 246, 252, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(141, 87, 212, 0.1);
        }

.nexus-spire .nexus-strada{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1300px;
            margin: 0 auto;
            padding: 16px 24px;
        }

.nexus-spire .nexus-glyph{
            display: flex;
            align-items: center;
            justify-content: center;
        }

.nexus-spire .nexus-glyph img{
            height: 38px;
            width: auto;
            display: block;
        }

.nexus-spire .nexus-nexus{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
        }

.nexus-spire .nexus-nexus-tether{
            font-size: 15px;
            font-weight: 500;
            padding: 8px 18px;
            border-radius: 4px;
            color: #1f1b29;
            transition: all 0.25s ease;
        }

.nexus-spire .nexus-nexus-tether:hover{
            color: #8d57d4;
            background-color: rgba(141, 87, 212, 0.05);
        }

.nexus-spire .nexus-nexus-tether.active{
            color: #ffffff;
            background-color: #8d57d4;
        }

.nexus-spire .nexus-beacon{
            display: flex;
            align-items: center;
        }

.nexus-spire .nexus-warp-mini{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 4px;
            background-color: #1f1b29;
            color: #ffffff;
            transition: all 0.25s ease;
        }

.nexus-spire .nexus-warp-mini:hover{
            background-color: #8d57d4;
            color: #ffffff;
        }

@media (max-width: 768px){.nexus-spire .nexus-strada{
                padding: 12px 16px;
            }

.nexus-spire .nexus-nexus{
                order: 3;
                width: 100%;
                justify-content: center;
                margin-top: 15px;
            }}

.nexus-spire {
    background: rgb(248, 246, 252);
    background-image: none;
}

.anchor-wake {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans CJK SC", sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--slate);
}
.anchor-wake,
.anchor-wake *,
.anchor-wake *::before,
.anchor-wake *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-wake{
            background-color: #1f1b29;
            color: #88809c;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

.anchor-wake .anchor-abyss{
            max-width: 1300px;
            margin: 0 auto;
            padding: 60px 24px 30px 24px;
        }

.anchor-wake .anchor-bedrock{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }

.anchor-wake .anchor-anchor-brand{
            flex: 1 1 300px;
        }

.anchor-wake .anchor-brand-scribe{
            font-size: 24px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

.anchor-wake .anchor-scribe-wake{
            font-size: 14px;
            line-height: 1.6;
            max-width: 280px;
        }

.anchor-wake .anchor-anchor-links{
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
        }

.anchor-wake .anchor-cluster-wake-links{
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.anchor-wake .anchor-vertex-wake{
            font-size: 14px;
            font-weight: 700;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

.anchor-wake .anchor-tether{
            font-size: 14px;
            transition: color 0.25s ease;
        }

.anchor-wake .anchor-tether:hover{
            color: #b894ec;
        }

.anchor-wake .anchor-anchor-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 30px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            font-size: 13px;
        }

@media (max-width: 1024px){.anchor-wake .anchor-anchor-links{
                gap: 40px;
            }}

@media (max-width: 768px){.anchor-wake .anchor-bedrock{
                flex-direction: column;
                gap: 30px;
            }

.anchor-wake .anchor-anchor-links{
                flex-direction: column;
                gap: 30px;
            }}