/* CSS Variables - Gene Inherited */
        :root {
            --bg-main: #0a0f16;
            --surface: #141b25;
            --surface-alt: #1e2736;
            --accent: #e29d4f;
            --accent-glow: rgba(226, 157, 79, 0.3);
            --accent-dim: rgba(226, 157, 79, 0.15);
            --text-main: #f3f4f6;
            --text-muted: #9ca3af;
            --radius: 24px;
            --radius-sm: 16px;
            --shadow-base: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
            --shadow-glow: 0 0 40px -10px var(--accent-glow);
            --width-tunnel: 1200px;
            --transition: all 0.15s ease;
        }

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

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

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

        /* Layout Utilities */
        .veil {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .tunnel {
            width: 100%;
            max-width: var(--width-tunnel);
            margin: 0 auto;
            padding: 0 24px;
        }

        .realm {
            flex: 1;
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        /* Flexbox Core Rules (Mandatory) */
        .mesh, .pod, .zone {
            display: flex;
            flex-wrap: wrap;
        }
        
        .mesh > *, .pod > *, .zone > * {
            min-width: 0;
        }

        /* Typography */
        .apex-huge {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            white-space: normal;
            margin-bottom: 24px;
        }

        .apex-large {
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: -0.01em;
            white-space: normal;
            margin-bottom: 20px;
        }

        .apex-medium {
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 16px;
            white-space: normal;
        }

        .cipher {
            font-size: 1.125rem;
            color: var(--text-muted);
            margin-bottom: 24px;
        }

        .cipher-lead {
            font-size: 1.25rem;
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .accent-cipher {
            color: var(--accent);
        }

        /* Header / Navigation (Inherited Strict Structure) */
        .crown {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 15, 22, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 16px 0;
        }

        .tunnel-inner.crown-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: var(--width-tunnel);
            margin: 0 auto;
            padding: 0 24px;
        }
        
        .tunnel-inner.crown-inner > * {
            min-width: 0;
        }

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

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

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

        .wire {
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
        }

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

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

        .wire.active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
            box-shadow: 0 0 10px var(--accent-glow);
        }

        /* 1. Hero / Intro: 坚如磐石的隐私保护盾 */
        .cloak {
            position: relative;
            padding: 120px 0 80px;
            background: radial-gradient(circle at center top, var(--accent-dim) 0%, transparent 60%);
            text-align: center;
            overflow: hidden;
        }

        .cloak .tunnel {
            position: relative;
            z-index: 2;
        }

        /* Data UI: Glowing Shield Element */
        .glyph-massive {
            width: 120px;
            height: 120px;
            margin: 0 auto 40px;
            position: relative;
        }
        
        .glyph-massive svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 0 20px var(--accent-dim));
            transform: translateY(0);
            transition: transform 0.3s ease;
        }

        .glyph-massive:hover svg {
            transform: translateY(-10px);
            filter: drop-shadow(0 0 30px var(--accent-glow));
        }

        /* 2. Tech Panel: 隐藏真实IP */
        .vault {
            padding: 80px 0;
            background: var(--bg-main);
        }

        .vault-mesh {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            align-items: center;
        }

        .vault-info {
            flex: 1;
            min-width: 300px;
        }

        /* Status UI Terminal */
        .proxy-massive {
            flex: 1;
            min-width: 340px;
            background: var(--surface-alt);
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow-base);
            border: 1px solid rgba(255,255,255,0.05);
            position: relative;
            overflow: hidden;
        }

        .proxy-crown {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .proxy-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
        }
        .proxy-dot:nth-child(1) { background: #ff5f56; }
        .proxy-dot:nth-child(2) { background: #ffbd2e; }
        .proxy-dot:nth-child(3) { background: #27c93f; }

        .proxy-cipher {
            font-family: 'Courier New', Courier, monospace;
            font-size: 0.9rem;
            line-height: 1.8;
            color: #a8b2c1;
        }

        .proxy-cipher .highlight {
            color: var(--accent);
            text-shadow: 0 0 10px var(--accent-dim);
            font-weight: bold;
        }

        .blip-pod {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 16px;
            margin-top: 32px;
        }

        .blip {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            background: var(--surface);
            padding: 16px 20px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255,255,255,0.03);
            transition: var(--transition);
        }

        .blip:hover {
            border-color: rgba(226, 157, 79, 0.3);
            transform: translateX(5px);
        }

        .blip svg {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: var(--accent);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* 3. Encryption Details: 最高级别加密 */
        .shield-zone {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--bg-main) 0%, var(--surface) 100%);
            border-top: 1px solid rgba(255,255,255,0.02);
            border-bottom: 1px solid rgba(255,255,255,0.02);
        }

        .shield-zone .apex-large {
            text-align: center;
            margin-bottom: 60px;
        }

        .node-mesh {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            justify-content: center;
        }

        .node {
            flex: 1;
            min-width: 280px;
            background: var(--surface-alt);
            border-radius: var(--radius);
            padding: 40px;
            border: 1px solid rgba(255,255,255,0.05);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .node:hover {
            box-shadow: var(--shadow-glow);
            border-color: rgba(226, 157, 79, 0.5);
            transform: translateY(-5px);
        }

        .node-glyph {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: rgba(226, 157, 79, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            border: 1px solid rgba(226, 157, 79, 0.2);
        }

        .node-glyph svg {
            width: 28px;
            height: 28px;
            stroke: var(--accent);
            fill: none;
            stroke-width: 2;
        }

        /* 4. Policy Statement: 严格的无日志 */
        .policy {
            padding: 120px 0;
            background: var(--bg-main);
        }

        .policy-inner {
            max-width: 900px;
            margin: 0 auto;
            background: var(--surface);
            border-radius: var(--radius);
            padding: 60px;
            border-left: 4px solid var(--accent);
            box-shadow: 0 20px 40px -20px rgba(0,0,0,0.8);
        }

        .policy dl {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            margin-top: 40px;
        }

        .policy-pod {
            flex: 1;
            min-width: 250px;
        }

        .policy dt {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .policy dt::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
        }

        .policy dd {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .policy-meta {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px dashed rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #6b7280;
            text-align: right;
        }

        /* Footer */
        .wake {
            background: #05080b;
            padding: 60px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .anchor-mesh {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }

        .anchor-brand {
            flex: 1;
            min-width: 240px;
        }

        .anchor-brand .apex-medium {
            color: #fff;
            margin-bottom: 16px;
        }

        .anchor-pod {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
        }

        .anchor-col {
            display: flex;
            flex-direction: column;
            gap: 12px;
            min-width: 120px;
        }

        .anchor-col span {
            color: #fff;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .trench {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .crown { padding: 12px 0; }
            .route { display: none; } /* Simplified for mobile, assuming JS handles a hamburger in real env, keeping hidden for clean static output per constraints if no specific mobile menu HTML provided */
            .cloak { padding: 80px 0 60px; }
            .vault-info, .proxy-massive { min-width: 100%; }
            .proxy-massive { padding: 1.5rem; }
            .policy-inner { padding: 30px; }
            .anchor-mesh { flex-direction: column; }
        }

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

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

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

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

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

.route-crown a.route-wire {
    --aisite-shell-nav-padding: 0;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.route-crown a.route-wire,
.route-crown a.route-wire:hover,
.route-crown a.route-wire:focus,
.route-crown a.route-wire:active,
.route-crown a.route-wire.active,
.route-crown a.route-wire[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.route-crown .route-tunnel-inner{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
            width: 100%;
        }

.route-crown{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(10, 15, 22, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

.route-crown .route-crown-inner{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

.route-crown .route-crown-inner > *{
            min-width: 0;
        }

.route-crown .route-sigil img{
            height: 32px;
        }

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

.route-crown .route-route > *{
            min-width: 0;
        }

.route-crown .route-wire{
            color: #9ca3af;
            font-size: 0.95rem;
            font-weight: 500;
            position: relative;
        }

.route-crown .route-wire:hover{
            color: #e29d4f;
        }

.route-crown .route-wire.active{
            color: #f3f4f6;
        }

.route-crown .route-wire.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #e29d4f;
            border-radius: 2px;
        }

@media (max-width: 768px){.route-crown .route-crown-inner{
                flex-direction: column;
                height: auto;
                padding: 1rem 0;
                gap: 1rem;
            }

.route-crown .route-route{
                justify-content: center;
                gap: 1rem;
            }}

.route-crown {
    background: rgb(10, 15, 22);
    background-image: none;
}

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

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

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

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

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

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

.anchor-realm .anchor-pod-flex{
            display: flex;
            flex-wrap: wrap;
        }

.anchor-realm .anchor-pod-flex > *{
            min-width: 0;
        }

.anchor-realm{
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

.anchor-realm .anchor-tunnel-inner{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
            width: 100%;
        }

.anchor-realm .anchor-crown{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(10, 15, 22, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

.anchor-realm .anchor-crown-inner{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

.anchor-realm .anchor-crown-inner > *{
            min-width: 0;
        }

.anchor-realm .anchor-sigil img{
            height: 32px;
        }

.anchor-realm .anchor-route{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.anchor-realm .anchor-route > *{
            min-width: 0;
        }

.anchor-realm .anchor-wire{
            color: #9ca3af;
            font-size: 0.95rem;
            font-weight: 500;
            position: relative;
        }

.anchor-realm .anchor-wire:hover{
            color: #e29d4f;
        }

.anchor-realm .anchor-wire.active{
            color: #f3f4f6;
        }

.anchor-realm .anchor-wire.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #e29d4f;
            border-radius: 2px;
        }

.anchor-realm .anchor-tunnel{
            flex: 1;
            display: flex;
            flex-direction: column;
        }

.anchor-realm .anchor-portal{
            position: relative;
            width: 100%;
            min-height: 95vh;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 80px; 
            background: radial-gradient(circle at center, rgba(226, 157, 79, 0.15) 0%, #05080b 70%);
            overflow: hidden;
        }

.anchor-realm .anchor-portal::before{
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to bottom, rgba(10, 15, 22, 0.3) 0%, #0a0f16 100%);
            z-index: 1;
        }

.anchor-realm .anchor-portal-cipher{
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 0 5vw;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

.anchor-realm .anchor-portal-cipher > *{
            min-width: 0;
        }

.anchor-realm .anchor-apex-huge{
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }

.anchor-realm .anchor-cipher-lead{
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            color: #9ca3af;
            max-width: 760px;
        }

.anchor-realm .anchor-pulse{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 40px;
            background: #e29d4f;
            color: #000;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            box-shadow: 0 0 40px -10px rgba(226, 157, 79, 0.3);
        }

.anchor-realm .anchor-pulse:hover{
            transform: translateY(-2px);
            background: #f0a957;
            box-shadow: 0 0 50px -10px rgba(226, 157, 79, 0.5);
        }

.anchor-realm .anchor-zone-padding{
            padding: 8rem 0;
        }

.anchor-realm .anchor-apex-tunnel{
            font-size: clamp(2rem, 3.5vw, 2.75rem);
            margin-bottom: 1.5rem;
            color: #f3f4f6;
        }

.anchor-realm .anchor-zone-compare{
            background: #0a0f16;
            position: relative;
        }

.anchor-realm .anchor-grid-split{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

.anchor-realm .anchor-cipher-block p{
            font-size: 1.1rem;
            color: #9ca3af;
            margin-bottom: 2rem;
        }

.anchor-realm .anchor-pod-features{
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

.anchor-realm .anchor-blip-feature{
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

.anchor-realm .anchor-glyph-wrap{
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: #1e2736;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255,255,255,0.05);
        }

.anchor-realm .anchor-glyph-wrap svg{
            width: 24px;
            height: 24px;
            fill: #e29d4f;
        }

.anchor-realm .anchor-blip-cipher h3{
            font-size: 1.2rem;
            margin-bottom: 0.25rem;
        }

.anchor-realm .anchor-blip-cipher p{
            font-size: 0.95rem;
            color: #9ca3af;
            margin-bottom: 0;
        }

.anchor-realm .anchor-veil-media{
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
            position: relative;
        }

.anchor-realm .anchor-veil-media::after{
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 24px;
            pointer-events: none;
        }

.anchor-realm .anchor-vault-secure{
            background: linear-gradient(180deg, #141b25 0%, #0a0f16 100%);
            border-top: 1px solid rgba(255,255,255,0.03);
            border-bottom: 1px solid rgba(255,255,255,0.03);
        }

.anchor-realm .anchor-proxy-massive{
            background: #1e2736;
            border-radius: 24px;
            padding: 4rem;
            box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(255,255,255,0.05);
            background-image: radial-gradient(at top right, rgba(226, 157, 79, 0.05) 0%, transparent 50%);
        }

.anchor-realm .anchor-pod-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

.anchor-realm .anchor-node-benefit{
            background: #141b25;
            padding: 2.5rem;
            border-radius: 24px;
            border: 1px solid rgba(255,255,255,0.03);
            transition: all 0.15s ease;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

.anchor-realm .anchor-node-benefit:hover{
            transform: translateY(-5px);
            background: #1e2736;
            border-color: rgba(226, 157, 79, 0.2);
            box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
        }

.anchor-realm .anchor-radar-explore{
            background: #05080b;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

.anchor-realm .anchor-packet-path{
            display: block;
            background: #141b25;
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.05);
        }

.anchor-realm .anchor-packet-path:hover{
            border-color: #e29d4f;
            background: rgba(226, 157, 79, 0.03);
        }

.anchor-realm .anchor-packet-path h3{
            color: #e29d4f;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

.anchor-realm .anchor-packet-path h3::after{
            content: '→';
            font-family: monospace;
            opacity: 0.5;
            transition: transform 0.15s ease;
        }

.anchor-realm .anchor-packet-path:hover h3::after{
            transform: translateX(5px);
            opacity: 1;
        }

.anchor-realm .anchor-packet-path p{
            color: #9ca3af;
            font-size: 0.95rem;
        }

.anchor-realm .anchor-trench-bolt{
            text-align: center;
            background: radial-gradient(circle at center, #1e2736 0%, #0a0f16 100%);
            border-top: 1px solid rgba(255,255,255,0.05);
        }

.anchor-realm .anchor-trench-bolt .anchor-tunnel-inner{
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

.anchor-realm .anchor-key{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 36px;
            background: transparent;
            color: #f3f4f6;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            border: 2px solid #e29d4f;
            transition: all 0.15s ease;
        }

.anchor-realm .anchor-key:hover{
            background: #e29d4f;
            color: #000;
        }

.anchor-realm .anchor-wake{
            background: #05080b;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 4rem 0 2rem;
            margin-top: auto;
        }

.anchor-realm .anchor-wake-grid{
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

.anchor-realm .anchor-anchor-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #f3f4f6;
            margin-bottom: 1rem;
            display: inline-block;
        }

.anchor-realm .anchor-anchor-cipher{
            color: #9ca3af;
            font-size: 0.9rem;
            max-width: 400px;
        }

.anchor-realm .anchor-pod-links{
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

.anchor-realm .anchor-pod-links a{
            color: #9ca3af;
            font-size: 0.95rem;
        }

.anchor-realm .anchor-pod-links a:hover{
            color: #e29d4f;
        }

.anchor-realm .anchor-wake-bottom{
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            color: #9ca3af;
            font-size: 0.85rem;
        }

@media (max-width: 1024px){.anchor-realm .anchor-proxy-massive{
                padding: 2.5rem;
            }

.anchor-realm .anchor-grid-split{
                gap: 2rem;
            }}

@media (max-width: 768px){.anchor-realm .anchor-grid-split{
                grid-template-columns: 1fr;
            }

.anchor-realm .anchor-grid-split > *:nth-child(2){
                grid-row: 1; 
            }

.anchor-realm .anchor-crown-inner{
                flex-direction: column;
                height: auto;
                padding: 1rem 0;
                gap: 1rem;
            }

.anchor-realm .anchor-route{
                justify-content: center;
                gap: 1rem;
            }

.anchor-realm .anchor-wake-grid{
                grid-template-columns: 1fr;
                gap: 2rem;
            }

.anchor-realm .anchor-portal{
                padding-top: 120px;
            }

.anchor-realm .anchor-pod-grid{
                grid-template-columns: 1fr;
            }}