/* 站点统一视觉变量体系 - 继承自首页家族 */
        :root {
            --color-bg: #030305;
            --color-surface: #0f0f13;
            --color-surface-hover: #1a1a20;
            --color-primary: #9ed245;
            --color-primary-dim: rgba(158, 210, 69, 0.15);
            --color-text: #f0f0f2;
            --color-text-mut: #a1a1aa;
            --color-border: rgba(255, 255, 255, 0.05);
            --color-border-hover: rgba(158, 210, 69, 0.3);
            --radius-base: 20px;
            --radius-sm: 12px;
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --transition: all 0.15s ease;
        }

        /* 基础重置与排版设定 */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            min-width: 0; /* Flex子项防溢出核心规则 */
        }

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

        /* 强制文本换行规范 */
        p, h1, h2, h3, span, div {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        
        p {
            word-break: keep-all; /* 中文词组防断 */
        }

        h1, h2, h3 {
            white-space: normal;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* 强制导航栏复用样式 (原样继承) */
        .crest {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(3, 3, 3, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border);
        }

        .steer {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
        }

        .dino {
            display: flex;
            align-items: center;
        }

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

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

        .blink {
            color: var(--color-text-mut);
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--transition);
        }

        .blink:hover {
            color: var(--color-text);
        }

        .blink.active {
            color: var(--color-text);
            position: relative;
        }

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

        /* 布局容器 */
        .vault {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            width: 100%;
        }

        .proxy {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            flex-wrap: wrap;
        }

        /* 核心组件变体：大标题尺度 */
        .fetch-mega {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: var(--color-text);
            margin-bottom: 1.5rem;
            width: 100%;
        }

        .fetch-prime {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            width: 100%;
        }
        
        .fetch-node {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--color-text);
            width: 100%;
        }

        /* 核心组件变体：正文描述 */
        .ping-lead {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: var(--color-text-mut);
            max-width: 680px;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }
        
        .ping-base {
            font-size: 1rem;
            color: var(--color-text-mut);
            line-height: 1.6;
            width: 100%;
        }

        /* 核心组件变体：行动按钮 */
        .urge-prime {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 2rem;
            background-color: var(--color-primary);
            color: #000;
            font-weight: 600;
            border-radius: 100px;
            box-shadow: 0 4px 20px var(--color-primary-dim);
            transition: var(--transition);
            cursor: pointer;
            border: none;
            outline: none;
        }

        .urge-prime:hover, .urge-prime:focus {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(158, 210, 69, 0.3);
            background-color: #a8e04a;
        }

        .urge-ghost {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 2rem;
            background-color: transparent;
            color: var(--color-text);
            font-weight: 600;
            border-radius: 100px;
            border: 1px solid var(--color-border);
            transition: var(--transition);
            cursor: pointer;
        }

        .urge-ghost:hover, .urge-ghost:focus {
            background-color: var(--color-surface-hover);
            border-color: var(--color-text-mut);
        }

        /* 核心组件变体：卡片/面板 */
        .pane {
            background-color: var(--color-surface);
            border-radius: var(--radius-base);
            border: 1px solid var(--color-border);
            padding: 2.5rem;
            transition: var(--transition);
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            width: 100%;
        }

        .pane:hover {
            border-color: var(--color-border-hover);
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--color-primary-dim);
        }

        /* SVG图标通用容器 */
        .cache {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .cache svg {
            width: 48px;
            height: 48px;
            color: var(--color-primary);
        }

        /* ==================== 页面特定区块 ==================== */

        /* 1. 剖析网页 (Hero区) - 继承首页景深感，偏极客风 */
        .vista {
            position: relative;
            min-height: calc(85vh - 80px);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            padding: 6rem 0;
            background: radial-gradient(circle at 50% 0%, var(--color-primary-dim) 0%, transparent 70%);
            overflow: hidden;
            width: 100%;
        }

        .vista::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 0;
            opacity: 0.5;
            pointer-events: none;
        }

        .vista .proxy {
            position: relative;
            z-index: 1;
            justify-content: center;
            text-align: center;
        }

        .vista .ping-lead {
            margin-left: auto;
            margin-right: auto;
        }

        .vista-trace {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            width: 100%;
            margin-bottom: 4rem;
        }

        /* 极客风装饰图形 */
        .vista-nexus {
            width: 100%;
            max-width: 800px;
            height: 300px;
            margin: 0 auto;
            background: var(--color-surface);
            border-radius: var(--radius-sm) var(--radius-sm) 0 0;
            border: 1px solid var(--color-border);
            border-bottom: none;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            overflow: hidden;
            box-shadow: 0 24px 64px rgba(0,0,0,0.6);
        }

        .nexus-crest {
            height: 32px;
            background: #1a1a20;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            padding: 0 1rem;
            gap: 6px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .nexus-dot {
            width: 10px; height: 10px; border-radius: 50%;
            background: #333;
        }
        .nexus-dot:nth-child(1) { background: #ff5f56; }
        .nexus-dot:nth-child(2) { background: #ffbd2e; }
        .nexus-dot:nth-child(3) { background: #27c93f; }

        .nexus-proxy {
            flex: 1;
            padding: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 1rem;
        }

        .nexus-code {
            font-family: monospace;
            color: var(--color-text-mut);
            font-size: 0.9rem;
            line-height: 1.5;
            width: 100%;
            text-align: left;
        }

        .nexus-hl { color: var(--color-primary); }
        .nexus-tag { color: #56b6c2; }
        .nexus-attr { color: #d19a66; }

        /* 2. 核心面板解析 (Core Panels) */
        .stage {
            padding: 8rem 0;
            width: 100%;
            background-color: var(--color-bg);
            position: relative;
        }

        .stage .proxy {
            flex-direction: column;
            gap: 4rem;
        }

        .stage-crest {
            text-align: center;
            width: 100%;
        }

        .stage-crest .ping-lead {
            margin: 0 auto;
        }

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

        /* 面板卡片特殊质感 */
        .pane-glass {
            background: linear-gradient(145deg, rgba(15, 15, 19, 0.8) 0%, rgba(15, 15, 19, 0.4) 100%);
            backdrop-filter: blur(20px);
        }

        .pane-glass .cache {
            width: 64px;
            height: 64px;
            border-radius: var(--radius-sm);
            background: rgba(158, 210, 69, 0.1);
            justify-content: center;
            align-items: center;
            margin-bottom: 2rem;
        }

        .pane-glass .cache svg {
            width: 32px;
            height: 32px;
        }

        /* 3. 性能分析 (Performance) */
        .flare {
            padding: 8rem 0;
            width: 100%;
            background-color: #08080a; /* 略微下沉的背景 */
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

        .flare .proxy {
            align-items: center;
            gap: 4rem;
        }

        .flare-proxy {
            flex: 1;
            min-width: 320px;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 1.5rem;
        }

        .flare-visual {
            flex: 1.2;
            min-width: 320px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        /* Lighthouse SVG 仪表盘风格 */
        .flare-dash {
            width: 100%;
            max-width: 500px;
            background: var(--color-surface);
            border-radius: var(--radius-base);
            padding: 3rem 2rem;
            border: 1px solid var(--color-border);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        }

        .flare-ring {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            flex: 1;
            min-width: 80px;
        }

        .flare-ring svg {
            width: 80px;
            height: 80px;
        }

        .flare-ring span {
            font-size: 0.85rem;
            color: var(--color-text-mut);
            font-weight: 500;
        }

        .flare-score {
            font-size: 1.5rem;
            font-weight: 700;
            fill: var(--color-primary);
        }

        /* 4. 移动设备模拟 (Mobile Emulation) */
        .hull {
            padding: 8rem 0;
            width: 100%;
            background-color: var(--color-bg);
            position: relative;
        }

        .hull .proxy {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .hull-stage {
            width: 100%;
            max-width: 800px;
            margin-top: 4rem;
            position: relative;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: flex-end;
            height: 300px;
        }

        /* 设备线框 SVG 容器 */
        .hull-device {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hull-device svg {
            filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
            stroke: var(--color-text-mut);
            stroke-width: 2;
            fill: var(--color-surface);
            transition: var(--transition);
        }
        
        .hull-device:hover svg {
            stroke: var(--color-primary);
        }

        /* 底部信息区域 (Footer) */
        .glyph {
            background-color: #000;
            padding: 4rem 0 2rem;
            border-top: 1px solid var(--color-border);
            width: 100%;
        }

        .glyph .proxy {
            flex-direction: column;
            gap: 3rem;
        }

        .glyph-trace {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            width: 100%;
        }

        .glyph-brand {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 1rem;
            flex: 1;
            min-width: 240px;
        }

        .glyph-brand span {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--color-text);
            letter-spacing: -0.02em;
        }

        .glyph-omni {
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
        }

        .glyph-col {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 1rem;
            min-width: 120px;
        }

        .glyph-fetch {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--color-text);
            margin-bottom: 0.5rem;
        }

        .glyph-blink {
            font-size: 0.9rem;
            color: var(--color-text-mut);
            transition: var(--transition);
        }

        .glyph-blink:hover {
            color: var(--color-primary);
        }

        .glyph-base {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
            border-top: 1px solid var(--color-border);
            width: 100%;
            color: var(--color-text-mut);
            font-size: 0.85rem;
        }

        /* 响应式调整 */
        @media (max-width: 1024px) {
            .fetch-mega { font-size: 3rem; }
            .stage, .flare, .hull { padding: 5rem 0; }
            .flare .proxy { flex-direction: column; }
        }

        @media (max-width: 768px) {
            .steer { flex-direction: column; gap: 1rem; }
            .cast { width: 100%; justify-content: center; }
            .fetch-mega { font-size: 2.5rem; }
            .vista { padding: 4rem 0; }
            .trace-grid { grid-template-columns: 1fr; }
            .flare-dash { flex-direction: column; align-items: center; }
            .glyph-omni { flex-direction: column; gap: 2rem; }
            .nexus-proxy { display: none; } /* 移动端隐藏复杂代码块 */
            .nexus-crest { border-radius: var(--radius-sm); }
            .vista-nexus { height: auto; }
        }

.omni-crest{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(3, 3, 5, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 1rem clamp(1.5rem, 5vw, 4rem);
        }

.omni-crest .omni-steer{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
            gap: 1rem;
        }

.omni-crest .omni-dino{
            width: auto;
            height: 32px;
            display: flex;
            align-items: center;
        }

.omni-crest .omni-dino img{
            height: 100%;
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
        }

.omni-crest .omni-cast{
            display: flex;
            flex-wrap: wrap;
            gap: clamp(1rem, 2vw, 2.5rem);
            align-items: center;
        }

.omni-crest .omni-blink{
            font-size: 0.95rem;
            font-weight: 500;
            color: #a1a1aa;
            transition: color 0.15s ease;
            padding: 0.5rem 0;
            position: relative;
        }

.omni-crest .omni-blink:hover{
            color: #ffffff;
        }

.omni-crest .omni-blink.active{
            color: #9ed245;
        }

.omni-crest .omni-blink.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #9ed245;
            border-radius: 2px;
        }

@media (max-width: 768px){.omni-crest .omni-steer{
                flex-direction: column;
                align-items: flex-start;
            }

.omni-crest .omni-cast{
                width: 100%;
                justify-content: space-between;
                gap: 0.5rem;
            }}

.omni-crest {
    background: rgb(3, 3, 5);
    background-image: none;
}

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

.base-base nav,
.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{
            background-color: #000000;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 4rem clamp(1.5rem, 5vw, 4rem);
        }

.base-base .base-trace-foot{
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

.base-base .base-glyph-brand{
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.02em;
        }

.base-base .base-glyph-info{
            color: #a1a1aa;
            font-size: 0.9rem;
        }

@media (max-width: 768px){.base-base .base-trace-foot{
                flex-direction: column;
                align-items: flex-start;
            }}