:root {
            --primary: #da1e2e;
            --primary-glow: rgba(218, 30, 46, 0.4);
            --bg-dark: #0a0a0a;
            --bg-deep: #050505;
            --surface: #141414;
            --text-main: #f5f5f5;
            --text-dim: #a0a0a0;
            --radius: 20px;
            --transition: 0.25s ease;
        }

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

        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;
            line-height: 1.7;
            overflow-x: hidden;
        }

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

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

        .orbit-vault {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .orbit-ribbon {
            display: flex;
            align-items: center;
            gap: 48px;
        }

        .glyph img {
            height: 32px;
            display: block;
        }

        .spool {
            display: flex;
            gap: 32px;
        }

        .node {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-dim);
        }

        .node:hover, .node.active {
            color: var(--primary);
        }

        .snap {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 10px 20px var(--primary-glow);
            transition: transform 0.25s, box-shadow 0.25s;
        }

        .snap:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px var(--primary-glow);
        }

        /* 主体容器结构 */
        main {
            padding-top: 72px;
        }

        /* 1. 全平台覆盖 (Acquire) - split_diagonal 视觉 */
        .zenith-sphere {
            position: relative;
            min-height: 85vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--bg-deep);
        }

        .zenith-veil {
            max-width: 1280px;
            margin: 0 auto;
            padding: 60px 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            z-index: 2;
        }

        .zenith-sphere::after {
            content: '';
            position: absolute;
            top: 0;
            right: -10%;
            width: 60%;
            height: 100%;
            background: linear-gradient(135deg, rgba(218, 30, 46, 0.1) 0%, transparent 70%);
            clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
            z-index: 1;
        }

        .zenith-casing {
            flex: 1;
            min-width: 320px;
        }

        .zenith-crest {
            font-size: clamp(32px, 5vw, 56px);
            line-height: 1.2;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--text-main);
        }

        .zenith-lint {
            font-size: 18px;
            color: var(--text-dim);
            margin-bottom: 40px;
            max-width: 600px;
        }

        .shale-clump {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .jolt-bead {
            background: var(--surface);
            padding: 20px 30px;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            flex-direction: column;
            gap: 12px;
            min-width: 200px;
            flex: 1;
        }

        .pica-vault {
            width: 40px;
            height: 40px;
            fill: var(--primary);
        }

        .lens-prime {
            flex: 1;
            min-width: 320px;
            position: relative;
        }

        .lens-prime img {
            width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: 0 40px 100px rgba(0,0,0,0.5);
        }

        /* 2. 轻盈安装 (Comparison) */
        .prime-vault {
            padding: 100px 24px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .vista-crest {
            text-align: center;
            font-size: 36px;
            margin-bottom: 60px;
        }

        .folio-ribbon {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .folio {
            background: var(--surface);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            padding: 40px;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .folio:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            background: #1a1a1a;
        }

        .folio-crest {
            font-size: 22px;
            margin: 20px 0 12px;
        }

        .folio-lint {
            color: var(--text-dim);
            font-size: 15px;
        }

        /* 3. 更新动态 (Comparison) */
        .vista-casing {
            background: var(--bg-deep);
            padding: 100px 24px;
        }

        .vista-sphere {
            max-width: 900px;
            margin: 0 auto;
        }

        .shale-ribbon {
            border-left: 2px solid rgba(218, 30, 46, 0.2);
            padding-left: 40px;
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        .shale-bead {
            position: relative;
        }

        .shale-bead::before {
            content: '';
            position: absolute;
            left: -49px;
            top: 8px;
            width: 16px;
            height: 16px;
            background: var(--primary);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--primary-glow);
        }

        .shale-crest {
            font-size: 14px;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .shale-lint {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .shale-detail {
            color: var(--text-dim);
            font-size: 15px;
        }

        /* 页脚 */
        .echo {
            background: var(--bg-deep);
            padding: 80px 24px 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .echo-vault {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 60px;
        }

        .echo-clump {
            flex: 1;
            min-width: 200px;
        }

        .echo-crest {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--text-main);
        }

        .echo-node {
            display: block;
            margin-bottom: 12px;
            color: var(--text-dim);
            font-size: 14px;
        }

        .echo-node:hover {
            color: var(--primary);
        }

        .bedrock {
            max-width: 1280px;
            margin: 60px auto 0;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            color: var(--text-dim);
            font-size: 13px;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .orbit-ribbon { gap: 20px; }
            .spool { display: none; }
            .zenith-veil { padding: 40px 20px; text-align: center; }
            .zenith-sphere::after { display: none; }
            .shale-clump { justify-content: center; }
            .prime-vault { padding: 60px 20px; }
            .echo-vault { flex-direction: column; gap: 40px; }
        }

.nexus-apex{
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
        }

.nexus-apex .nexus-orbit-vault{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

.nexus-apex .nexus-orbit-ribbon{
            background: rgba(20, 20, 20, 0.85);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 50px;
            padding: 8px 32px;
            display: flex;
            align-items: center;
            gap: 40px;
        }

.nexus-apex .nexus-glyph{
            height: 32px;
            display: flex;
            align-items: center;
        }

.nexus-apex .nexus-glyph img{
            height: 100%;
            width: auto;
        }

.nexus-apex .nexus-spool{
            display: flex;
            gap: 28px;
            list-style: none;
        }

.nexus-apex .nexus-node{
            color: #a0a0a0;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: 0.25s ease;
        }

.nexus-apex .nexus-node:hover, .nexus-apex .nexus-node.active{
            color: #da1e2e;
        }

.nexus-apex .nexus-snap{
            display: inline-flex;
            align-items: center;
            padding: 16px 36px;
            background-color: #da1e2e;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 17px;
            transition: 0.25s ease;
            box-shadow: 0 10px 30px rgba(218, 30, 46, 0.4);
        }

.nexus-apex .nexus-snap:hover{
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(218, 30, 46, 0.4);
            filter: brightness(1.1);
        }

@media (max-width: 768px){.nexus-apex .nexus-orbit-vault{
                padding: 0 20px;
            }

.nexus-apex .nexus-orbit-ribbon{
                gap: 20px;
                padding: 8px 16px;
            }

.nexus-apex .nexus-spool{
                display: none; 
            }}

.echo-stem {
    font-family: "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text-main);
}
.echo-stem,
.echo-stem *,
.echo-stem *::before,
.echo-stem *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.echo-stem{
            background-color: #050505;
            padding: 80px 40px 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

.echo-stem .echo-bedrock-vault{
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 60px;
        }

.echo-stem .echo-bedrock-brand-veil{
            flex: 1;
            min-width: 280px;
        }

.echo-stem .echo-bedrock-crest{
            font-size: 24px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }

.echo-stem .echo-bedrock-lint{
            color: #a0a0a0;
            font-size: 14px;
            line-height: 2;
        }

.echo-stem .echo-bedrock-clump{
            display: flex;
            gap: 80px;
            flex-wrap: wrap;
        }

.echo-stem .echo-bedrock-bead{
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

.echo-stem .echo-bedrock-bead-crest{
            font-size: 16px;
            font-weight: 600;
            color: white;
        }

.echo-stem .echo-bedrock-node{
            text-decoration: none;
            color: #a0a0a0;
            font-size: 14px;
            transition: 0.25s ease;
        }

.echo-stem .echo-bedrock-node:hover{
            color: #da1e2e;
        }

.echo-stem .echo-bedrock-ribbon{
            max-width: 1200px;
            margin: 60px auto 0;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            color: #555;
            font-size: 13px;
        }