:root {
            --accent: #ac60e5;
            --accent-soft: rgba(172, 96, 229, 0.1);
            --depth-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --radius: 12px;
            --base-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --ink: #1d1d1f;
            --canvas: #ffffff;
            --smoke: #f5f5f7;
        }

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

        body {
            font-family: var(--base-font);
            color: var(--ink);
            background-color: var(--canvas);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* 导航复用与适配 */
        .omni {
            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);
        }

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

        .signet {
            height: 32px;
        }

        .signet img {
            height: 100%;
            display: block;
        }

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

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

        .trace:hover, .trace.active {
            color: var(--accent);
        }

        /* 主容器 */
        .hull {
            width: 100%;
        }

        /* 获取 Chrome 稳定版 - Acquire Article */
        .prism {
            max-width: 1300px;
            margin: 4rem auto;
            padding: 0 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
            min-height: 60vh;
        }

        .prism > div {
            flex: 1;
            min-width: 320px;
        }

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

        .yarn {
            font-size: 1.25rem;
            color: #6e6e73;
            margin-bottom: 2.5rem;
            max-width: 540px;
            word-break: break-word;
        }

        .herd {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: center;
        }

        .snap {
            background: var(--accent);
            color: white;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            box-shadow: 0 10px 25px rgba(172, 96, 229, 0.3);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
        }

        .snap:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(172, 96, 229, 0.4);
        }

        .band {
            font-size: 0.9rem;
            color: #86868b;
            margin-top: 1rem;
            display: block;
        }

        .lens {
            width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: var(--depth-shadow);
            object-fit: cover;
        }

        /* 部署场景 - Option List Section */
        .vista {
            background-color: var(--smoke);
            padding: 6rem 2rem;
        }

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

        .apex-crown {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 4rem;
            font-weight: 700;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .pane {
            background: var(--canvas);
            padding: 3rem;
            border-radius: var(--radius);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .pane:hover {
            transform: translateY(-8px);
            box-shadow: var(--depth-shadow);
        }

        .glyph {
            width: 48px;
            height: 48px;
            margin-bottom: 1.5rem;
            color: var(--accent);
        }

        .pane h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .pane p {
            color: #6e6e73;
            font-size: 1rem;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .spark {
            text-decoration: none;
            color: var(--accent);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s;
        }

        .spark:hover {
            gap: 0.8rem;
        }

        /* 注意事项 - Aside */
        .scope {
            max-width: 900px;
            margin: 6rem auto;
            padding: 0 2rem;
        }

        .blink-crown {
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .cell {
            margin-bottom: 1rem;
            border-bottom: 1px solid #f0f0f0;
        }

        .cell summary {
            padding: 1.5rem 0;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cell summary::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--accent);
        }

        .cell[open] summary::after {
            content: '−';
        }

        .cell div {
            padding-bottom: 1.5rem;
            color: #6e6e73;
        }

        /* 页脚 */
        .keel {
            background: #fbfbfd;
            padding: 4rem 2rem;
            border-top: 1px solid #e5e5e5;
        }

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

        .brand-yarn {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .depth-herd {
            display: flex;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .depth-bead h4 {
            font-size: 0.8rem;
            text-transform: uppercase;
            color: #86868b;
            margin-bottom: 1.2rem;
            letter-spacing: 0.1em;
        }

        .depth-bead a {
            display: block;
            text-decoration: none;
            color: #515154;
            font-size: 0.85rem;
            margin-bottom: 0.6rem;
            transition: color 0.3s;
        }

        .depth-bead a:hover {
            color: var(--accent);
        }

        .copyright {
            width: 100%;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid #e5e5e5;
            color: #86868b;
            font-size: 0.75rem;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        @media (max-width: 768px) {
            .spool {
                display: none; /* 移动端可由JS切换菜单 */
            }
            .prism {
                flex-direction: column-reverse;
                text-align: center;
                margin-top: 2rem;
            }
            .yarn {
                margin-left: auto;
                margin-right: auto;
            }
            .herd {
                justify-content: center;
            }
            .apex-crown {
                font-size: 2rem;
            }
        }

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