:root {
            --bg-deep: #050505;
            --bg-surface: #111111;
            --bg-elevated: #1a1a1a;
            --accent: #df881f;
            --accent-glow: rgba(223, 136, 31, 0.2);
            --accent-hover: #f0952d;
            --text-main: #e0e0e0;
            --text-muted: #888888;
            --radius: 16px;
            --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            --transition: all 0.35s ease;
        }

        body {
            margin: 0;
            padding: 0;
            background-color: var(--bg-deep);
            color: var(--text-main);
            font-family: var(--font);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        /* 强制基础规范 */
        .flex, .flock {
            display: flex;
            flex-wrap: wrap;
        }
        .flex > *, .flock > * {
            min-width: 0;
        }
        .script, .crown, .script-zh {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        .script-zh {
            word-break: keep-all;
        }

        /* 布局容器 */
        .cloak {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .realm {
            flex: 1;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            box-sizing: border-box;
        }

        /* 顶部导航 (严格复用) */
        .zenith {
            background-color: rgba(5, 5, 5, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 1rem 2rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            align-items: center;
            justify-content: space-between;
        }
        .sigil img {
            height: 32px;
            width: auto;
            display: block;
        }
        .orbit {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .wire {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            padding: 0.5rem 0;
        }
        .wire:hover, .wire:focus {
            color: var(--text-main);
        }
        .wire.active {
            color: var(--accent);
            position: relative;
        }
        .wire.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--accent);
            border-radius: 2px;
            box-shadow: 0 0 8px var(--accent-glow);
        }

        /* 模块一：Hero (拼贴变体) */
        .flare {
            padding: 3rem 0 5rem 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media (min-width: 992px) {
            .flare {
                grid-template-columns: 1.4fr 1fr;
            }
        }
        .flare-primary {
            background: linear-gradient(145deg, var(--bg-surface) 0%, var(--bg-deep) 100%);
            border: 1px solid rgba(223, 136, 31, 0.15);
            border-radius: var(--radius);
            padding: 3.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        .flare-primary::after {
            content: '';
            position: absolute;
            right: -10%;
            top: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
            pointer-events: none;
        }
        .flare-secondary {
            display: grid;
            grid-template-rows: 1fr 1fr;
            gap: 2rem;
        }
        .shard {
            background-color: var(--bg-elevated);
            border: 1px solid #2a2a2a;
            border-radius: var(--radius);
            padding: 2.5rem;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .shard:hover {
            border-color: var(--accent);
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .crown-xl {
            color: #ffffff;
            line-height: 1.25;
            font-weight: 700;
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            margin: 0 0 1.5rem 0;
            white-space: normal;
            letter-spacing: -0.02em;
        }
        .crown-lg {
            color: #ffffff;
            font-size: 1.5rem;
            margin: 0 0 0.8rem 0;
            font-weight: 600;
        }
        .script-lead {
            font-size: 1.15rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin: 0;
        }
        .glyph-cloak {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background-color: rgba(223, 136, 31, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        .glyph {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: var(--accent);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* 模块二：解决方案 */
        .vault {
            padding: 5rem 0;
            border-top: 1px solid #1a1a1a;
        }
        .vault-zenith {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem auto;
        }
        .crown-md {
            color: #ffffff;
            font-size: 2.2rem;
            margin: 0 0 1.5rem 0;
            font-weight: 700;
        }
        .alert-streak {
            background-color: rgba(255, 60, 60, 0.05);
            border-left: 4px solid #ff4444;
            padding: 1.5rem 2rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            color: #ffbaba;
            font-size: 1.05rem;
            margin: 0 auto;
            text-align: left;
        }
        .steps-flock {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }
        .packet {
            background-color: var(--bg-surface);
            border: 1px solid #2a2a2a;
            border-radius: var(--radius);
            padding: 3rem 2.5rem;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .packet::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            opacity: 0;
            transition: var(--transition);
        }
        .packet:hover::before {
            opacity: 1;
        }
        .step-seal {
            align-self: flex-start;
            background-color: rgba(255,255,255,0.08);
            color: #fff;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border: 1px solid #333;
        }
        .packet:hover .step-seal {
            background-color: var(--accent-glow);
            color: var(--accent);
            border-color: rgba(223, 136, 31, 0.3);
        }
        ol.script-list {
            padding-left: 1.2rem;
            margin: 0;
            color: var(--text-main);
            flex: 1;
        }
        ol.script-list li {
            margin-bottom: 1rem;
            padding-left: 0.5rem;
            line-height: 1.6;
        }
        ol.script-list li::marker {
            color: var(--accent);
            font-weight: 700;
        }

        /* 模块三：高级配置 */
        .hull {
            padding: 5rem 0 2rem 0;
        }
        .node-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            background-color: var(--bg-elevated);
            border-radius: var(--radius);
            padding: 4rem;
            border: 1px solid #222;
        }
        @media (min-width: 1024px) {
            .node-grid {
                grid-template-columns: 1.2fr 2fr;
            }
        }
        .node-intro .crown-md {
            margin-bottom: 1.5rem;
        }
        .config-chain {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .config-bead {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 1.5rem 2rem;
            background-color: var(--bg-surface);
            border-radius: 14px;
            border: 1px solid #2a2a2a;
            transition: var(--transition);
        }
        .config-bead:hover {
            border-color: #444;
            background-color: #151515;
            transform: translateX(5px);
        }
        .bead-glyph {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            background-color: rgba(255,255,255,0.03);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .bead-glyph svg {
            width: 22px;
            height: 22px;
            fill: none;
            stroke: var(--text-main);
            stroke-width: 2;
        }
        .bead-cloak h4 {
            margin: 0 0 0.4rem 0;
            color: #ffffff;
            font-size: 1.15rem;
            font-weight: 600;
        }
        .bead-cloak p {
            margin: 0;
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* 底部信息区 */
        .nadir {
            border-top: 1px solid #1a1a1a;
            padding: 4rem 2rem 3rem;
            background-color: var(--bg-deep);
            text-align: center;
            margin-top: 4rem;
        }
        .base-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 2rem;
            display: inline-block;
            letter-spacing: -0.05em;
        }
        .base-links {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }
        .base-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.95rem;
        }
        .base-links a:hover {
            color: var(--accent);
        }
        .base-script {
            color: #555;
            font-size: 0.85rem;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .zenith { flex-direction: column; gap: 1rem; padding: 1rem; }
            .orbit { justify-content: center; gap: 1rem; }
            .realm { padding: 1.5rem; }
            .flare-primary { padding: 2rem; }
            .shard { padding: 2rem; }
            .vault { padding: 3rem 0; }
            .packet { padding: 2rem; }
            .node-grid { padding: 2rem; gap: 2rem; }
            .config-bead { padding: 1.5rem; flex-direction: column; gap: 1rem; }
        }

.helm-zenith.helm-flex {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-main);
}
.helm-zenith.helm-flex,
.helm-zenith.helm-flex *,
.helm-zenith.helm-flex *::before,
.helm-zenith.helm-flex *::after {
    box-sizing: border-box;
}

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

.helm-zenith.helm-flex p,
.helm-zenith.helm-flex h1,
.helm-zenith.helm-flex h2,
.helm-zenith.helm-flex h3,
.helm-zenith.helm-flex h4,
.helm-zenith.helm-flex h5,
.helm-zenith.helm-flex h6 {
    text-decoration: none;
}

.helm-zenith.helm-flex img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.helm-zenith.helm-flex {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.helm-zenith.helm-flex a.helm-helm-wire.helm-wire-2 {
    --aisite-shell-nav-padding: 0.5rem 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;
}

.helm-zenith.helm-flex a.helm-helm-wire.helm-wire-2,
.helm-zenith.helm-flex a.helm-helm-wire.helm-wire-2:hover,
.helm-zenith.helm-flex a.helm-helm-wire.helm-wire-2:focus,
.helm-zenith.helm-flex a.helm-helm-wire.helm-wire-2:active,
.helm-zenith.helm-flex a.helm-helm-wire.helm-wire-2.active,
.helm-zenith.helm-flex a.helm-helm-wire.helm-wire-2[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);
}

.helm-zenith.helm-flex .helm-flex{
            display: flex;
            flex-wrap: wrap;
        }

.helm-zenith.helm-flex .helm-flex > *{
            min-width: 0;
        }

.helm-zenith.helm-flex .helm-zenith{
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: rgba(5, 5, 5, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #2a2a2a;
            padding: 1rem 2rem;
            align-items: center;
            justify-content: space-between;
        }

.helm-zenith.helm-flex .helm-sigil{
            display: flex;
            align-items: center;
        }

.helm-zenith.helm-flex .helm-sigil img{
            height: 32px;
            width: auto;
        }

.helm-zenith.helm-flex .helm-orbit{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.helm-zenith.helm-flex .helm-helm-wire{
            color: #e0e0e0;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }

.helm-zenith.helm-flex .helm-helm-wire::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #df881f;
            transition: width 0.35s ease;
        }

.helm-zenith.helm-flex .helm-helm-wire:hover::after, .helm-zenith.helm-flex .helm-helm-wire:focus::after, .helm-zenith.helm-flex .helm-helm-wire.active::after{
            width: 100%;
        }

.helm-zenith.helm-flex .helm-helm-wire.active{
            color: #ffffff;
        }

@media (max-width: 768px){.helm-zenith.helm-flex .helm-zenith{
                flex-direction: column;
                gap: 1rem;
                padding: 1rem;
            }

.helm-zenith.helm-flex .helm-orbit{
                justify-content: center;
                gap: 1rem;
            }}

.anchor-nadir {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-main);
}
.anchor-nadir,
.anchor-nadir *,
.anchor-nadir *::before,
.anchor-nadir *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-nadir{
            background-color: #111111;
            border-top: 1px solid #2a2a2a;
            padding: 4rem 2rem 2rem;
            margin-top: auto;
        }

.anchor-nadir .anchor-base{
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

.anchor-nadir .anchor-root{
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

.anchor-nadir .anchor-root .anchor-crown{
            font-size: 1.1rem;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

.anchor-nadir .anchor-root .anchor-wire{
            color: #888888;
            font-size: 0.95rem;
        }

.anchor-nadir .anchor-root .anchor-wire:hover{
            color: #df881f;
        }

.anchor-nadir .anchor-script{
            text-align: center;
            color: #555;
            font-size: 0.9rem;
            border-top: 1px solid #2a2a2a;
            padding-top: 2rem;
        }