:root {
            --primary: #5e54ea;
            --accent: #4338ca;
            --bg: #f8fafc;
            --text: #0f172a;
            --muted: #64748b;
            --radius: 9px;
            --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
        }

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

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

        /* 顶部导航区域 - Crown & Pilot */
        .crown {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .pilot {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

        .sigil img {
            height: 32px;
            width: auto;
            display: block;
        }

        .array {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

        .nexus {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.25s ease;
            position: relative;
        }

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

        .nexus.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary);
        }

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

        /* Hero展示区 - Glare (Mosaic Collage) */
        .glare {
            padding: 4rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            min-height: 85vh;
        }

        .prism-nest {
            min-width: 0;
        }

        .apex-shell {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: #1e293b;
            letter-spacing: -0.02em;
        }

        .tome-lead {
            font-size: 1.25rem;
            color: var(--muted);
            margin-bottom: 2.5rem;
            max-width: 540px;
        }

        .spark-clump {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .ignite-prime {
            background: var(--primary);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: var(--radius);
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.25s ease, background 0.25s ease;
            box-shadow: 0 4px 14px rgba(94, 84, 234, 0.39);
        }

        .ignite-prime:hover {
            transform: translateY(-2px);
            background: var(--accent);
        }

        /* Mosaic Grid */
        .mosaic-nest {
            display: grid;
            grid-template-areas: 
                "a a b"
                "a a c"
                "d e c";
            gap: 1rem;
            height: 600px;
        }

        .lens-frame {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }

        .lens-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .lens-frame:hover img {
            transform: scale(1.05);
        }

        .area-a { grid-area: a; }
        .area-b { grid-area: b; }
        .area-c { grid-area: c; }
        .area-d { grid-area: d; }
        .area-e { grid-area: e; }

        /* 内容区块样式 */
        .vault-entry {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .apex-sub {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-align: center;
        }

        .tome-center {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
            color: var(--muted);
        }

        /* 性能仪表盘区块 - Proof */
        .proof-engine {
            background: #ffffff;
            border-radius: 20px;
            padding: 4rem;
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
            box-shadow: 0 20px 50px rgba(0,0,0,0.03);
            margin-bottom: 6rem;
        }

        .lens-wide {
            flex: 1;
            min-width: 300px;
            border-radius: 12px;
            overflow: hidden;
        }

        .lens-wide img {
            width: 100%;
            display: block;
        }

        .tome-block {
            flex: 1;
            min-width: 300px;
        }

        /* 状态卡片 - Facet/Shard */
        .shard-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .facet {
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius);
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.25s ease;
        }

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

        .glyph-box {
            width: 54px;
            height: 54px;
            background: rgba(94, 84, 234, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .apex-small {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        /* 安全协议 - Context */
        .context-security {
            background: #0f172a;
            color: white;
            padding: 6rem 2rem;
            border-radius: 30px;
            margin: 4rem 2rem;
        }

        .clump-layers {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            justify-content: center;
            margin-top: 4rem;
        }

        .band-protocol {
            background: rgba(255,255,255,0.05);
            padding: 2rem;
            border-left: 4px solid var(--primary);
            min-width: 280px;
            flex: 1;
        }

        /* 侧边导览 - Aside */
        .editorial-path {
            padding: 4rem 2rem;
            background: linear-gradient(to right, #f1f5f9, #ffffff);
            border-radius: 20px;
            margin: 4rem 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        /* 页脚区域 - Sole & Basis */
        .sole {
            background: #ffffff;
            border-top: 1px solid rgba(0,0,0,0.05);
            padding: 5rem 2rem 3rem;
        }

        .basis-nest {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 4rem;
        }

        .tome-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .array-vertical {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .nexus-foot {
            text-decoration: none;
            color: var(--muted);
            font-size: 0.9rem;
            transition: color 0.25s ease;
        }

        .nexus-foot:hover {
            color: var(--primary);
        }

        .dregs {
            max-width: 1400px;
            margin: 4rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(0,0,0,0.05);
            text-align: center;
            color: var(--muted);
            font-size: 0.85rem;
        }

        /* 响应式调整 */
        @media (max-width: 1024px) {
            .glare {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .tome-lead {
                margin-left: auto;
                margin-right: auto;
            }
            .spark-clump {
                justify-content: center;
            }
            .mosaic-nest {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .pilot {
                flex-direction: column;
                gap: 1.5rem;
            }
            .array {
                gap: 1rem;
                justify-content: center;
            }
            .proof-engine {
                padding: 2rem;
            }
            .vault-entry {
                padding: 3rem 1.5rem;
            }
        }

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

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

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

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

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

.axis-crown a.axis-nexus {
    --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;
}

.axis-crown a.axis-nexus,
.axis-crown a.axis-nexus:hover,
.axis-crown a.axis-nexus:focus,
.axis-crown a.axis-nexus:active,
.axis-crown a.axis-nexus.active,
.axis-crown a.axis-nexus[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);
}

.axis-crown{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

.axis-crown .axis-pilot{
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.axis-crown .axis-sigil img{
            height: 32px;
            width: auto;
            display: block;
        }

.axis-crown .axis-array{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.axis-crown .axis-nexus{
            text-decoration: none;
            color: #0f172a;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.25s ease;
            position: relative;
        }

.axis-crown .axis-nexus:hover, .axis-crown .axis-nexus.active{
            color: #5e54ea;
        }

.axis-crown .axis-nexus.active::after{
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #5e54ea;
        }

@media (max-width: 768px){.axis-crown .axis-pilot{
                flex-direction: column;
                gap: 1.5rem;
            }

.axis-crown .axis-array{
                gap: 1rem;
                justify-content: center;
            }}

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

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

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

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

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

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

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

.basis-sole .basis-apex-small{
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

.basis-sole{
            background: #ffffff;
            border-top: 1px solid rgba(0,0,0,0.05);
            padding: 5rem 2rem 3rem;
        }

.basis-sole .basis-basis-nest{
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 4rem;
        }

.basis-sole .basis-tome-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #5e54ea;
            margin-bottom: 1rem;
        }

.basis-sole .basis-array-vertical{
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

.basis-sole .basis-nexus-foot{
            text-decoration: none;
            color: #64748b;
            font-size: 0.9rem;
            transition: color 0.25s ease;
        }

.basis-sole .basis-nexus-foot:hover{
            color: #5e54ea;
        }

.basis-sole .basis-dregs{
            max-width: 1400px;
            margin: 4rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(0,0,0,0.05);
            text-align: center;
            color: #64748b;
            font-size: 0.85rem;
        }