:root {
            --core: #e29d4f;
            --core-glow: rgba(226, 157, 79, 0.4);
            --dark: #0a0f16;
            --darker: #05080b;
            --surface: #141b25;
            --surface-alt: #1e2736;
            --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 rgba(226, 157, 79, 0.3);
            --transition: 0.15s ease;
            --width-tunnel: 1280px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        /* Base Typography & Rules */
        h1, h2, h3, p, span, div {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        
        p, span {
            word-break: keep-all;
        }

        h1, h2, h3 {
            white-space: normal;
            font-weight: 700;
            line-height: 1.3;
        }

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

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

        /* Flex & Grid Core Rules */
        .pod-flex {
            display: flex;
            flex-wrap: wrap;
        }
        
        .pod-flex > * {
            min-width: 0;
        }

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

        .tunnel-inner {
            max-width: var(--width-tunnel);
            margin: 0 auto;
            padding: 0 5vw;
            width: 100%;
        }

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

        .crown-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }
        
        .crown-inner > * {
            min-width: 0;
        }

        .sigil img {
            height: 32px;
        }

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

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

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

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

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

        /* Main Content */
        .tunnel {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* Hero / Portal (fullbleed_overlay) */
        .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; /* offset [role="banner"] */
            background: radial-gradient(circle at center, rgba(226, 157, 79, 0.15) 0%, var(--darker) 70%);
            overflow: hidden;
        }

        .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%, var(--dark) 100%);
            z-index: 1;
        }

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

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

        .cipher-lead {
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            color: var(--text-muted);
            max-width: 760px;
        }

        .pulse {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 40px;
            background: var(--core);
            color: #000;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            box-shadow: var(--shadow-glow);
        }

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

        /* Section Spacing */
        .zone-padding {
            padding: 8rem 0;
        }

        .apex-tunnel {
            font-size: clamp(2rem, 3.5vw, 2.75rem);
            margin-bottom: 1.5rem;
            color: var(--text-main);
        }

        /* Speed Aside / Comparison */
        .zone-compare {
            background: var(--dark);
            position: relative;
        }

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

        .cipher-block p {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
        }

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

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

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

        .glyph-wrap svg {
            width: 24px;
            height: 24px;
            fill: var(--core);
        }

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

        .blip-cipher p {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 0;
        }

        .veil-media {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-base);
            position: relative;
        }
        
        .veil-media::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--radius);
            pointer-events: none;
        }

        /* Security Vault / Capability */
        .vault-secure {
            background: linear-gradient(180deg, var(--surface) 0%, var(--dark) 100%);
            border-top: 1px solid rgba(255,255,255,0.03);
            border-bottom: 1px solid rgba(255,255,255,0.03);
        }

        .proxy-massive {
            background: var(--surface-alt);
            border-radius: var(--radius);
            padding: 4rem;
            box-shadow: var(--shadow-base);
            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%);
        }

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

        .node-benefit {
            background: var(--surface);
            padding: 2.5rem;
            border-radius: var(--radius);
            border: 1px solid rgba(255,255,255,0.03);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .node-benefit:hover {
            transform: translateY(-5px);
            background: var(--surface-alt);
            border-color: rgba(226, 157, 79, 0.2);
            box-shadow: var(--shadow-base);
        }

        /* Hub / Radar (Internal Linking & Density) */
        .radar-explore {
            background: var(--darker);
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .packet-path {
            display: block;
            background: var(--surface);
            padding: 2rem;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255,255,255,0.05);
        }

        .packet-path:hover {
            border-color: var(--core);
            background: rgba(226, 157, 79, 0.03);
        }

        .packet-path h3 {
            color: var(--core);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .packet-path h3::after {
            content: '→';
            font-family: monospace;
            opacity: 0.5;
            transition: transform var(--transition);
        }
        
        .packet-path:hover h3::after {
            transform: translateX(5px);
            opacity: 1;
        }

        .packet-path p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* CTA Article / Trench */
        .trench-bolt {
            text-align: center;
            background: radial-gradient(circle at center, var(--surface-alt) 0%, var(--dark) 100%);
            border-top: 1px solid rgba(255,255,255,0.05);
        }

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

        .key {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 36px;
            background: transparent;
            color: var(--text-main);
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            border: 2px solid var(--core);
            transition: all var(--transition);
        }

        .key:hover {
            background: var(--core);
            color: #000;
        }

        /* Footer / Wake */
        .wake {
            background: var(--darker);
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 4rem 0 2rem;
            margin-top: auto;
        }

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

        .anchor-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 1rem;
            display: inline-block;
        }

        .anchor-cipher {
            color: var(--text-muted);
            font-size: 0.9rem;
            max-width: 400px;
        }

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

        .pod-links a {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .pod-links a:hover {
            color: var(--core);
        }

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

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .proxy-massive {
                padding: 2.5rem;
            }
            .grid-split {
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .grid-split {
                grid-template-columns: 1fr;
            }
            .grid-split > *:nth-child(2) {
                grid-row: 1; /* Move image above text on mobile if desired, or keep natural order */
            }
            .crown-inner {
                flex-direction: column;
                height: auto;
                padding: 1rem 0;
                gap: 1rem;
            }
            .route {
                justify-content: center;
                gap: 1rem;
            }
            .wake-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .portal {
                padding-top: 120px;
            }
            .pod-grid {
                grid-template-columns: 1fr;
            }
        }

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