:root {
            --accent: #ef3073;
            --accent-warm: #ff7a00;
            --accent-soft: #fff4e6;
            --radius: 15px;
            --space: 25px;
            --ink: #1d1d1f;
            --ink-sub: #86868b;
            --bg: #ffffff;
            --bg-alt: #f5f5f7;
        }

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

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

        a {
            text-decoration: none;
            color: inherit;
            transition: 0.25s ease;
        }

        /* 强制导航栏样式复用 */
        .apex {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .canary {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 15px var(--space);
        }

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

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

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

        .vein {
            font-size: 15px;
            font-weight: 500;
            color: var(--ink);
            opacity: 0.8;
        }

        .vein:hover {
            color: var(--accent);
            opacity: 1;
        }

        .vein.active {
            color: var(--accent);
            opacity: 1;
            font-weight: 600;
        }

        /* 主体布局 */
        main {
            display: block;
            width: 100%;
        }

        /* Hero: Split Diagonal Variant */
        .zenith {
            min-height: 85vh;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            background: linear-gradient(135deg, var(--accent-soft) 50%, #ffffff 50%);
            padding: 80px var(--space);
            position: relative;
            overflow: hidden;
        }

        .cocoon-prime {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            width: 100%;
        }

        .vessel-scribe {
            flex: 1;
            min-width: 320px;
            padding-right: 40px;
        }

        .crown-prime {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--ink);
        }

        .scribe-intro {
            font-size: 1.25rem;
            color: var(--ink-sub);
            margin-bottom: 35px;
            max-width: 540px;
            word-break: break-word;
        }

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

        .optic-engine {
            width: 100%;
            border-radius: var(--radius);
            box-shadow: 0 30px 60px rgba(0,0,0,0.12);
            transition: transform 0.25s ease;
        }

        .optic-engine:hover {
            transform: scale(1.02);
        }

        /* Topic Focus Section */
        .vista {
            padding: 100px var(--space);
            background: var(--bg);
            text-align: center;
        }

        .cluster-facets {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 60px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .facet-tech {
            flex: 1;
            min-width: 280px;
            background: var(--bg-alt);
            padding: 45px;
            border-radius: var(--radius);
            transition: 0.25s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .facet-tech:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            background: #ffffff;
            border: 1px solid var(--accent-soft);
        }

        .atom-hex {
            width: 64px;
            height: 64px;
            margin-bottom: 25px;
            color: var(--accent);
        }

        .crown-mid {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .scribe-small {
            font-size: 1rem;
            color: var(--ink-sub);
        }

        /* Key Path Section */
        .lumen {
            padding: 80px var(--space);
            background: #fdfdfd;
        }

        .cocoon-thin {
            max-width: 900px;
            margin: 0 auto;
        }

        .ribbon-step {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 50px;
        }

        .grit-path {
            display: flex;
            gap: 20px;
            width: 100%;
            min-width: 0;
            padding: 30px;
            background: #ffffff;
            border-radius: var(--radius);
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
        }

        .atom-digit {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-warm);
            opacity: 0.3;
            font-style: italic;
        }

        .bolt-mega {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(239, 48, 115, 0.3);
            margin-top: 40px;
        }

        .bolt-mega:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(239, 48, 115, 0.4);
        }

        /* Usage Context Aside */
        .mantle {
            background: var(--ink);
            color: #ffffff;
            padding: 80px var(--space);
        }

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

        .vessel-half {
            flex: 1;
            min-width: 300px;
        }

        .crown-light {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: #ffffff;
        }

        .scribe-light {
            color: #a1a1a6;
            margin-bottom: 20px;
        }

        .shard-dark {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Footer Section */
        .bedrock {
            padding: 60px var(--space);
            background: var(--bg-alt);
            border-top: 1px solid rgba(0,0,0,0.05);
        }

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

        .terra-brand {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 15px;
        }

        .strand-links {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
        }

        .vein-tail {
            font-size: 0.9rem;
            color: var(--ink-sub);
        }

        .vein-tail:hover {
            color: var(--accent);
        }

        @media (max-width: 768px) {
            .zenith {
                background: var(--accent-soft);
                padding-top: 40px;
            }
            .vessel-scribe {
                padding-right: 0;
                text-align: center;
                margin-bottom: 40px;
            }
            .vessel-half {
                flex: none;
                width: 100%;
            }
            .omni {
                gap: 15px;
                justify-content: center;
                margin-top: 10px;
            }
            .canary {
                justify-content: center;
            }
        }

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

.omni-apex nav,
.omni-apex div,
.omni-apex section,
.omni-apex article,
.omni-apex aside,
.omni-apex p,
.omni-apex h1,
.omni-apex h2,
.omni-apex h3,
.omni-apex h4,
.omni-apex h5,
.omni-apex h6,
.omni-apex a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

.omni-apex a.omni-vein {
    --aisite-shell-nav-padding: 8px 4px;
    --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;
}

.omni-apex a.omni-vein,
.omni-apex a.omni-vein:hover,
.omni-apex a.omni-vein:focus,
.omni-apex a.omni-vein:active,
.omni-apex a.omni-vein.active,
.omni-apex a.omni-vein[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);
}

.omni-apex{
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(15px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

.omni-apex .omni-canary{
            max-width: 1300px;
            margin: 0 auto;
            padding: 15px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

.omni-apex .omni-glyph{
            display: flex;
            align-items: center;
            height: 40px;
        }

.omni-apex .omni-glyph img{
            height: 100%;
            width: auto;
        }

.omni-apex .omni-omni{
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

.omni-apex .omni-vein{
            text-decoration: none;
            color: #1d1d1f;
            font-weight: 500;
            font-size: 15px;
            transition: 0.25s ease;
            padding: 8px 4px;
            position: relative;
        }

.omni-apex .omni-vein:hover, .omni-apex .omni-vein.active{
            color: #ef3073;
        }

.omni-apex .omni-vein.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #ef3073;
        }

@media (max-width: 768px){.omni-apex .omni-canary{
                flex-direction: column;
                gap: 15px;
            }

.omni-apex .omni-omni{
                justify-content: center;
            }}

.omni-apex {
    background: rgb(255, 255, 255);
    background-image: none;
}

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

.bedrock-tail nav,
.bedrock-tail div,
.bedrock-tail section,
.bedrock-tail article,
.bedrock-tail aside,
.bedrock-tail p,
.bedrock-tail h1,
.bedrock-tail h2,
.bedrock-tail h3,
.bedrock-tail h4,
.bedrock-tail h5,
.bedrock-tail h6,
.bedrock-tail a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

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

.bedrock-tail{
            background: #f5f5f7;
            padding: 80px 25px 40px;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

.bedrock-tail .bedrock-abyss-cocoon{
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 50px;
        }

.bedrock-tail .bedrock-abyss-brand{
            flex: 1;
            min-width: 250px;
        }

.bedrock-tail .bedrock-crown-tail{
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 20px;
        }

.bedrock-tail .bedrock-scribe-tail{
            color: #666;
            max-width: 300px;
        }

.bedrock-tail .bedrock-abyss-veins{
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
        }

.bedrock-tail .bedrock-vein-cluster{
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.bedrock-tail .bedrock-vein-tail{
            text-decoration: none;
            color: #666;
            transition: 0.25s ease;
        }

.bedrock-tail .bedrock-vein-tail:hover{
            color: #ef3073;
        }

.bedrock-tail .bedrock-tail-bottom{
            max-width: 1300px;
            margin: 60px auto 0;
            padding-top: 30px;
            border-top: 1px solid rgba(0,0,0,0.1);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            font-size: 14px;
            color: #999;
        }