/* 变量定义 - 继承本站视觉契约 */
        :root {
            --brand: #dc5486;
            --brand-hover: #c44574;
            --bg-base: #f9f9fa;
            --bg-surface: #ffffff;
            --bg-deep: #16161a;
            --bg-deep-surface: #24242c;
            --text-primary: #1a1a24;
            --text-secondary: #5c5c6b;
            --text-muted: #9494a3;
            --border: #eaeaea;
            --radius-sm: 11px;
            --radius-lg: 17px;
            --shadow-soft: 0 4px 12px rgba(28, 28, 38, 0.08);
            --shadow-float: 0 16px 40px rgba(28, 28, 38, 0.12), 0 4px 12px rgba(28, 28, 38, 0.08);
            --shadow-brand: 0 8px 30px rgba(220, 84, 134, 0.3);
            --transition: 0.25s ease;
            --width-max: 1200px;
        }

        /* 基础重置 */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            min-width: 0; /* Flex约束 */
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-base);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            word-break: break-word;
            overflow-wrap: break-word;
        }

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

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* 导航栏 - 严格复用结构与样式基因 */
        .crown {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(234, 234, 234, 0.6);
        }

        .helm {
            max-width: var(--width-max);
            margin: 0 auto;
            padding: 0 2rem;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .seal img {
            height: 32px;
            width: auto;
        }

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

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

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

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

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

        /* 主内容区 */
        main {
            padding-top: 72px; /* 补偿固定导航 */
        }

        /* Typography */
        .apex {
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.1;
            letter-spacing: -0.02em;
            white-space: normal;
        }

        .apex-1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
        }

        .apex-2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            margin-bottom: 1rem;
        }

        .apex-3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .cipher {
            color: var(--text-secondary);
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            word-break: keep-all;
        }

        /* 按钮/入口语法 */
        .warp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            background-color: var(--brand);
            color: var(--bg-surface);
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: var(--radius-sm);
            border: none;
            box-shadow: var(--shadow-brand);
            cursor: pointer;
            transform: translateY(0);
        }

        .warp:hover, .warp:focus {
            background-color: var(--brand-hover);
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(220, 84, 134, 0.4);
            color: var(--bg-surface);
        }

        .warp-ghost {
            background-color: transparent;
            color: var(--text-primary);
            box-shadow: none;
            border: 1px solid var(--border);
        }

        .warp-ghost:hover {
            background-color: var(--bg-surface);
            color: var(--brand);
            box-shadow: var(--shadow-soft);
            border-color: transparent;
        }

        /* 区块 1: Hero (portal) - 获取入口 */
        .portal {
            min-height: 80vh;
            display: flex;
            align-items: center;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
            position: relative;
            overflow: hidden;
            flex-wrap: wrap;
        }

        .portal-inner {
            max-width: var(--width-max);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
            width: 100%;
        }

        .portal-cipher {
            flex: 1;
            min-width: 320px;
            z-index: 2;
        }

        .pack-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .portal-lens {
            flex: 1;
            min-width: 320px;
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: center;
        }

        .cloak {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 1rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-float);
            border: 1px solid rgba(255,255,255,0.6);
            transform: translateY(0);
            transition: transform var(--transition);
        }

        .cloak:hover {
            transform: translateY(-5px);
        }

        .cloak img {
            border-radius: var(--radius-sm);
        }

        .glyph-mesh {
            list-style: none;
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .glyph-bit {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-primary);
        }

        .glyph {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: var(--brand);
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* 区块 2: 平台选择器 (nexus) - 混用 div */
        .nexus {
            padding: 6rem 2rem;
            background-color: var(--bg-surface);
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-wrap: wrap;
        }

        .nexus-head {
            text-align: center;
            max-width: 800px;
            margin-bottom: 4rem;
        }

        .nexus-matrix {
            max-width: var(--width-max);
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
        }

        .lens-veil {
            flex: 1;
            min-width: 320px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
        }

        .lens-veil img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .vault-grid {
            flex: 1.5;
            min-width: 320px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
        }

        .vault {
            background-color: var(--bg-base);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2.5rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }

        .vault:hover {
            background-color: var(--bg-surface);
            box-shadow: var(--shadow-float);
            border-color: rgba(220, 84, 134, 0.2);
            transform: translateY(-4px);
        }

        .vault-glyph {
            width: 48px;
            height: 48px;
            background: rgba(220, 84, 134, 0.1);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--brand);
        }

        .vault-glyph svg {
            width: 28px;
            height: 28px;
            fill: currentColor;
        }

        .vault .cipher {
            font-size: 0.95rem;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .lane {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .lane .warp {
            flex: 1;
            padding: 0.75rem 1rem;
            font-size: 0.95rem;
            box-shadow: none;
            text-align: center;
        }

        /* 区块 3: 指南 (tunnel) - 混用 article */
        .tunnel {
            padding: 6rem 2rem;
            background: linear-gradient(to bottom, var(--bg-base) 0%, var(--bg-surface) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-wrap: wrap;
        }

        .tunnel-inner {
            max-width: 900px;
            width: 100%;
        }

        .tunnel-head {
            text-align: center;
            margin-bottom: 4rem;
        }

        .steps-pack {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .step-node {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
            background-color: var(--bg-surface);
            padding: 2rem 3rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--border);
            transition: transform var(--transition);
        }

        .step-node:hover {
            transform: translateX(5px);
            border-color: rgba(220, 84, 134, 0.3);
        }

        .step-num {
            font-size: 3rem;
            font-weight: 800;
            color: rgba(220, 84, 134, 0.15);
            line-height: 1;
        }

        .step-cipher {
            flex: 1;
            min-width: 200px;
        }

        /* 页脚 */
        .core {
            background-color: var(--bg-deep);
            color: var(--text-muted);
            padding: 4rem 2rem 2rem;
            text-align: center;
        }

        .anchor-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .anchor-cipher {
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        /* 响应式断点 */
        @media (max-width: 1024px) {
            .portal-inner { gap: 2rem; }
            .apex-1 { font-size: 2.8rem; }
        }

        @media (max-width: 768px) {
            .mesh { display: none; /* 移动端导航简化隐藏，依赖系统JS交互 */ }
            .helm { justify-content: center; }
            .portal { padding: 3rem 1.5rem; text-align: center; }
            .pack-inline { justify-content: center; }
            .glyph-mesh { align-items: center; }
            .vault-grid { grid-template-columns: 1fr; }
            .step-node { padding: 1.5rem; flex-direction: column; text-align: center; }
            .step-node:hover { transform: translateY(-5px); }
        }

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

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

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

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

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

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

.route-crown a.route-wire,
.route-crown a.route-wire:hover,
.route-crown a.route-wire:focus,
.route-crown a.route-wire:active,
.route-crown a.route-wire.active,
.route-crown a.route-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);
}

.route-crown .route-helm{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.route-crown{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            z-index: 100;
            padding: 1rem 0;
            transition: all 0.25s ease;
        }

.route-crown .route-helm{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1.5rem;
        }

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

.route-crown .route-seal img{
            height: 36px;
            width: auto;
            display: block;
        }

.route-crown .route-mesh{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.route-crown .route-mesh > *{ min-width: 0; }

.route-crown .route-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #5c5c6b;
            position: relative;
            padding: 0.5rem 0;
        }

.route-crown .route-wire:hover{
            color: #dc5486;
        }

.route-crown .route-wire.active{
            color: #dc5486;
            font-weight: 600;
        }

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

@media (max-width: 768px){.route-crown .route-mesh{
                display: none; 
            }}

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

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

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

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

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

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

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

.anchor-core .anchor-apex{
            font-weight: 700;
            color: #1a1a24;
            word-break: keep-all;
            overflow-wrap: break-word;
            white-space: normal;
        }

.anchor-core .anchor-cipher{
            word-break: keep-all;
            overflow-wrap: break-word;
            color: #5c5c6b;
        }

.anchor-core .anchor-apex-3{ font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.3; }

.anchor-core .anchor-tunnel-inner{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.anchor-core .anchor-pack{
            display: flex;
            flex-wrap: wrap;
        }

.anchor-core .anchor-pack > *{
            min-width: 0;
        }

.anchor-core .anchor-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #5c5c6b;
            position: relative;
            padding: 0.5rem 0;
        }

.anchor-core .anchor-wire:hover{
            color: #dc5486;
        }

.anchor-core .anchor-wire.active{
            color: #dc5486;
            font-weight: 600;
        }

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

.anchor-core{
            background-color: #111116;
            color: #ffffff;
            padding: 5rem 0 3rem;
        }

.anchor-core .anchor-core-grid{
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

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

.anchor-core .anchor-anchor .anchor-apex-3{
            color: #ffffff;
            margin-bottom: 1rem;
        }

.anchor-core .anchor-anchor .anchor-wire{
            color: #9494a3;
            font-size: 0.95rem;
            padding: 0;
            display: inline-block;
        }

.anchor-core .anchor-anchor .anchor-wire:hover{
            color: #ffffff;
        }

.anchor-core .anchor-moat{
            border-top: 1px solid #3a3a46;
            padding-top: 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            color: #9494a3;
            font-size: 0.875rem;
        }

.anchor-core .anchor-moat > *{ min-width: 0; }

.anchor-core .anchor-brand-cipher{
            font-size: 1.75rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: #ffffff;
            margin-bottom: 1rem;
        }

@media (max-width: 1024px){.anchor-core .anchor-core-grid{
                grid-template-columns: 1fr 1fr 1fr;
            }}

@media (max-width: 768px){.anchor-core .anchor-core-grid{
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

.anchor-core .anchor-moat{
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }}