: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 & Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        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;
        }

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

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

        /* Common Layout & Utilities */
        .hull {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

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

        /* Navigation Header */
        .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);
        }

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

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

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

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

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

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

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

        /* Main Content Container */
        .vault {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            min-height: 100vh;
        }

        .vault > * {
            min-width: 0;
            width: 100%;
        }

        /* Article - Intro (Hero Variant) */
        .vista {
            position: relative;
            padding: 120px 0 80px;
            background: radial-gradient(circle at 50% 0%, var(--color-primary-dim) 0%, transparent 60%);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-height: max(60vh, 500px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.02);
        }

        .proxy-intro {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-wrap: wrap;
            width: 100%;
            min-width: 0;
        }

        .fetch-mega {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
            color: var(--color-text);
            white-space: normal;
        }

        .ping-lead {
            font-size: clamp(1.125rem, 2vw, 1.375rem);
            color: var(--color-text-mut);
            max-width: 720px;
            margin: 0 auto 48px;
            line-height: 1.6;
        }

        .trace-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

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

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

        /* Section - Showcase (Proof) */
        .stage {
            padding: 120px 0;
            background-color: var(--color-bg);
            display: flex;
            flex-wrap: wrap;
        }

        .proxy-split {
            display: flex;
            flex-wrap: wrap;
            gap: 64px;
            align-items: center;
            width: 100%;
            min-width: 0;
        }

        .proxy-split > * {
            flex: 1 1 400px;
            min-width: 0;
        }

        .proxy-visual {
            border-radius: var(--radius-base);
            overflow: hidden;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.05);
            background-color: var(--color-surface);
            position: relative;
        }

        .proxy-visual::after {
            content: '';
            position: absolute;
            inset: 0;
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
            border-radius: var(--radius-base);
            pointer-events: none;
        }

        .nexus-feature {
            width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
        }

        .proxy-ping {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 24px;
            min-width: 0;
        }

        .fetch-large {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: var(--color-text);
        }

        .ping-base {
            font-size: 1.125rem;
            color: var(--color-text-mut);
            line-height: 1.6;
        }

        .trace-features {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 32px;
            margin-top: 24px;
        }

        .sync-feature {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 20px;
            min-width: 0;
        }

        .cache-orbit {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-sm);
            background: rgba(158, 210, 69, 0.1);
            border: 1px solid rgba(158, 210, 69, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
            flex-shrink: 0;
        }

        .proxy-detail {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 8px;
            min-width: 0;
            flex: 1;
        }

        .fetch-core {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--color-text);
        }

        .ping-desc {
            font-size: 0.95rem;
            color: var(--color-text-mut);
        }

        /* Aside - Steps (Management Guide) */
        .flare {
            padding: 120px 0;
            background-color: var(--color-surface);
            border-top: 1px solid rgba(255, 255, 255, 0.02);
            display: flex;
            flex-wrap: wrap;
        }

        .proxy-center {
            text-align: center;
            margin-bottom: 64px;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            align-items: center;
            width: 100%;
            min-width: 0;
        }

        .fetch-medium {
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -0.01em;
        }

        .ping-center {
            color: var(--color-text-mut);
            font-size: 1.125rem;
            max-width: 640px;
        }

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

        .pane-step {
            background: var(--color-bg);
            border-radius: var(--radius-base);
            padding: 40px 32px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 20px;
            min-width: 0;
            transition: transform var(--transition), background-color var(--transition);
        }

        .pane-step:hover,
        .pane-step:focus-within {
            transform: translateY(-4px);
            background-color: #0a0a0d;
            border-color: rgba(255, 255, 255, 0.1);
        }

        .cache-cache {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255,255,255,0.05);
            color: var(--color-text);
        }

        .pane-step:hover .cache-cache {
            color: var(--color-primary);
            border-color: rgba(158, 210, 69, 0.2);
        }

        /* Footer Section */
        .glyph {
            padding: 80px 0 40px;
            background-color: var(--color-bg);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-wrap: wrap;
            text-align: center;
        }

        .proxy-base {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            align-items: center;
            gap: 24px;
            width: 100%;
            min-width: 0;
        }

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

        .trace-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 32px;
            min-width: 0;
        }

        .ping-legal {
            color: var(--color-text-mut);
            font-size: 0.875rem;
            margin-top: 32px;
        }

        /* Responsive Breakpoints */
        @media (max-width: 768px) {
            .steer {
                flex-direction: column;
                padding: 16px;
                gap: 20px;
            }
            
            .cast {
                width: 100%;
                justify-content: center;
                gap: 16px;
            }
            
            .vista {
                padding: 80px 0 60px;
            }
            
            .proxy-split {
                gap: 48px;
            }
            
            .stage, .flare {
                padding: 80px 0;
            }
            
            .pane-step {
                padding: 32px 24px;
            }
        }

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