:root {
            --primary: #5e54ea;
            --accent: #4338ca;
            --bg: #f8fafc;
            --text: #0f172a;
            --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: break-word; overflow-wrap: break-word; }
        
        /* 导航栏 */
        .crown { background: #ffffff; border-bottom: 1px solid #e2e8f0; padding: 1rem 2rem; }
        .pilot { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; }
        .sigil img { height: 32px; display: block; }
        .array { display: flex; gap: 2rem; }
        .nexus { text-decoration: none; color: #475569; font-weight: 500; padding: 0.5rem 0; transition: color 0.25s ease; }
        .nexus:hover, .nexus.active { color: var(--primary); }

        /* 通用布局 */
        .nest { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; }
        .beam { display: flex; flex-wrap: wrap; gap: 3rem; margin-bottom: 4rem; }
        .apex { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #1e293b; line-height: 1.1; margin-bottom: 1.5rem; }
        .tome { font-size: 1.1rem; color: #64748b; max-width: 600px; }
        
        /* 组件 */
        .ignite { display: inline-block; background: var(--primary); color: white; padding: 1rem 2.5rem; border-radius: var(--radius); text-decoration: none; font-weight: 600; box-shadow: var(--shadow); transition: transform 0.25s ease; }
        .ignite:hover { transform: translateY(-3px); }
        .facet { background: #ffffff; padding: 2rem; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); min-width: 0; flex: 1; }
        .hull { padding: 3rem; background: #ffffff; border-radius: 12px; margin-top: 2rem; }
        
        /* 响应式 */
        @media (max-width: 768px) {
            .pilot { flex-direction: column; gap: 1rem; }
            .array { gap: 1rem; }
            .beam { flex-direction: column; }
        }

        /* 页面专属 */
        .lens { width: 100%; height: auto; border-radius: 12px; box-shadow: var(--shadow); }
        .sole { text-align: center; padding: 4rem 2rem; border-top: 1px solid #e2e8f0; color: #94a3b8; font-size: 0.9rem; }

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