:root {
            /* 品牌色彩与杂志风格配色 */
            --brand-primary: #43ea51;
            --brand-dark: #0a0f0b;
            --brand-light: #f4f6f5;
            --text-main: #1c231e;
            --text-muted: #5a6660;
            --bg-surface: #ffffff;
            --bg-alt: #e9ecea;
            
            /* 基因参数 */
            --radius-md: 9px;
            --radius-lg: 13px;
            --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.04);
            --shadow-float: 0 12px 40px rgba(67, 234, 81, 0.15);
            --transition-base: all 0.25s ease;
            
            /* 排版系统 */
            --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --spacing-unit: 1rem;
        }

        /* 基础重置与强制规范 */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-sans);
            color: var(--text-main);
            background-color: var(--brand-light);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* 文本换行强制规范 */
        .echo, 
        .apex, 
        .wire,
        .drop {
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }

        p.echo {
            word-break: keep-all;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        /* Flexbox 强制规范类 */
        .flex-cluster {
            display: flex;
            flex-wrap: wrap;
        }
        
        .flex-cluster > * {
            min-width: 0;
        }

        /* 布局容器 (杂志风版心) */
        .tunnel {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
        }

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

        .helm {
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 5vw;
            justify-content: space-between;
            align-items: center;
        }

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

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

        .wire {
            text-decoration: none;
            color: var(--text-main);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition-base);
            position: relative;
        }

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

        .wire.active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--brand-primary);
            border-radius: 2px;
        }

        /* --- 首屏区域 (Flare - Mosaic Collage) --- */
        .flare {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-alt) 100%);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            margin-bottom: 4rem;
        }

        .nexus {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .flare-echo {
            padding-right: 2rem;
        }

        .apex-huge {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
            color: var(--brand-dark);
        }

        .flare-echo p.echo {
            font-size: 1.125rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
        }

        .pulse-cluster {
            gap: 1rem;
        }

        .pulse {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 1.75rem;
            background-color: var(--brand-primary);
            color: var(--brand-dark);
            text-decoration: none;
            font-weight: 700;
            border-radius: var(--radius-md);
            transition: var(--transition-base);
            border: 2px solid var(--brand-primary);
        }

        .pulse:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-float);
        }

        .pulse-alt {
            background-color: transparent;
            color: var(--text-main);
            border-color: var(--text-main);
        }

        .pulse-alt:hover {
            background-color: var(--text-main);
            color: var(--bg-surface);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        /* Hero Mosaic Grid */
        .mosaic-cluster {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 200px);
            gap: 1rem;
            grid-template-areas: 
                "a b"
                "a c";
        }

        .shard-visual {
            background: var(--bg-surface);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-soft);
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-base);
        }

        .shard-visual:hover {
            transform: scale(1.02);
        }

        .shard-a { grid-area: a; background: var(--brand-dark); color: var(--brand-primary); flex-direction: column; padding: 2rem;}
        .shard-b { grid-area: b; background: linear-gradient(45deg, var(--brand-primary), #2bb938); color: var(--brand-dark);}
        .shard-c { grid-area: c; border: 1px solid rgba(0,0,0,0.05);}

        .glyph-large {
            width: 64px;
            height: 64px;
            margin-bottom: 1rem;
        }

        /* --- 核心能力区域 (Vault - Editorial Spread) --- */
        .vault {
            margin: 6rem 0;
            display: grid;
            grid-template-columns: 5fr 4fr;
            gap: 5rem;
            align-items: center;
        }

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

        .lens-veil::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
            border-radius: var(--radius-lg);
            pointer-events: none;
        }

        .lens {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition-base);
        }

        .lens:hover {
            transform: scale(1.03);
        }

        .apex-tunnel {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--brand-dark);
            position: relative;
            padding-left: 1.5rem;
        }

        .apex-tunnel::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.2em;
            bottom: 0.2em;
            width: 4px;
            background-color: var(--brand-primary);
            border-radius: 2px;
        }

        .drop-cluster {
            margin-top: 2rem;
            display: grid;
            gap: 1.5rem;
        }

        .drop {
            background: var(--bg-surface);
            padding: 1.5rem;
            border-radius: var(--radius-md);
            border-left: 3px solid transparent;
            transition: var(--transition-base);
            box-shadow: 0 2px 10px rgba(0,0,0,0.02);
        }

        .drop:hover {
            border-left-color: var(--brand-primary);
            transform: translateX(5px);
            box-shadow: var(--shadow-soft);
        }

        .apex-sub {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--brand-dark);
        }

        /* --- 协议生态区域 (Zone - Grid) --- */
        .zone {
            padding: 6rem 5vw;
            background-color: var(--brand-dark);
            color: var(--bg-surface);
            border-radius: var(--radius-lg);
            margin: 4rem auto;
            max-width: 1400px;
        }

        .zone .apex-tunnel {
            color: var(--bg-surface);
            text-align: center;
            padding-left: 0;
        }
        
        .zone .apex-tunnel::before {
            display: none;
        }

        .zone .echo-center {
            text-align: center;
            color: #a0aba5;
            max-width: 600px;
            margin: 0 auto 4rem auto;
        }

        .shard-array {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .shard {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2.5rem 2rem;
            border-radius: var(--radius-md);
            transition: var(--transition-base);
        }

        .shard:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--brand-primary);
            transform: translateY(-5px);
        }

        .shard .glyph {
            fill: var(--brand-primary);
            width: 40px;
            height: 40px;
            margin-bottom: 1.5rem;
        }

        /* --- 状态与监控区域 (Depth - Aside layout) --- */
        .depth {
            margin: 6rem 0;
            background: var(--bg-surface);
            border-radius: var(--radius-lg);
            padding: 4rem;
            box-shadow: var(--shadow-soft);
        }

        .depth-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .lane {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem;
            border-bottom: 1px solid var(--bg-alt);
        }

        .lane:last-child {
            border-bottom: none;
        }
        
        .lane-seal {
            font-weight: 500;
            color: var(--text-muted);
        }

        .lane-value {
            font-family: monospace;
            font-weight: 700;
            color: var(--brand-dark);
            background: var(--bg-alt);
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
        }

        /* --- 页脚 (Sole) --- */
        .sole {
            background-color: var(--text-main);
            color: var(--bg-alt);
            padding: 4rem 5vw 2rem;
            margin-top: 6rem;
        }

        .sole-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            max-width: 1280px;
            margin: 0 auto;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 3rem;
        }

        .root-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--bg-surface);
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .sole-links {
            list-style: none;
        }

        .sole-links li {
            margin-bottom: 0.8rem;
        }

        .sole-links .wire {
            color: #a0aba5;
            font-size: 0.9rem;
        }

        .sole-links .wire:hover {
            color: var(--brand-primary);
        }

        .sole-echo {
            text-align: center;
            padding-top: 2rem;
            font-size: 0.85rem;
            color: #5a6660;
        }

        /* 响应式断点 */
        @media (max-width: 1024px) {
            .nexus,
            .vault,
            .depth-split {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .flare {
                padding: 4rem 0;
            }

            .vault .lens-veil {
                order: -1; /* 保证移动端图片在上 */
            }
        }

        @media (max-width: 768px) {
            .sole-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .mosaic-cluster {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                grid-template-areas: 
                    "a"
                    "b"
                    "c";
            }
            
            .shard-a, .shard-b, .shard-c {
                min-height: 150px;
            }

            .depth {
                padding: 2rem;
            }
        }

.helm-crown {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-main);
}
.helm-crown,
.helm-crown *,
.helm-crown *::before,
.helm-crown *::after {
    box-sizing: border-box;
}

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

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

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

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

.helm-crown a.helm-wire {
    --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;
}

.helm-crown a.helm-wire,
.helm-crown a.helm-wire:hover,
.helm-crown a.helm-wire:focus,
.helm-crown a.helm-wire:active,
.helm-crown a.helm-wire.active,
.helm-crown a.helm-wire[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-crown .helm-wire{
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }

.helm-crown .helm-flex-cluster{
            display: flex;
            flex-wrap: wrap;
        }

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

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

.helm-crown .helm-helm{
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 5vw;
            justify-content: space-between;
            align-items: center;
        }

.helm-crown .helm-crest img{
            height: 32px;
            width: auto;
            display: block;
        }

.helm-crown .helm-array{
            gap: 2rem;
            align-items: center;
        }

.helm-crown .helm-wire{
            text-decoration: none;
            color: #1c231e;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.25s ease;
            position: relative;
        }

.helm-crown .helm-wire:hover, .helm-crown .helm-wire.active{
            color: #43ea51;
        }

.helm-crown .helm-wire.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #43ea51;
            border-radius: 2px;
        }

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

.base-sole {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-main);
}
.base-sole,
.base-sole *,
.base-sole *::before,
.base-sole *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.base-sole .base-echo, .base-sole .base-wire{
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }

.base-sole p.base-echo{
            word-break: keep-all;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

.base-sole .base-wire{
            text-decoration: none;
            color: #1c231e;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.25s ease;
            position: relative;
        }

.base-sole .base-wire:hover, .base-sole .base-wire.active{
            color: #43ea51;
        }

.base-sole .base-wire.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #43ea51;
            border-radius: 2px;
        }

.base-sole{
            background-color: #1c231e;
            color: #e9ecea;
            padding: 4rem 5vw 2rem;
            margin-top: 6rem;
        }

.base-sole .base-sole-grid{
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            max-width: 1280px;
            margin: 0 auto;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 3rem;
        }

.base-sole .base-root-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

.base-sole .base-sole-links{
            list-style: none;
        }

.base-sole .base-sole-links li{
            margin-bottom: 0.8rem;
        }

.base-sole .base-sole-links .base-wire{
            color: #a0aba5;
            font-size: 0.9rem;
        }

.base-sole .base-sole-links .base-wire:hover{
            color: #43ea51;
        }

.base-sole .base-sole-echo{
            text-align: center;
            padding-top: 2rem;
            font-size: 0.85rem;
            color: #5a6660;
        }

@media (max-width: 768px){.base-sole .base-sole-grid{
                grid-template-columns: 1fr;
                gap: 2rem;
            }}