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

        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;
            word-break: keep-all;
        }

        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(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

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

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

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

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

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

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

        .snap {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary);
            color: #fff;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 4px 15px var(--primary-glow);
            border: none;
            cursor: pointer;
        }

        .snap:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px var(--primary-glow);
            opacity: 0.9;
        }

        /* 主体内容容器 */
        .sphere-vault {
            display: flex;
            flex-direction: column;
            width: 100%;
            min-height: 100vh;
            padding-top: 70px;
        }

        /* Section 1: Intro - Zenith (Split Diagonal Hero Variant) */
        .zenith-veil {
            display: flex;
            flex-wrap: wrap;
            min-height: 85vh;
            align-items: center;
            background: radial-gradient(circle at 70% 30%, #1a1a1a 0%, #0a0a0a 100%);
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
        }

        .zenith-sphere {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            width: 100%;
        }

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

        .zenith-crest {
            font-size: clamp(36px, 6vw, 64px);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .prime-lint {
            font-size: 18px;
            color: var(--text-dim);
            max-width: 540px;
            margin-bottom: 40px;
            word-break: break-word;
        }

        .lens-vault {
            flex: 1.2;
            min-width: 320px;
            position: relative;
        }

        .lens-veil {
            width: 100%;
            border-radius: var(--radius);
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.1);
            transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
            transition: var(--transition);
        }

        .lens-veil:hover {
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        }

        /* Section 2: Capability Grid - Shale */
        .shale-vault {
            padding: 100px 20px;
            background-color: var(--bg-deep);
        }

        .shale-sphere {
            max-width: 1200px;
            margin: 0 auto;
        }

        .shale-crest {
            font-size: 42px;
            text-align: center;
            margin-bottom: 60px;
            font-weight: 700;
        }

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

        .folio-bead {
            background: var(--surface);
            padding: 40px;
            border-radius: var(--radius);
            border: 1px solid rgba(255,255,255,0.05);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

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

        .pica-vault {
            width: 64px;
            height: 64px;
            background: rgba(218, 30, 46, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--primary);
        }

        .folio-crest {
            font-size: 24px;
            margin-bottom: 16px;
            color: #fff;
        }

        .folio-lint {
            color: var(--text-dim);
            font-size: 16px;
            flex-grow: 1;
        }

        /* Section 3: Guide Steps - Vista */
        .vista-casing {
            padding: 120px 20px;
            position: relative;
        }

        .vista-vault {
            max-width: 1000px;
            margin: 0 auto;
            background: linear-gradient(145deg, #141414 0%, #0a0a0a 100%);
            padding: 60px;
            border-radius: 30px;
            border: 1px solid rgba(255,255,255,0.03);
            text-align: center;
        }

        .vista-crest {
            font-size: 36px;
            margin-bottom: 50px;
            font-weight: 700;
        }

        .flux-ribbon {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin-bottom: 50px;
            position: relative;
        }

        .flux-bead {
            flex: 1;
            min-width: 220px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

        .jolt-sphere {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 20px;
            margin-bottom: 20px;
            box-shadow: 0 0 20px var(--primary-glow);
        }

        .flux-lint {
            font-weight: 600;
            font-size: 18px;
        }

        /* Footer - Bedrock */
        .bedrock-echo {
            background-color: var(--bg-deep);
            padding: 80px 20px 40px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

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

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

        .echo-crest {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 24px;
            color: #fff;
        }

        .echo-lint {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .echo-node {
            color: var(--text-dim);
            font-size: 14px;
        }

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

        .stem-lint {
            margin-top: 60px;
            text-align: center;
            font-size: 14px;
            color: #444;
            width: 100%;
        }

        /* 响应式优化 */
        @media (max-width: 1024px) {
            .zenith-crest { font-size: 48px; }
        }

        @media (max-width: 768px) {
            .orbit-ribbon { gap: 15px; }
            .spool { display: none; }
            .zenith-sphere { text-align: center; justify-content: center; }
            .prime-lint { margin-left: auto; margin-right: auto; }
            .lens-vault { transform: none; }
            .lens-veil { transform: none; }
            .shale-crest { font-size: 32px; }
            .vista-vault { padding: 40px 20px; }
        }

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