/* ==========================================================================
           视觉契约 & 基础变量 (Inherited from Homepage)
           ========================================================================== */
        :root {
            --color-brand: #f39552;
            --color-brand-light: #fef5ed;
            --color-brand-hover: #e8823b;
            --color-text-apex: #1a202c;
            --color-text-byte: #4a5568;
            --color-text-muted: #718096;
            --color-bg-base: #fcfcfb;
            --color-bg-surface: #ffffff;
            --color-border: #edf2f7;
            
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 23px;
            
            --shadow-soft: 0 10px 30px rgba(243, 149, 82, 0.08), 0 2px 8px rgba(0,0,0,0.02);
            --shadow-hover: 0 15px 35px rgba(243, 149, 82, 0.15), 0 5px 15px rgba(0,0,0,0.04);
            
            --transition: all 0.35s ease;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--color-bg-base);
            color: var(--color-text-byte);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        /* ==========================================================================
           强制安全规则：Flexbox 与 文本换行
           ========================================================================== */
        .helm, .chain, .nexus, .flare, 
        .portal, .pool, .hop, .dial, 
        .wake, .mesh {
            display: flex;
            flex-wrap: wrap;
        }

        .helm > *, .chain > *, .nexus > *, 
        .flare > *, .portal > *, .pool > *, 
        .hop > *, .dial > *, .wake > *, .mesh > * {
            min-width: 0;
        }

        .apex, .byte, .wire, .dial {
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .byte {
            word-break: keep-all;
        }

        .apex {
            white-space: normal;
        }

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

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

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

        .helm {
            max-width: 1280px;
            margin: 0 auto;
            padding: 16px 24px;
            justify-content: space-between;
            align-items: center;
        }

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

        .chain {
            gap: 32px;
            align-items: center;
        }

        .wire {
            color: var(--color-text-byte);
            font-weight: 500;
            font-size: 15px;
            position: relative;
            padding: 4px 0;
        }

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

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

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

        /* ==========================================================================
           主内容容器 (Tunnel)
           ========================================================================== */
        .tunnel {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            flex-direction: column;
            gap: 60px;
        }

        /* ==========================================================================
           获取模块: Hero区 (Nexus)
           ========================================================================== */
        .nexus {
            padding: 80px 0 40px;
            gap: 60px;
            align-items: center;
        }

        .nexus .veil {
            flex: 1 1 450px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .nexus .lens {
            flex: 1 1 500px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(255,255,255,0.8);
            transform: translateY(0);
            transition: var(--transition);
        }

        .nexus .lens:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

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

        .apex-huge span {
            color: var(--color-brand);
        }

        .byte-lead {
            font-size: 1.125rem;
            color: var(--color-text-muted);
            max-width: 90%;
        }

        .dial-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 16px 36px;
            background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-hover) 100%);
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: var(--radius-lg);
            box-shadow: 0 8px 20px rgba(243, 149, 82, 0.3);
            border: none;
            cursor: pointer;
            width: fit-content;
        }

        .dial-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(243, 149, 82, 0.4);
            color: white;
        }

        .glyph {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .veil-meta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--color-brand-light);
            color: var(--color-brand-hover);
            padding: 6px 16px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.875rem;
            width: fit-content;
        }

        /* ==========================================================================
           对比选择模块 (Flare)
           ========================================================================== */
        .flare {
            flex-direction: column;
            gap: 40px;
            padding: 60px 0;
        }

        .flare-crown {
            text-align: center;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        .apex-tunnel {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 800;
            color: var(--color-text-apex);
        }

        .flare-lens {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            overflow: hidden;
            border: 1px solid var(--color-border);
        }

        .pool-matrix {
            gap: 32px;
            width: 100%;
            justify-content: center;
        }

        .node-edition {
            flex: 1 1 350px;
            background: var(--color-bg-surface);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(255,255,255,0.8);
            display: flex;
            flex-direction: column;
            gap: 20px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .node-edition:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: var(--color-brand-light);
        }

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

        .node-edition.recommended::before {
            background: var(--color-brand);
        }

        .node-crown {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .glyph-seal {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--color-bg-base);
            border: 1px solid var(--color-border);
            color: var(--color-text-apex);
        }

        .node-edition.recommended .glyph-seal {
            background: var(--color-brand-light);
            border-color: rgba(243, 149, 82, 0.2);
            color: var(--color-brand);
        }

        .apex-node {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--color-text-apex);
            margin-bottom: 4px;
        }

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

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

        .dial-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            background: var(--color-bg-base);
            color: var(--color-text-apex);
            font-weight: 600;
            border-radius: var(--radius-sm);
            border: 1px solid var(--color-border);
            cursor: pointer;
            width: 100%;
        }

        .node-edition.recommended .dial-secondary {
            background: var(--color-brand);
            color: white;
            border-color: var(--color-brand);
        }

        .dial-secondary:hover {
            background: var(--color-brand-hover);
            color: white;
            border-color: var(--color-brand-hover);
        }

        /* ==========================================================================
           环境要求模块 (Portal)
           ========================================================================== */
        .portal {
            background: var(--color-bg-surface);
            border-radius: var(--radius-lg);
            padding: 48px;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(255,255,255,0.8);
            gap: 40px;
            align-items: center;
            margin-bottom: 80px;
        }

        .portal-crown {
            flex: 1 1 300px;
        }

        .pool-reqs {
            flex: 2 1 500px;
            gap: 24px;
            flex-direction: column;
        }

        .hop-req {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: var(--color-bg-base);
            border-radius: var(--radius-md);
            border: 1px solid var(--color-border);
            transition: var(--transition);
        }

        .hop-req:hover {
            border-color: var(--color-brand-light);
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
            transform: translateX(5px);
        }

        .glyph-glyph {
            width: 32px;
            height: 32px;
            color: var(--color-brand);
            flex-shrink: 0;
        }

        .apex-req {
            font-weight: 600;
            color: var(--color-text-apex);
            font-size: 1.1rem;
        }

        /* ==========================================================================
           页脚区域 (Wake)
           ========================================================================== */
        .wake {
            background-color: var(--color-bg-surface);
            padding: 60px 24px;
            border-top: 1px solid var(--color-border);
            justify-content: center;
            text-align: center;
        }

        .base {
            flex-direction: column;
            gap: 16px;
            align-items: center;
        }

        .apex-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-text-apex);
            letter-spacing: -0.02em;
        }

        .chain-wake {
            gap: 24px;
            justify-content: center;
            margin-top: 8px;
        }

        .wire-muted {
            color: var(--color-text-muted);
            font-size: 0.9rem;
        }

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

        /* ==========================================================================
           响应式设计
           ========================================================================== */
        @media (max-width: 1024px) {
            .nexus {
                padding: 60px 0 20px;
            }
            .portal {
                padding: 32px;
            }
        }

        @media (max-width: 768px) {
            .chain {
                display: none; /* Mobile menu simplification for this scope */
            }
            .tunnel {
                gap: 40px;
            }
            .nexus, .portal {
                flex-direction: column;
            }
            .nexus .veil, .nexus .lens,
            .portal-crown, .pool-reqs {
                flex: 1 1 100%;
                width: 100%;
            }
            .apex-huge {
                font-size: 2.25rem;
            }
        }

