:root {
            --primary: #f1bb65;
            --primary-glow: rgba(241, 187, 101, 0.4);
            --primary-dark: #dca34f;
            --surface: #ffffff;
            --bg: #f8fafc;
            --text-main: #334155;
            --text-heading: #0f172a;
            --text-muted: #64748b;
            --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-lg: 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;
        }

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

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

        /* 强制复用导航栏样式 */
        .helm {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 50;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 5%;
            border-bottom: 1px solid rgba(15, 23, 42, 0.05);
            box-shadow: var(--shadow-sm);
        }

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

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

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

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

        /* 布局通用类 */
        .veil {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5%;
        }

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

        .pod > * {
            min-width: 0;
        }

        /* 文本与标题 */
        .apex-1 {
            color: var(--text-heading);
            font-weight: 800;
            line-height: 1.2;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            letter-spacing: -0.02em;
            white-space: normal;
            margin-bottom: 1.5rem;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .apex-2 {
            color: var(--text-heading);
            font-weight: 700;
            line-height: 1.3;
            font-size: clamp(2rem, 3.5vw, 2.5rem);
            letter-spacing: -0.01em;
            white-space: normal;
            margin-bottom: 1rem;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .apex-3 {
            color: var(--text-heading);
            font-weight: 600;
            line-height: 1.4;
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .cipher {
            font-size: 1.125rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* 按钮与徽章 */
        .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;
            transition: var(--transition);
            cursor: pointer;
        }

        .warp:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px var(--primary-glow);
        }

        .spark {
            display: inline-flex;
            align-items: center;
            padding: 0.35rem 0.75rem;
            background-color: rgba(241, 187, 101, 0.15);
            color: var(--primary-dark);
            font-size: 0.875rem;
            font-weight: 600;
            border-radius: 2rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(241, 187, 101, 0.3);
        }

        /* 顶层区块 1: Portal (Hero区) - Reverse Split */
        .portal {
            background-color: var(--surface);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(15, 23, 42, 0.05);
        }

        .portal .pod {
            align-items: center;
        }

        .portal-veil {
            flex: 1 1 45%;
            min-width: 300px;
            order: 2; /* 移动端文字在上 */
        }

        .portal-lens {
            flex: 1 1 45%;
            min-width: 300px;
            position: relative;
            order: 1; /* 移动端图形在下 */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        @media(min-width: 1024px) {
            .portal {
                padding: 7rem 0;
            }
            .portal-veil {
                order: 2; /* 桌面端实现 reverse_split: 文字在右 */
                padding-left: 3rem;
            }
            .portal-lens {
                order: 1; /* 桌面端实现 reverse_split: 图形在左 */
            }
        }

        .svg-globe {
            width: 100%;
            max-width: 480px;
            height: auto;
            filter: drop-shadow(0 20px 30px rgba(15, 23, 42, 0.1));
            transition: var(--transition);
        }
        
        .portal-lens:hover .svg-globe {
            transform: scale(1.02) rotate(-2deg);
        }

        .svg-globe path, .svg-globe circle {
            animation: pulse-glow 3s infinite alternate;
        }

        @keyframes pulse-glow {
            0% { opacity: 0.7; }
            100% { opacity: 1; }
        }

        /* 顶层区块 2: Nexus (平台卡片区) */
        .nexus {
            padding: 6rem 0;
            background: linear-gradient(to bottom, var(--bg), #ffffff);
        }

        .nexus-crest {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem auto;
        }

        .nexus .pod {
            justify-content: center;
        }

        .node {
            flex: 1 1 300px;
            background: var(--surface);
            padding: 2.5rem 2rem;
            border-radius: var(--radius-md);
            border: 1px solid rgba(15, 23, 42, 0.05);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .node::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: left;
        }

        .node:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
            border-color: rgba(241, 187, 101, 0.3);
        }

        .node:hover::before {
            transform: scaleX(1);
        }

        .node-glyph {
            width: 64px;
            height: 64px;
            background-color: #f8fafc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary-dark);
            border: 1px solid rgba(15, 23, 42, 0.05);
            box-shadow: 0 4px 6px -1px rgba(241, 187, 101, 0.1);
        }

        .node-glyph svg {
            width: 32px;
            height: 32px;
        }

        /* 顶层区块 3: Vortex (4K画质展示区) */
        .vortex {
            padding: 5rem 0;
            background-color: var(--surface);
            border-top: 1px solid rgba(15, 23, 42, 0.05);
        }

        .vault {
            background-color: var(--text-heading);
            border-radius: var(--radius-lg);
            padding: 4rem 3rem;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 3rem;
        }

        .vault::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(241, 187, 101, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .vault-veil {
            flex: 1 1 350px;
            position: relative;
            z-index: 2;
        }

        .vault .apex-2 {
            color: var(--surface);
        }

        .vault .cipher {
            color: #cbd5e1;
            margin-bottom: 0;
        }

        .vault-lens {
            flex: 1 1 300px;
            display: flex;
            justify-content: flex-end;
            z-index: 2;
        }
        
        .speed-glyph {
            width: 100%;
            max-width: 280px;
            height: auto;
        }

        /* 页脚 */
        .base {
            background-color: var(--bg);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(15, 23, 42, 0.05);
            text-align: center;
        }

        .anchor {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-heading);
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .base .cipher {
            font-size: 0.875rem;
            margin-bottom: 0;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .helm {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem;
            }
            
            .array {
                gap: 1rem;
                justify-content: center;
            }

            .portal-lens, .portal-veil {
                flex-basis: 100%;
            }
            
            .vault {
                padding: 2.5rem 1.5rem;
            }
            
            .vault-lens {
                justify-content: 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;
        }