:root {
            --primary: #4fb3de;
            --text: #333;
            --radius: 15px;
            --bg-light: #f0f9ff;
            --transition: 0.35s ease;
        }

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

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

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

        /* 导航栏样式 - 强制复用首页风格 */
        .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;
            justify-content: space-between;
            padding: 0 20px;
            height: 70px;
        }

        .stroke {
            height: 32px;
        }

        .stroke img {
            height: 100%;
        }

        .pathway .tier {
            display: flex;
            flex-wrap: wrap;
        }

        .tone {
            padding: 10px 20px;
            font-weight: 500;
            color: #555;
            position: relative;
        }

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

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

        .tone.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 20px;
            right: 20px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }

        /* 主体容器 */
        .matrix {
            padding-top: 70px;
        }

        /* Hero区：AI 汪仔（Article - intro） */
        .zenith {
            min-height: 80vh;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            padding: 60px 5%;
            background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
            position: relative;
        }

        .husk-vivid {
            flex: 1;
            min-width: 320px;
            padding: 20px;
        }

        .apex-matrix {
            font-size: clamp(2rem, 5vw, 3.5rem);
            line-height: 1.2;
            color: #1a1c1e;
            font-weight: 800;
            margin-bottom: 24px;
            white-space: normal;
        }

        .lore-vault {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 30px;
            max-width: 600px;
            word-break: break-word;
        }

        .batch-orbit {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .strike-primary {
            background: var(--primary);
            color: #fff;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 10px 20px rgba(79, 179, 222, 0.3);
            display: inline-block;
        }

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

        .optic-zenith {
            flex: 1;
            min-width: 320px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .optic-husk {
            width: 100%;
            max-width: 550px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            overflow: hidden;
            background: #fff;
            border: 8px solid #fff;
        }

        .optic-husk img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* 动效汪仔图标 */
        .digit-motion {
            position: absolute;
            top: -20px;
            right: 10%;
            width: 80px;
            height: 80px;
            background: #fff;
            border-radius: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        /* 核心能力区（Article - capability） */
        .vivid-stage {
            padding: 100px 5%;
            background-color: #fff;
        }

        .apex-center {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: #1a1c1e;
        }

        .vault-matrix {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .skinn-shard {
            background: #fff;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            border: 1px solid #f0f0f0;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

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

        .digit-glass {
            width: 60px;
            height: 60px;
            background: rgba(79, 179, 222, 0.1);
            border-radius: 14px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--primary);
        }

        .digit-glass svg {
            width: 32px;
            height: 32px;
        }

        .apex-shard {
            font-size: 1.5rem;
            color: #1a1c1e;
            font-weight: 700;
        }

        .lore-shard {
            color: #666;
            font-size: 1rem;
        }

        .tier-seed {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 10px;
        }

        .seed-cloudy {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: #444;
        }

        .seed-cloudy::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
        }

        /* 翻译服务区 */
        .vivid-vein {
            background: #f8fbff;
            padding: 80px 5%;
        }

        .husk-translate {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
        }

        .optic-translate {
            flex: 1;
            min-width: 320px;
            display: flex;
            justify-content: center;
        }

        .glyph-translate {
            width: 100%;
            max-width: 500px;
            height: 350px;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            padding: 30px;
            position: relative;
            overflow: hidden;
        }

        .vein-trans {
            height: 2px;
            background: #eee;
            margin: 20px 0;
            position: relative;
        }

        .vein-trans::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 40%;
            background: var(--primary);
        }

        /* 纠错与效率（Section - closing） */
        .cloudy-anchor {
            padding: 100px 5%;
            background: #fff;
            text-align: center;
        }

        .vault-efficiency {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
        }

        .skinn-efficiency {
            flex: 1;
            min-width: 280px;
            padding: 30px;
            background: #fcfdfe;
            border-radius: 17px;
            border: 1px dashed #dceef7;
        }

        .digit-aura {
            width: 50px;
            height: 50px;
            margin: 0 auto 20px;
            background: #fff;
            border: 2px solid var(--primary);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--primary);
        }

        /* 页脚区 */
        .sole-trace {
            background: #1a1c1e;
            color: #fff;
            padding: 80px 5% 40px;
        }

        .vault-lexis {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            border-bottom: 1px solid #333;
            padding-bottom: 50px;
        }

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

        .lexis-batch h4 {
            font-size: 1.1rem;
            margin-bottom: 25px;
            color: #fff;
        }

        .lexis-tier {
            list-style: none;
        }

        .lexis-tier li {
            margin-bottom: 12px;
        }

        .lexis-tier a {
            color: #999;
            font-size: 0.9rem;
        }

        .lexis-tier a:hover {
            color: var(--primary);
        }

        .sole-anchor {
            text-align: center;
            padding-top: 30px;
            color: #666;
            font-size: 0.85rem;
        }

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

        @media (max-width: 768px) {
            .pathway {
                display: none;
            }
            .zenith {
                padding-top: 100px;
                text-align: center;
            }
            .batch-orbit {
                justify-content: center;
            }
            .apex-center {
                font-size: 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;
        }