:root {
            --primary: #4fb3de;
            --text: #333;
            --text-soft: #666;
            --bg-light: #f0f9ff;
            --radius: 15px;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            --transition: 0.35s ease;
        }

        * {
            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: #fff;
            overflow-x: hidden;
        }

        /* 导航栏复用 */
        .crest {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid #f0f0f0;
        }

        .sougo {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            padding: 1rem 2rem;
            justify-content: space-between;
        }

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

        .tier {
            display: flex;
            gap: 2rem;
        }

        .tone {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
        }

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

        /* 主内容容器 */
        .vivid-matrix {
            padding-top: 80px;
        }

        /* Hero区 (reverse_split 变体) */
        .zenith-husk {
            display: flex;
            flex-wrap: wrap;
            min-height: 80vh;
            align-items: center;
            max-width: 1300px;
            margin: 0 auto;
            padding: 4rem 2rem;
            flex-direction: row-reverse; /* reverse_split 种子基因 */
        }

        .zenith-orbit {
            flex: 1;
            min-width: 320px;
            padding: 2rem;
            position: relative;
        }

        .zenith-pathway {
            flex: 1;
            min-width: 320px;
            padding: 2rem;
        }

        .apex-matrix {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            line-height: 1.2;
            color: #1a1c1e;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 1.5rem;
            word-break: keep-all;
        }

        .lore-vault {
            font-size: 1.15rem;
            color: var(--text-soft);
            margin-bottom: 2.5rem;
            max-width: 500px;
        }

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

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

        .optic-zenith {
            width: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transform: perspective(1000px) rotateY(-5deg);
            transition: var(--transition);
        }

        .optic-zenith:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        /* 皮肤画廊 (Gallery Section) */
        .cloudy-matrix {
            padding: 6rem 2rem;
            background: #fbfcfe;
        }

        .apex-batch {
            text-align: center;
            margin-bottom: 4rem;
        }

        .apex-batch h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .skinn-batch {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .skinn-shard {
            background: #fff;
            padding: 1.5rem;
            border-radius: 17px;
            border: 1px solid #f0f0f0;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

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

        .digit-stage {
            width: 60px;
            height: 60px;
            background: var(--bg-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .apex-seed {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }

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

        /* 风格探索 (Article Detail) */
        .vivid-vault {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .orbit-batch {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 3rem;
        }

        .glyph-shard {
            flex: 1;
            min-width: 280px;
            padding: 3rem 2rem;
            border-radius: 15px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .glyph-shard[data-style="minimal"] { background: #f8f9fa; }
        .glyph-shard[data-style="ancient"] { background: #fffaf0; }
        .glyph-shard[data-style="anime"] { background: #f0f7ff; }

        .glyph-shard:hover {
            border-color: var(--primary);
            background: #fff;
            box-shadow: var(--shadow);
        }

        /* 皮肤制作 (Steps Div) */
        .cloudy-stage {
            background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
            padding: 8rem 2rem;
        }

        .vein-husk {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
        }

        .vein-pathway {
            flex: 1;
            min-width: 320px;
        }

        .stage-seed {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .digit-vein {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
        }

        /* 页脚 */
        .sole {
            background: #1a1c1e;
            color: #fff;
            padding: 4rem 2rem;
        }

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

        .anchor-batch {
            flex: 1;
            min-width: 200px;
        }

        .anchor-batch h4 {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .anchor-batch a {
            display: block;
            color: #999;
            text-decoration: none;
            margin-bottom: 0.8rem;
            transition: var(--transition);
        }

        .anchor-batch a:hover {
            color: var(--primary);
        }

        .trace-sole {
            text-align: center;
            padding-top: 3rem;
            border-top: 1px solid #333;
            margin-top: 3rem;
            color: #666;
            font-size: 0.9rem;
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .sougo {
                flex-direction: column;
                gap: 1rem;
            }
            .tier {
                gap: 1rem;
                font-size: 0.85rem;
            }
            .zenith-husk {
                flex-direction: column;
                text-align: center;
            }
            .lore-vault {
                margin: 0 auto 2.5rem;
            }
            .optic-zenith {
                transform: none !important;
            }
        }

        /* 动态SVG背景 */
        .vivid-motion {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.4;
            pointer-events: none;
        }

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