.route-crown{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(243, 149, 82, 0.1);
            padding: 16px 0;
        }

.route-crown .route-helm{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.route-crown .route-core{
            display: flex;
            align-items: center;
        }

.route-crown .route-core img{
            height: 36px;
            width: auto;
            object-fit: contain;
        }

.route-crown .route-chain{
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            align-items: center;
        }

.route-crown .route-wire{
            font-weight: 500;
            color: #4a5568;
            font-size: 0.95rem;
            transition: all 0.35s ease;
            position: relative;
        }

.route-crown .route-wire:hover, .route-crown .route-wire.active{
            color: #f39552;
        }

.route-crown .route-wire.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 3px;
            background: #f39552;
            border-radius: 2px;
        }

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

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

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

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

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

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

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

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

.base-wake .base-byte{
            word-break: break-word;
            overflow-wrap: break-word;
        }

.base-wake .base-byte{
            word-break: keep-all; 
        }

.base-wake{
            background: #1a202c;
            color: rgba(255,255,255,0.7);
            padding: 60px 24px 40px;
            margin-top: 60px;
        }

.base-wake .base-base{
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 40px;
        }

.base-wake .base-base-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            letter-spacing: 1px;
        }

@media (max-width: 768px){.base-wake .base-base{ flex-direction: column; gap: 20px; text-align: center; }}