/* ==========================================================================
           1. 基底与设计基因 (Design Family)
           ========================================================================== */
        :root {
            --accent: #cce760;
            --accent-hover: #b5cc55;
            --bg-main: #ffffff;
            --bg-alt: #f8fafc;
            --text-dark: #0f172a;
            --text-mut: #475569;
            --text-light: #94a3b8;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 19px;
            --shadow-base: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-float: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
            --transition: all 0.35s ease;
            --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: var(--font-family);
            background-color: var(--bg-main);
            color: var(--text-dark);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        /* 强制约束规则 */
        .flex-wrap { display: flex; flex-wrap: wrap; }
        .flex-wrap > * { min-width: 0; }
        .word-break {
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all; /* 中文优化 */
        }
        
        a { text-decoration: none; color: inherit; transition: var(--transition); }

        /* ==========================================================================
           2. 导航区域壳层复用 (Header Shell)
           ========================================================================== */
        .peta {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(15, 23, 42, 0.05);
        }
        .peta .cloak {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .tala {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }
        .tala > * { min-width: 0; }
        .crest {
            display: flex;
            align-items: center;
        }
        .crest img {
            height: 32px;
            width: auto;
            display: block;
        }
        .flock {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }
        .flock > * { min-width: 0; }
        .wire.plume {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-mut);
            padding: 0.5rem 0;
            position: relative;
        }
        .wire.plume:hover {
            color: var(--text-dark);
        }
        .wire.plume.active {
            color: var(--text-dark);
            font-weight: 600;
        }
        .wire.plume.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--accent);
            border-radius: 2px;
        }

        /* ==========================================================================
           3. 正文视觉变体 (Main Content)
           ========================================================================== */
        .agora {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Article - 重塑冷启动时间 (Hero Role) */
        .olympus {
            padding: 6rem 0 8rem;
            background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-main) 100%);
            position: relative;
            overflow: hidden;
        }
        .olympus::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -5%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(204,231,96,0.15) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            z-index: 0;
        }
        .soar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
            position: relative;
            z-index: 1;
        }
        .soar > * { min-width: 0; }
        
        .chant-mega {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            white-space: normal;
        }
        .olympus .yarn {
            font-size: 1.25rem;
            color: var(--text-mut);
            max-width: 500px;
            margin-bottom: 2.5rem;
        }

        /* 创意种子: card_float 视觉化 */
        .covey-float {
            flex: 1;
            min-width: 320px;
            position: relative;
            height: 400px;
        }
        .missiv {
            background: var(--bg-main);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            box-shadow: var(--shadow-float);
            position: absolute;
            width: 340px;
            border: 1px solid rgba(15, 23, 42, 0.03);
            transition: var(--transition);
        }
        .missiv:hover {
            transform: translateY(-8px);
        }
        .missiv-1 {
            top: 20px;
            left: 20px;
            z-index: 2;
        }
        .missiv-2 {
            bottom: 20px;
            right: 20px;
            z-index: 1;
            background: linear-gradient(135deg, var(--text-dark) 0%, #1e293b 100%);
            color: var(--bg-main);
        }
        .missiv-2 .chant-sub,
        .missiv-2 .yarn-sm {
            color: var(--bg-main);
        }
        .missiv-2 .yarn-sm { opacity: 0.8; }
        
        .rune {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        .rune-light { background: var(--bg-alt); color: var(--accent-hover); }
        .rune-dark { background: rgba(255,255,255,0.1); color: var(--accent); }
        
        .chant-sub {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            white-space: normal;
        }
        .yarn-sm {
            font-size: 0.95rem;
            color: var(--text-mut);
            line-height: 1.6;
        }

        /* Section - 性能指标深度解析 */
        .vault {
            padding: 6rem 0;
        }
        .vault-peta {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }
        .chant-core {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 1rem;
            white-space: normal;
        }
        .covey-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }
        .scroll {
            background: var(--bg-main);
            border-radius: var(--radius-md);
            padding: 3rem;
            border: 1px solid rgba(15, 23, 42, 0.06);
            box-shadow: var(--shadow-base);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }
        .scroll:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
            border-color: var(--accent);
        }
        .chant-data {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--text-dark);
            line-height: 1;
            margin: 1.5rem 0 1rem;
            letter-spacing: -0.03em;
        }
        .chant-data span {
            font-size: 1.5rem;
            color: var(--accent-hover);
            vertical-align: super;
        }

        /* Aside - 性能调优最佳实践 */
        .zenith-wrap {
            padding: 6rem 0;
            background: var(--bg-alt);
            border-radius: var(--radius-lg);
            margin-bottom: 6rem;
        }
        .covey-stack {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .envoy {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 2rem;
            background: var(--bg-main);
            padding: 2.5rem;
            border-radius: var(--radius-md);
            box-shadow: 0 2px 10px rgba(0,0,0,0.02);
            transition: var(--transition);
        }
        .envoy > * { min-width: 0; }
        .envoy:hover {
            box-shadow: var(--shadow-base);
        }
        .envoy .rune {
            margin-bottom: 0;
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            background: var(--bg-alt);
        }
        .envoy-body {
            flex: 1;
            min-width: 200px;
        }

        /* Action elements */
        .dash {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            background-color: var(--accent);
            color: var(--text-dark);
            font-weight: 600;
            border-radius: var(--radius-md);
            border: none;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.05rem;
        }
        .dash:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
        }

        /* ==========================================================================
           4. 页脚 (Footer)
           ========================================================================== */
        .hades {
            background: var(--text-dark);
            color: var(--bg-main);
            padding: 4rem 0 2rem;
        }
        .heel {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .realm {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 2rem;
            margin-bottom: 2rem;
        }
        .realm > * { min-width: 0; }
        .chant-brand {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }
        .styx {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .styx > * { min-width: 0; }
        .styx a:hover { color: var(--accent); }

        /* ==========================================================================
           5. 响应式 (Responsive)
           ========================================================================== */
        @media (max-width: 1024px) {
            .chant-mega { font-size: 3rem; }
            .covey-float { height: 450px; }
            .missiv { width: 300px; }
            .soar { gap: 2rem; }
        }
        @media (max-width: 768px) {
            .flock { display: none; /* 移动端菜单简化处理 */ }
            .soar { flex-direction: column; text-align: center; }
            .olympus .yarn { margin: 0 auto 2.5rem; }
            .covey-float { width: 100%; height: auto; display: flex; flex-direction: column; gap: 1rem; align-items: center; }
            .missiv { position: static; width: 100%; max-width: 380px; }
            .covey-grid { grid-template-columns: 1fr; }
            .envoy { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
            .realm, .styx { flex-direction: column; gap: 1rem; text-align: center; }
            .chant-mega { font-size: 2.25rem; }
            .vault { padding: 4rem 0; }
            .zenith-wrap { padding: 4rem 2rem; margin: 0 1rem 4rem; }
            .agora { padding: 0 1rem; }
        }

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

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

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

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

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

.tala-peta a.tala-wire.tala-plume {
    --aisite-shell-nav-padding: 0;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.tala-peta a.tala-wire.tala-plume,
.tala-peta a.tala-wire.tala-plume:hover,
.tala-peta a.tala-wire.tala-plume:focus,
.tala-peta a.tala-wire.tala-plume:active,
.tala-peta a.tala-wire.tala-plume.active,
.tala-peta a.tala-wire.tala-plume[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.tala-peta{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #e2e8f0;
            padding: 1rem 0;
        }

.tala-peta .tala-cloak{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

.tala-peta .tala-tala{
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            justify-content: space-between;
            align-items: center;
        }

.tala-peta .tala-crest{
            display: flex;
            align-items: center;
        }

.tala-peta .tala-crest img{
            height: 32px;
            width: auto;
        }

.tala-peta .tala-flock{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.tala-peta .tala-wire.tala-plume{
            font-size: 0.95rem;
            font-weight: 500;
            color: #475569;
            position: relative;
        }

.tala-peta .tala-wire.tala-plume:hover, .tala-peta .tala-wire.tala-plume.active{
            color: #0f172a;
        }

.tala-peta .tala-wire.tala-plume.active::after{
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #cce760;
            border-radius: 2px;
        }

@media (max-width: 768px){.tala-peta .tala-flock{
                display: none; 
            }

.tala-peta .tala-tala{
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

.tala-peta .tala-flock{
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
                width: 100%;
            }}

.tala-peta {
    background: rgb(255, 255, 255);
    background-image: none;
}

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

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

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

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

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

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

.hades-hades .hades-cloak{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

.hades-hades{
            background-color: #020617;
            color: #94a3b8;
            padding: 4rem 0 2rem;
        }

.hades-hades .hades-heel-top{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

.hades-hades .hades-heel-brand{
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.02em;
        }

.hades-hades .hades-styx-links{
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
        }

.hades-hades .hades-styx-col{
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

.hades-hades .hades-styx-chant{
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

.hades-hades .hades-wire.hades-trail{
            font-size: 0.9rem;
            transition: all 0.35s ease;
        }

.hades-hades .hades-wire.hades-trail:hover{
            color: #cce760;
        }

.hades-hades .hades-heel-bottom{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }