/* 基础变量 - 继承自首页视觉契约 */
        :root {
            --primary: #f1bb65;
            --primary-glow: rgba(241, 187, 101, 0.4);
            --primary-dark: #d9a04a;
            --surface: #ffffff;
            --bg: #f8fafc;
            --text-main: #334155;
            --text-heading: #0f172a;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.03);
            --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
            --shadow-hover: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
            --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --transition: all 0.25s ease;
        }

        /* 全局重置 */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            min-width: 0; /* Flexbox safety */
            word-break: break-word; /* Text wrap safety */
            overflow-wrap: break-word;
        }

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

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        /* 导航栏复用样式 (精确匹配给定HTML) */
        .helm {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            flex-wrap: wrap;
        }

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

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

        .wire {
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-main);
            padding: 0.5rem 0;
            position: relative;
        }

        .wire:hover {
            color: var(--primary-dark);
        }

        .wire.active {
            color: var(--text-heading);
            font-weight: 700;
        }

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

        /* 主容器 */
        .tube {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 4rem;
            padding-bottom: 5rem;
        }

        /* 1. 网络拓扑 (Hero - Reverse Split) */
        .portal {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1280px;
            margin: 0 auto;
            padding: 4rem 5%;
            min-height: 70vh;
        }

        /* 左侧视觉 (Reverse Split 的体现) */
        .veil {
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: 3rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            aspect-ratio: 1 / 1;
        }

        .veil::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, var(--primary-glow) 0%, transparent 60%);
            opacity: 0.5;
            animation: pulse 8s infinite alternate ease-in-out;
        }

        @keyframes pulse {
            0% { transform: scale(0.8); opacity: 0.3; }
            100% { transform: scale(1.1); opacity: 0.6; }
        }

        .glyph-map {
            width: 100%;
            height: 100%;
            position: relative;
            z-index: 2;
        }

        /* 右侧文本 */
        .nexus {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .apex-1 {
            color: var(--text-heading);
            font-weight: 800;
            line-height: 1.2;
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            letter-spacing: -0.02em;
            white-space: normal;
        }

        .cipher-lead {
            font-size: 1.25rem;
            color: var(--text-muted);
            line-height: 1.8;
            word-break: keep-all;
        }

        .pod-stats {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .peer-stat {
            display: flex;
            flex-direction: column;
            border-left: 3px solid var(--primary);
            padding-left: 1rem;
        }

        .apex-stat {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-heading);
            line-height: 1;
        }

        .cipher-stat {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }

        .band-status {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(241, 187, 101, 0.15);
            color: #b47f25;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            width: fit-content;
            margin-bottom: 1rem;
        }

        .band-status::before {
            content: '';
            width: 8px;
            height: 8px;
            background-color: var(--primary);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--primary);
        }

        /* 2. 区域分布 (Detail) */
        .vortex {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5%;
            width: 100%;
        }

        .apex-tube {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 800;
            color: var(--text-heading);
            text-align: center;
            margin-bottom: 1rem;
        }

        .cipher-tube {
            text-align: center;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 4rem auto;
            font-size: 1.125rem;
        }

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

        .node {
            background: var(--surface);
            padding: 2.5rem;
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .node:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-glow);
        }

        .node::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: transparent;
            transition: var(--transition);
        }

        .node:hover::before {
            background: var(--primary);
        }

        .glyph-region {
            width: 48px;
            height: 48px;
            background: var(--bg);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
        }

        .apex-2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-heading);
        }

        .cipher-desc {
            color: var(--text-muted);
            flex-grow: 1;
        }

        .pod-locations {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .peer-loc {
            background: var(--bg);
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            font-size: 0.875rem;
            color: var(--text-heading);
            font-weight: 500;
            border: 1px solid var(--border);
        }

        /* 3. 原生IP专区 (Closing) */
        .veil {
            max-width: 1280px;
            margin: 2rem auto 0;
            padding: 0 5%;
            width: 100%;
        }

        .vault {
            background: linear-gradient(135deg, var(--text-heading) 0%, #1e293b 100%);
            border-radius: var(--radius-lg);
            padding: 4rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 3rem;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .vault::after {
            content: '';
            position: absolute;
            right: 0;
            bottom: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(circle at bottom right, var(--primary-glow), transparent 70%);
            pointer-events: none;
        }

        .vault-veil {
            flex: 1;
            min-width: 300px;
            z-index: 2;
        }

        .apex-3 {
            color: var(--surface);
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .cipher-light {
            color: #94a3b8;
            font-size: 1.125rem;
            margin-bottom: 2rem;
            max-width: 500px;
        }

        .warp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary);
            color: var(--text-heading);
            font-weight: 700;
            padding: 1rem 2.5rem;
            border-radius: var(--radius-md);
            box-shadow: 0 4px 14px var(--primary-glow);
            border: 2px solid var(--primary);
            font-size: 1.125rem;
            cursor: pointer;
        }

        .warp:hover {
            background-color: transparent;
            color: var(--primary);
            box-shadow: none;
        }

        .vault-visual {
            display: flex;
            gap: 1rem;
            z-index: 2;
        }

        .glyph-seal {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 1.5rem;
            border-radius: var(--radius-md);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: var(--surface);
        }

        .glyph-seal svg {
            width: 32px;
            height: 32px;
            stroke: var(--primary);
        }

        /* 页脚 */
        .base {
            background: var(--surface);
            border-top: 1px solid var(--border);
            padding: 4rem 5%;
            margin-top: 4rem;
        }

        .root-tube {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .cipher-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-heading);
        }

        .pod-links {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .anchor {
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        .anchor:hover {
            color: var(--primary-dark);
        }

        .cipher-cipher {
            color: var(--text-muted);
            font-size: 0.875rem;
            width: 100%;
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
        }

        /* 响应式断点 */
        @media (max-width: 1024px) {
            .portal {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .veil {
                grid-row: 1; /* 移动端让视觉在上 */
                aspect-ratio: 16 / 9;
                padding: 1.5rem;
            }
            .nexus {
                grid-row: 2;
                text-align: center;
                align-items: center;
            }
            .pod-stats {
                justify-content: center;
            }
            .peer-stat {
                border-left: none;
                border-top: 3px solid var(--primary);
                padding-left: 0;
                padding-top: 1rem;
            }
        }

        @media (max-width: 768px) {
            .helm {
                flex-direction: column;
                gap: 1rem;
            }
            .array {
                justify-content: center;
                gap: 1rem;
            }
            .vault {
                padding: 2.5rem;
                justify-content: center;
                text-align: center;
            }
            .cipher-light {
                margin-left: auto;
                margin-right: auto;
            }
            .vault-visual {
                flex-wrap: wrap;
                justify-content: center;
            }
            .root-tube {
                flex-direction: column;
                text-align: center;
            }
        }

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

.helm-helm [role="navigation"],
.helm-helm div,
.helm-helm section,
.helm-helm article,
.helm-helm aside,
.helm-helm p,
.helm-helm h1,
.helm-helm h2,
.helm-helm h3,
.helm-helm h4,
.helm-helm h5,
.helm-helm h6,
.helm-helm a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

.helm-helm 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-helm a.helm-wire,
.helm-helm a.helm-wire:hover,
.helm-helm a.helm-wire:focus,
.helm-helm a.helm-wire:active,
.helm-helm a.helm-wire.active,
.helm-helm 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-helm{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid #e2e8f0;
            padding: 1rem 5%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

.helm-helm .helm-sigil{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.helm-helm .helm-sigil img{
            height: 36px;
            width: auto;
        }

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

.helm-helm .helm-wire{
            font-weight: 600;
            color: #334155;
            font-size: 0.95rem;
            transition: all 0.25s ease;
            position: relative;
            min-width: 0;
        }

.helm-helm .helm-wire:hover{
            color: #0f172a;
        }

.helm-helm .helm-wire.active{
            color: #0f172a;
        }

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

@media (max-width: 768px){.helm-helm .helm-array{
                display: none; 
            }

.helm-helm{
                justify-content: center;
            }}

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

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

.base-base [role="navigation"],
.base-base div,
.base-base section,
.base-base article,
.base-base aside,
.base-base p,
.base-base h1,
.base-base h2,
.base-base h3,
.base-base h4,
.base-base h5,
.base-base h6,
.base-base a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

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

.base-base .base-apex-4{
            color: #0f172a;
            font-weight: 800;
            line-height: 1.2;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
        }

.base-base .base-apex-4{ font-size: 1.1rem; margin-bottom: 0.25rem; }

.base-base .base-tube{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5%;
        }

.base-base .base-array-vertical{
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }

.base-base{
            background-color: #020617;
            color: #94a3b8;
            padding: 4rem 0 2rem;
            border-top: 1px solid #1e293b;
        }

.base-base .base-pod-root{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
            margin-bottom: 3rem;
        }

.base-base .base-root-brand{
            flex: 1;
            min-width: 280px;
        }

.base-base .base-apex-root{
            color: #ffffff;
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

.base-base .base-root-helm{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            min-width: 0;
        }

.base-base .base-wire-foot{
            transition: all 0.25s ease;
        }

.base-base .base-wire-foot:hover{
            color: #f1bb65;
        }

.base-base .base-root-bottom{
            border-top: 1px solid #1e293b;
            padding-top: 2rem;
            text-align: center;
        }

.base-base .base-cipher-tiny{
            font-size: 0.875rem;
        }