:root {
            --primary: #4fb3de;
            --primary-soft: #e0f2fa;
            --text: #333333;
            --text-dim: #666666;
            --radius: 15px;
            --vibe-transition: 0.35s ease;
            --plate-bg: #ffffff;
            --ground: #f8fafc;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--text);
            line-height: 1.7;
            background-color: var(--ground);
            word-break: keep-all;
            overflow-x: hidden;
        }

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

        /* 导航系统 - 复用首页结构 */
        .crest {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

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

        .stroke {
            display: flex;
            align-items: center;
        }

        .stroke img {
            height: 32px;
            width: auto;
        }

        .pathway {
            display: flex;
            align-items: center;
        }

        .tier {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .tone {
            font-size: 15px;
            font-weight: 500;
            color: var(--text);
            position: relative;
            padding: 5px 0;
        }

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

        .tone.active {
            color: var(--primary);
        }

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

        /* 主内容布局 */
        .matrix {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 细胞词库 Hero 区 */
        .zenith {
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
            padding-top: 100px;
            padding-bottom: 60px;
        }

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

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

        .zenith-optic {
            flex: 1;
            min-width: 320px;
            position: relative;
        }

        .zenith-optic img {
            width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        .apex-matrix {
            font-size: clamp(2rem, 4vw, 3.2rem);
            line-height: 1.2;
            color: #1a1c1e;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -1px;
            word-break: break-word;
        }

        .zenith-summary {
            font-size: 1.15rem;
            color: var(--text-dim);
            margin-bottom: 35px;
            max-width: 500px;
        }

        .strike-primary {
            display: inline-flex;
            align-items: center;
            background: var(--primary);
            color: #fff;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 10px 20px rgba(79, 179, 222, 0.3);
            transition: var(--vibe-transition);
        }

        .strike-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(79, 179, 222, 0.4);
        }

        /* 行业分类面板 */
        .vault-acquire {
            padding: 100px 0;
            background-color: #fff;
        }

        .vault-crest {
            text-align: center;
            margin-bottom: 60px;
        }

        .vault-apex {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .vault-batch {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
        }

        .skinn-shard {
            flex: 1;
            min-width: 260px;
            max-width: 280px;
            background: #fff;
            padding: 2.5rem 2rem;
            border-radius: var(--radius);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            border: 1px solid #f0f0f0;
            transition: var(--vibe-transition);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .skinn-shard:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
            border-color: var(--primary);
        }

        .digit-aura {
            width: 56px;
            height: 56px;
            background: var(--primary-soft);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .skinn-apex {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .skinn-lore {
            font-size: 0.95rem;
            color: var(--text-dim);
            margin-bottom: 20px;
        }

        .skinn-seed-batch {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: auto;
        }

        .skinn-seed {
            font-size: 0.8rem;
            background: #f1f5f9;
            padding: 4px 10px;
            border-radius: 4px;
            color: #475569;
        }

        /* 智能管理与云同步 */
        .stage-capabilities {
            padding: 100px 0;
            background-color: var(--ground);
        }

        .capabilities-husk {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 60px;
        }

        .capabilities-optic {
            flex: 1.2;
            min-width: 320px;
        }

        .capabilities-optic img {
            width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
        }

        .capabilities-lore {
            flex: 1;
            min-width: 320px;
        }

        .capabilities-vein {
            margin-top: 40px;
        }

        .capabilities-seed {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .capabilities-digit {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            margin-top: 4px;
        }

        .capabilities-seed-apex {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .capabilities-seed-lore {
            font-size: 0.95rem;
            color: var(--text-dim);
        }

        /* 页脚区域 */
        .sole {
            background: #1a1c1e;
            color: #fff;
            padding: 80px 0 40px;
        }

        .sole-matrix {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

        .sole-lexis {
            flex: 1;
            min-width: 250px;
        }

        .sole-brand {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: #fff;
        }

        .sole-lore {
            color: #94a3b8;
            font-size: 0.9rem;
            max-width: 300px;
        }

        .sole-pathway {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
        }

        .sole-batch-apex {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #f1f5f9;
        }

        .sole-tier {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .sole-tone {
            font-size: 0.9rem;
            color: #94a3b8;
        }

        .sole-tone:hover {
            color: var(--primary);
        }

        .sole-anchor {
            width: 100%;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid #334155;
            text-align: center;
            font-size: 0.85rem;
            color: #64748b;
        }

        /* 响应式适配 */
        @media (max-width: 1024px) {
            .zenith-husk { flex-direction: column; text-align: center; }
            .zenith-summary { margin-left: auto; margin-right: auto; }
            .capabilities-husk { flex-direction: column-reverse; }
        }

        @media (max-width: 768px) {
            .tier { gap: 15px; justify-content: center; width: 100%; margin-top: 10px; }
            .sougo { height: auto; padding: 15px 20px; }
            .skinn-shard { max-width: 100%; width: 100%; }
            .apex-matrix { font-size: 2.2rem; }
        }

.sougo-crest{
            position: fixed;
            top: 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);
        }

.sougo-crest .sougo-sougo{
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

.sougo-crest .sougo-stroke{
            height: 32px;
            display: flex;
            align-items: center;
        }

.sougo-crest .sougo-stroke img{
            height: 100%;
            width: auto;
        }

.sougo-crest .sougo-pathway{
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

.sougo-crest .sougo-tier{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

.sougo-crest .sougo-tone{
            text-decoration: none;
            color: #555;
            font-weight: 500;
            font-size: 0.95rem;
            transition: 0.35s ease;
            position: relative;
        }

.sougo-crest .sougo-tone:hover, .sougo-crest .sougo-tone.active{
            color: #4fb3de;
        }

.sougo-crest .sougo-tone.active::after{
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #4fb3de;
        }

@media (max-width: 768px){.sougo-crest .sougo-tier{ display: none; }}

.sougo-crest {
    background: rgb(255, 255, 255);
    background-image: none;
}

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

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

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

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

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

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

.lexis-sole{
            background: #fff;
            padding: 4rem 5% 2rem;
            border-top: 1px solid #eee;
        }

.lexis-sole .lexis-lexis-batch{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
            gap: 3rem;
        }

.lexis-sole .lexis-anchor-col{
            flex: 1 1 200px;
            min-width: 0;
        }

.lexis-sole .lexis-apex-sole{
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #1a1c1e;
            font-weight: 600;
        }

.lexis-sole .lexis-tone-sole{
            display: block;
            color: #777;
            text-decoration: none;
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
            transition: 0.35s ease;
        }

.lexis-sole .lexis-tone-sole:hover{
            color: #4fb3de;
        }

.lexis-sole .lexis-trace-bottom{
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid #f5f5f5;
            color: #bbb;
            font-size: 0.85rem;
        }