:root {
            --primary: #ac60e5;
            --text: #1d1d1f;
            --text-soft: #424245;
            --bg: #ffffff;
            --bg-alt: #f5f5f7;
            --radius: 12px;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 20px 40px rgba(172, 96, 229, 0.15);
        }

        * {
            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);
            background-color: var(--bg);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

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

        .ridge {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .signet {
            height: 32px;
            display: flex;
            align-items: center;
        }

        .signet img {
            height: 100%;
            width: auto;
        }

        .spool {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .bead a {
            text-decoration: none;
            color: var(--text-soft);
            font-size: 14px;
            font-weight: 500;
            transition: color 0.35s ease;
        }

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

        /* 主体布局 */
        .core {
            width: 100%;
            padding-top: 64px;
        }

        /* 文章介绍区块 - Article (intro) */
        .prism {
            max-width: 1300px;
            margin: 0 auto;
            padding: 5rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
            min-height: 70vh;
        }

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

        .crown {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            color: var(--text);
            font-weight: 800;
            margin-bottom: 1.5rem;
            word-break: keep-all;
        }

        .yarn {
            font-size: 1.25rem;
            color: var(--text-soft);
            max-width: 600px;
            margin-bottom: 2.5rem;
            word-break: break-word;
        }

        .lens {
            flex: 1;
            min-width: 320px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .lens img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            transition: transform 0.35s ease;
        }

        .lens:hover img {
            transform: scale(1.02);
        }

        /* 热门领域展示 - Div (proof) */
        .blink {
            background-color: var(--bg-alt);
            padding: 6rem 2rem;
        }

        .scope {
            max-width: 1300px;
            margin: 0 auto;
        }

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

        .apex h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text);
        }

        .herd {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }

        .shard {
            background: var(--bg);
            padding: 3rem;
            border-radius: var(--radius);
            flex: 1;
            min-width: 280px;
            max-width: 300px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.35s ease;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .shard:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(172, 96, 229, 0.2);
        }

        .glyph {
            width: 64px;
            height: 64px;
            background: rgba(172, 96, 229, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .glyph svg {
            width: 32px;
            height: 32px;
        }

        .shard h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text);
        }

        .shard p {
            font-size: 1rem;
            color: var(--text-soft);
            word-break: break-word;
        }

        /* 行动横幅 - Section (closing) */
        .vista {
            padding: 8rem 2rem;
            text-align: center;
            background: linear-gradient(180deg, var(--bg) 0%, #f9f0ff 100%);
        }

        .hull {
            max-width: 800px;
            margin: 0 auto;
        }

        .vista h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .snap {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: white;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            font-size: 1.1rem;
            box-shadow: 0 10px 25px rgba(172, 96, 229, 0.3);
            transition: all 0.35s ease;
            border: none;
            cursor: pointer;
            margin-top: 2rem;
        }

        .snap:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(172, 96, 229, 0.4);
            filter: brightness(1.1);
        }

        /* 页脚 */
        .keel {
            background: var(--bg-alt);
            padding: 4rem 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

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

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

        .band h4 {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            color: var(--text);
        }

        .band ul {
            list-style: none;
        }

        .band ul li {
            margin-bottom: 0.8rem;
        }

        .band a {
            text-decoration: none;
            color: var(--text-soft);
            font-size: 0.9rem;
            transition: color 0.3s;
        }

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

        .depth {
            width: 100%;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            color: var(--text-soft);
            font-size: 0.85rem;
        }

        /* 响应式调整 */
        @media (max-width: 1024px) {
            .prism { padding: 4rem 2rem; }
            .shard { max-width: 45%; }
        }

        @media (max-width: 768px) {
            .spool { display: none; }
            .prism { flex-direction: column; text-align: center; }
            .core { min-width: 100%; }
            .yarn { margin: 0 auto 2.5rem; }
            .shard { max-width: 100%; flex-basis: 100%; }
            .root { flex-direction: column; }
        }

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

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

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

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

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

.omni-omni a.omni-trace {
    --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;
}

.omni-omni a.omni-trace,
.omni-omni a.omni-trace:hover,
.omni-omni a.omni-trace:focus,
.omni-omni a.omni-trace:active,
.omni-omni a.omni-trace.active,
.omni-omni a.omni-trace[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-omni{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

.omni-omni .omni-ridge{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0.8rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.omni-omni .omni-signet{
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
        }

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

.omni-omni .omni-spool{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

.omni-omni .omni-bead{
            list-style: none;
            min-width: 0;
        }

.omni-omni .omni-trace{
            text-decoration: none;
            color: #424245;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.35s ease;
            position: relative;
        }

.omni-omni .omni-trace:hover{
            color: #ac60e5;
        }

.omni-omni .omni-trace.active{
            color: #ac60e5;
        }

.omni-omni .omni-trace.active::after{
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #ac60e5;
            border-radius: 2px;
        }

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

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

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

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

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

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

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

.depth-depth .depth-spool{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

.depth-depth .depth-bead{
            list-style: none;
            min-width: 0;
        }

.depth-depth .depth-trace{
            text-decoration: none;
            color: #424245;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.35s ease;
            position: relative;
        }

.depth-depth .depth-trace:hover{
            color: #ac60e5;
        }

.depth-depth .depth-trace.active{
            color: #ac60e5;
        }

.depth-depth .depth-trace.active::after{
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #ac60e5;
            border-radius: 2px;
        }

.depth-depth .depth-yarn{
            font-size: 1.25rem;
            color: #424245;
            margin-bottom: 2.5rem;
            max-width: 500px;
        }

.depth-depth{
            background: #f5f5f7;
            padding: 5rem 2rem 3rem;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
        }

.depth-depth .depth-root{
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 4rem;
        }

.depth-depth .depth-keel{
            flex: 1;
            min-width: 200px;
        }

.depth-depth .depth-keel h4{
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            font-weight: 700;
        }

.depth-depth .depth-keel .depth-spool{
            flex-direction: column;
            gap: 0.8rem;
        }

.depth-depth .depth-keel .depth-trace{
            font-size: 0.9rem;
            color: #424245;
        }

.depth-depth .depth-base{
            max-width: 1300px;
            margin: 4rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            text-align: center;
            font-size: 0.85rem;
            color: #86868b;
        }