:root {
            --accent: #ac60e5;
            --accent-soft: rgba(172, 96, 229, 0.1);
            --dark: #1d1d1f;
            --gray: #86868b;
            --light: #f5f5f7;
            --radius: 12px;
            --border: rgba(0, 0, 0, 0.08);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--dark);
            background-color: #ffffff;
            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 var(--border);
        }

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

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

        .bead {
            min-width: 0;
        }

        .trace {
            text-decoration: none;
            color: var(--dark);
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.35s ease;
        }

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

        /* 主体布局 */
        .hull {
            width: 100%;
        }

        /* Engine Hero Section */
        .prism {
            max-width: 1300px;
            margin: 0 auto;
            padding: 6rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            min-height: 80vh;
        }

        .blink {
            flex: 1;
            min-width: 320px;
            padding-right: 4rem;
        }

        .crown {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #1d1d1f 0%, #ac60e5 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            word-break: keep-all;
        }

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

        .vista {
            flex: 1;
            min-width: 320px;
            display: flex;
            justify-content: center;
            position: relative;
        }

        .shard {
            width: 100%;
            max-width: 500px;
            aspect-ratio: 1;
            background: radial-gradient(circle at 30% 30%, #ac60e5 0%, transparent 70%);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            filter: blur(60px);
            opacity: 0.2;
            position: absolute;
            animation: drift 10s infinite alternate;
        }

        @keyframes drift {
            from { transform: rotate(0deg) scale(1); }
            to { transform: rotate(20deg) scale(1.1); }
        }

        .glyph-box {
            position: relative;
            z-index: 2;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(172, 96, 229, 0.2);
            padding: 3rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        /* Performance Utility Div */
        .scope {
            background-color: var(--light);
            padding: 8rem 2rem;
        }

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

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

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

        .pane {
            background: #ffffff;
            padding: 3.5rem 2.5rem;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            transition: all 0.35s ease;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .pane:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(172, 96, 229, 0.1);
            border-color: var(--accent-soft);
        }

        .glyph {
            width: 56px;
            height: 56px;
            background: var(--accent-soft);
            color: var(--accent);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.5rem;
        }

        .pane .crown-sm {
            font-size: 1.5rem;
            font-weight: 700;
        }

        /* Rendering Tech Div */
        .core {
            max-width: 1300px;
            margin: 0 auto;
            padding: 8rem 2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
        }

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

        .band-media {
            flex: 1.2;
            min-width: 320px;
            background: #1d1d1f;
            border-radius: 20px;
            padding: 2rem;
            overflow: hidden;
            position: relative;
        }

        .cell-code {
            font-family: 'Courier New', Courier, monospace;
            color: #a5d6ff;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .snap {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.35s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(172, 96, 229, 0.2);
        }

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

        /* Footer */
        .keel {
            background: #ffffff;
            border-top: 1px solid var(--border);
            padding: 4rem 2rem;
        }

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

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

        .keel-herd {
            display: flex;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .keel-spool {
            list-style: none;
        }

        .keel-bead {
            margin-bottom: 0.8rem;
        }

        .keel-trace {
            text-decoration: none;
            color: var(--gray);
            font-size: 0.9rem;
            transition: color 0.35s ease;
        }

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

        @media (max-width: 768px) {
            .prism { padding: 4rem 1.5rem; text-align: center; }
            .blink { padding-right: 0; }
            .vista { margin-top: 3rem; }
            .crown { font-size: 2.5rem; }
            .core { flex-direction: column-reverse; padding: 4rem 1.5rem; }
            .ridge { padding: 0 1.5rem; }
            .spool { display: none; } /* Simplified for mobile example */
        }

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