/* CSS Variables & Global Resets */
        :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;
            --space-edge: clamp(1.5rem, 5vw, 4rem);
            --trans-fast: 0.15s ease;
            --trans-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            min-width: 0; /* Flexbox safety */
            word-break: break-word;
            overflow-wrap: break-word;
        }

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

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

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

        /* Typography */
        .fetch-mega {
            font-size: clamp(3.5rem, 8vw, 7rem);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -0.03em;
            white-space: normal;
            background: linear-gradient(135deg, #ffffff 0%, #d4d4d8 50%, var(--color-primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
        }

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

        .fetch-sub {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #ffffff;
            white-space: normal;
        }

        .ping-lead {
            font-size: clamp(1.125rem, 2vw, 1.5rem);
            color: var(--color-text-mut);
            line-height: 1.5;
            max-width: 800px;
            margin-bottom: 3rem;
            word-break: keep-all;
        }

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

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

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

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

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

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

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

        .blink {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text-mut);
            transition: color var(--trans-fast);
            padding: 0.5rem 0;
            position: relative;
        }

        .blink:hover {
            color: #ffffff;
        }

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

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

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

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

        .urge-ghost {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            background-color: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            font-size: 1.125rem;
            font-weight: 600;
            border-radius: 100px;
            transition: all var(--trans-fast);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .urge-ghost:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        /* Layout Shells */
        .hull {
            padding-top: 80px; /* Offset for fixed header */
        }

        .vault {
            max-width: 1400px;
            margin: 0 auto;
            padding: clamp(4rem, 10vh, 8rem) var(--space-edge);
        }

        /* Hero Stage (text_dominant blueprint) */
        .vista {
            position: relative;
            min-height: calc(100vh - 80px);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            background: radial-gradient(circle at 50% -10%, rgba(158, 210, 69, 0.15) 0%, transparent 60%);
        }

        .vista .vault {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .trace-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 1rem;
        }

        /* Capability Stages */
        .stage {
            border-top: 1px solid rgba(255, 255, 255, 0.03);
        }

        .trace-split {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: clamp(3rem, 6vw, 6rem);
            align-items: center;
        }

        .trace-split.reverse-desktop {
            direction: rtl;
        }
        .trace-split.reverse-desktop > * {
            direction: ltr;
        }

        .proxy-ping {
            display: flex;
            flex-direction: column;
        }

        .proxy-visual {
            position: relative;
            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);
            aspect-ratio: 16/10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nexus-ui {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 10s ease;
        }

        .proxy-visual:hover .nexus-ui {
            transform: scale(1.03);
        }

        /* Feature Lists inside Text blocks */
        .trace-cast {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .sync-feat {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

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

        .cache-svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        /* Ecosystem Illustration Block */
        .stage-eco {
            background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
            text-align: center;
        }
        
        .stage-eco .proxy-ping {
            align-items: center;
            max-width: 800px;
            margin: 0 auto 4rem auto;
        }

        .trace-devices {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            position: relative;
        }

        .pane-device {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: var(--radius-base);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            min-width: 200px;
            backdrop-filter: blur(10px);
            transition: transform var(--trans-smooth);
        }

        .pane-device:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.04);
            border-color: rgba(158, 210, 69, 0.3);
        }

        /* Editorial Rail (Hub/Cards) */
        .vault-hub {
            background-color: var(--color-bg);
            padding: clamp(4rem, 8vh, 6rem) var(--space-edge);
        }

        .trace-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .pane-pane {
            background: var(--color-surface);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-base);
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            height: 100%;
            transition: all var(--trans-fast);
            position: relative;
            overflow: hidden;
        }

        .pane-pane::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--color-primary);
            opacity: 0;
            transition: opacity var(--trans-fast);
        }

        .pane-pane:hover {
            transform: translateY(-5px);
            background: var(--color-surface-hover);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .pane-pane:hover::before {
            opacity: 1;
        }

        .pane-pane .cache-wrap {
            margin-bottom: 2rem;
            background: rgba(255,255,255,0.05);
            border-color: rgba(255,255,255,0.1);
            color: #fff;
        }

        .pane-pane:hover .cache-wrap {
            background: var(--color-primary-dim);
            color: var(--color-primary);
            border-color: rgba(158, 210, 69, 0.3);
        }

        .pane-pane .ping-tiny {
            flex-grow: 1;
            margin-bottom: 2rem;
        }

        .blink-arrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--color-primary);
            font-weight: 600;
            font-size: 0.95rem;
            margin-top: auto;
        }

        .blink-arrow svg {
            width: 16px;
            height: 16px;
            transition: transform var(--trans-fast);
        }

        .pane-pane:hover .blink-arrow svg {
            transform: translateX(4px);
        }

        /* Footer */
        .base {
            background-color: #000000;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 4rem var(--space-edge);
        }

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

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

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

        /* Media Queries */
        @media (max-width: 1024px) {
            .trace-split {
                gap: 4rem;
            }
        }

        @media (max-width: 768px) {
            .steer {
                flex-direction: column;
                align-items: flex-start;
            }
            .cast {
                width: 100%;
                justify-content: space-between;
                gap: 0.5rem;
            }
            .trace-split,
            .trace-split.reverse-desktop {
                grid-template-columns: 1fr;
                direction: ltr;
            }
            .trace-split > * {
                direction: ltr;
            }
            .vista {
                min-height: auto;
                padding: 6rem 0;
            }
            .trace-foot {
                flex-direction: column;
                align-items: flex-start;
            }
        }

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