/* CSS Variables - 继承首页正文视觉家族 */
        :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;
            --radius-base: 20px;
            --radius-sm: 12px;
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --transition: 0.15s ease;
        }

        /* Base Resets */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.6;
            word-break: break-word;
            overflow-wrap: break-word;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

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

        img, svg {
            max-width: 100%;
            display: block;
        }

        /* 强制约束类 */
        .trace {
            display: flex;
            flex-wrap: wrap;
        }
        .trace > * {
            min-width: 0;
        }

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

        .hull {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 导航栏复用样式 */
        .crest {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(3, 3, 5, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 16px 0;
        }

        .steer {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        .steer > * {
            min-width: 0;
        }

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

        .dino img {
            height: 100%;
            width: auto;
        }

        .cast {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            align-items: center;
        }
        
        .cast > * {
            min-width: 0;
        }

        .blink {
            color: var(--color-text-mut);
            font-size: 0.95rem;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 8px;
        }

        .blink:hover,
        .blink:focus {
            color: var(--color-text);
            background: rgba(255, 255, 255, 0.05);
        }

        .blink.active {
            color: var(--color-primary);
            background: var(--color-primary-dim);
        }

        /* Typography */
        .fetch-mega {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            white-space: normal;
        }

        .fetch {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            white-space: normal;
        }

        .fetch-sub {
            font-size: 1.25rem;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 0.75rem;
            white-space: normal;
            color: var(--color-text);
        }

        .ping {
            font-size: 1.125rem;
            color: var(--color-text-mut);
            line-height: 1.7;
            word-break: keep-all;
        }

        /* Hero Section (Role: acquire) */
        .vista {
            position: relative;
            min-height: calc(85vh - 80px);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            padding: 80px 0;
            background: radial-gradient(circle at 50% 0%, var(--color-primary-dim) 0%, transparent 60%);
            overflow: hidden;
        }
        
        .vista > * {
            min-width: 0;
        }

        .flare {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .vista .ping {
            font-size: clamp(1.125rem, 2vw, 1.35rem);
            margin-bottom: 2.5rem;
            color: rgba(240, 240, 242, 0.8);
        }

        /* Action Components */
        .urge-prime {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            background-color: var(--color-primary);
            color: #000000;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 100px;
            box-shadow: 0 4px 20px rgba(158, 210, 69, 0.2);
            border: 2px solid transparent;
        }

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

        .urge-sub {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            background-color: transparent;
            color: var(--color-text);
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 100px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
        }

        .urge-sub:hover,
        .urge-sub:focus {
            background-color: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .urge-sync {
            display: inline-flex;
            align-items: center;
            color: var(--color-primary);
            font-weight: 500;
            font-size: 1rem;
            margin-top: 1.5rem;
        }

        .urge-sync svg {
            margin-left: 8px;
            transition: transform var(--transition);
        }

        .urge-sync:hover svg,
        .urge-sync:focus svg {
            transform: translateX(4px);
        }

        .flare .trace {
            justify-content: center;
            gap: 20px;
            margin-top: 2rem;
        }

        /* Abstract Hero Visual (CSS Geometry) */
        .proxy-visual {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100vw;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            opacity: 0.4;
        }

        .proxy-visual::before {
            content: '';
            position: absolute;
            top: 40%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(45deg);
            width: 60vw;
            height: 60vw;
            max-width: 800px;
            max-height: 800px;
            border: 1px solid rgba(158, 210, 69, 0.1);
            border-radius: 40px;
            box-shadow: inset 0 0 100px rgba(158, 210, 69, 0.05);
        }

        /* Content Sections */
        .stage {
            padding: 100px 0;
            position: relative;
        }

        .stage::before {
            content: '';
            position: absolute;
            top: 0;
            left: 10%;
            right: 10%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
        }

        .stage .hull > .ping {
            max-width: 680px;
            margin-bottom: 4rem;
        }

        /* Grid System using CSS Grid */
        .trace-alt {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        /* Card Component */
        .pane {
            background-color: var(--color-surface);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-base);
            padding: 40px 32px;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
            transition: transform var(--transition), border-color var(--transition);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .pane:hover {
            transform: translateY(-8px);
            border-color: rgba(158, 210, 69, 0.2);
            background-color: var(--color-surface-hover);
        }

        .cache {
            width: 48px;
            height: 48px;
            margin-bottom: 24px;
            color: var(--color-primary);
            background: var(--color-primary-dim);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }

        .pane .ping {
            font-size: 1rem;
            margin-bottom: 0;
            flex-grow: 1;
        }

        /* Badge/Platform Visuals */
        .pixel {
            margin-bottom: 20px;
            width: 100%;
        }

        /* Footer Area */
        .root {
            background-color: #020203;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 80px 0 40px;
            margin-top: 60px;
        }

        .base {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .base .trace {
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding-bottom: 40px;
        }

        .dino-type {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-text);
            letter-spacing: -0.02em;
        }

        .base .cast {
            gap: 32px;
        }

        .glyph {
            color: var(--color-text-mut);
            font-size: 0.875rem;
            text-align: center;
        }

        /* Responsive Breakpoints */
        @media (max-width: 768px) {
            .steer {
                flex-direction: column;
                gap: 20px;
                padding: 16px 24px;
            }
            .cast {
                width: 100%;
                justify-content: center;
                gap: 16px;
            }
            .vista {
                padding: 60px 0;
                min-height: auto;
            }
            .flare .trace {
                flex-direction: column;
                width: 100%;
            }
            .urge-prime, .urge-sub {
                width: 100%;
            }
            .stage {
                padding: 60px 0;
            }
            .base .trace {
                flex-direction: column;
                gap: 32px;
                text-align: center;
            }
            .trace-alt {
                grid-template-columns: 1fr;
            }
        }

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