:root {
            --primary: #e35919;
            --primary-soft: rgba(227, 89, 25, 0.15);
            --bg: #0a0a0c;
            --surface: #141417;
            --surface-deep: #1c1c21;
            --border: #26262a;
            --rune-main: #e2e2e4;
            --rune-dim: #a1a1a6;
            --radius: 12px;
            --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

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

        body {
            background-color: var(--bg);
            color: var(--rune-main);
            font-family: var(--font);
            line-height: 1.7;
            overflow-x: hidden;
            word-break: keep-all;
        }

        /* --- 导航复用 --- */
        .apex {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 10, 12, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }

        .steer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .glyph img {
            height: 32px;
            display: block;
        }

        .voyage {
            display: flex;
            gap: 8px;
        }

        .bezel {
            color: var(--rune-dim);
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.35s ease;
        }

        .bezel:hover {
            color: var(--rune-main);
            background: var(--primary-soft);
        }

        .bezel.active {
            color: #fff;
            background: var(--primary);
        }

        /* --- 主内容布局 --- */
        main {
            display: block;
            padding-top: 72px;
        }

        .ambit {
            max-width: 1100px;
            margin: 0 auto;
            padding: 80px 24px;
        }

        /* --- Showcase Area (Prism) --- */
        .prism {
            padding: 60px 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            background: radial-gradient(circle at top right, #20130d 0%, transparent 50%);
        }

        .crest-mega {
            font-size: clamp(2.2rem, 5vw, 4rem);
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
            color: #fff;
            flex: 1 1 600px;
            min-width: 0;
        }

        .rune-prime {
            font-size: 1.15rem;
            color: var(--rune-dim);
            max-width: 700px;
            margin-bottom: 40px;
        }

        /* --- Shards & Blocs --- */
        .nexus-triad {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-top: 48px;
        }

        .shard {
            flex: 1 1 calc(33.333% - 16px);
            min-width: 280px;
            background: var(--surface-deep);
            padding: 40px;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            transition: transform 0.35s ease, border-color 0.35s ease;
        }

        .shard:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
        }

        .mark-large {
            width: 56px;
            height: 56px;
            background: var(--primary-soft);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--primary);
        }

        .crest-mid {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #fff;
        }

        .rune-small {
            font-size: 0.95rem;
            color: var(--rune-dim);
            line-height: 1.6;
        }

        /* --- Configuration Vault --- */
        .vault {
            margin: 100px 0;
            background: linear-gradient(145deg, #141417 0%, #0a0a0c 100%);
            border-radius: 20px;
            padding: 60px;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        .vault::after {
            content: "";
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: var(--primary);
            filter: blur(120px);
            opacity: 0.05;
            pointer-events: none;
        }

        .ray-step {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            margin-top: 48px;
        }

        .atom-path {
            flex: 1 1 300px;
            min-width: 0;
            background: rgba(255, 255, 255, 0.03);
            padding: 24px;
            border-left: 3px solid var(--primary);
            border-radius: 0 8px 8px 0;
        }

        .crest-mini {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* --- Capability Halo --- */
        .halo {
            padding: 80px 0;
        }

        .bloc-spec {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            align-items: center;
        }

        .pixel-code {
            flex: 1 1 450px;
            min-width: 0;
            background: #000;
            padding: 32px;
            border-radius: 12px;
            font-family: 'Monaco', 'Consolas', monospace;
            font-size: 0.9rem;
            color: #88c0d0;
            border: 1px solid #333;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        }

        .pixel-code span { color: #ebcb8b; }
        .pixel-code em { color: #a3be8c; font-style: normal; }

        .furl-info {
            flex: 1 1 400px;
            min-width: 0;
        }

        .flux-prime {
            display: inline-flex;
            align-items: center;
            background: var(--primary);
            color: #fff;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 32px;
            transition: all 0.35s ease;
            box-shadow: 0 10px 20px rgba(227, 89, 25, 0.2);
        }

        .flux-prime:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(227, 89, 25, 0.4);
        }

        /* --- Footer --- */
        .orig {
            background: #050507;
            border-top: 1px solid var(--border);
            padding: 80px 24px 40px;
        }

        .datum-nexus {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

        .basis-info {
            flex: 1 1 300px;
        }

        .basis-info h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: #fff;
        }

        .terra-links {
            display: flex;
            gap: 60px;
            flex-wrap: wrap;
        }

        .drift-column h4 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .drift-column a {
            display: block;
            color: var(--rune-dim);
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

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

        .ray-bottom {
            max-width: 1200px;
            margin: 60px auto 0;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            font-size: 0.85rem;
            color: var(--rune-dim);
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .ambit { padding: 40px 20px; }
            .voyage { display: none; }
            .shard { flex: 1 1 100%; }
            .vault { padding: 30px; }
            .pixel-code { font-size: 0.8rem; }
        }

.steer-apex {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--rune-main);
}
.steer-apex,
.steer-apex *,
.steer-apex *::before,
.steer-apex *::after {
    box-sizing: border-box;
}

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

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

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

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

.steer-apex a.steer-bezel {
    --aisite-shell-nav-padding: 8px 16px;
    --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;
}

.steer-apex a.steer-bezel,
.steer-apex a.steer-bezel:hover,
.steer-apex a.steer-bezel:focus,
.steer-apex a.steer-bezel:active,
.steer-apex a.steer-bezel.active,
.steer-apex a.steer-bezel[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);
}

.steer-apex{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 10, 12, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #26262a;
        }

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

.steer-apex .steer-glyph{
            height: 36px;
            display: flex;
            align-items: center;
        }

.steer-apex .steer-glyph img{
            height: 100%;
            width: auto;
        }

.steer-apex .steer-voyage{
            display: flex;
            gap: 8px;
            align-items: center;
        }

.steer-apex .steer-bezel{
            color: #94949e;
            text-decoration: none;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            border-radius: 8px;
            transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

.steer-apex .steer-bezel:hover{
            color: #e35919;
            background: rgba(227, 89, 25, 0.1);
        }

.steer-apex .steer-bezel.active{
            color: #e2e2e4;
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 0 0 1px #26262a;
        }

@media (max-width: 768px){.steer-apex .steer-steer{
                padding: 0 16px;
            }

.steer-apex .steer-voyage{
                display: none; 
            }}

.steer-apex {
    background: rgb(10, 10, 12);
    background-image: none;
}

.datum-orig {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--rune-main);
}
.datum-orig,
.datum-orig *,
.datum-orig *::before,
.datum-orig *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.datum-orig{
            padding: 80px 24px;
            background: #0a0a0c;
            border-top: 1px solid #26262a;
            text-align: center;
        }

.datum-orig .datum-datum-brand{
            font-size: 24px;
            font-weight: 800;
            color: #e35919;
            margin-bottom: 16px;
        }

.datum-orig .datum-datum-info{
            color: #94949e;
            font-size: 14px;
            max-width: 600px;
            margin: 0 auto;
        }

.datum-orig .datum-datum-links{
            margin-top: 32px;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

.datum-orig .datum-datum-bezel{
            color: #94949e;
            text-decoration: none;
            font-size: 14px;
        }

.datum-orig .datum-datum-bezel:hover{
            color: #fff;
        }