/* CSS Reset & Variables */
        :root {
            --bg-main: #0a0f16;
            --surface: #141b25;
            --surface-alt: #1e2736;
            --text-main: #f3f4f6;
            --text-muted: #9ca3af;
            --accent: #e29d4f;
            --accent-glow: rgba(226, 157, 79, 0.3);
            --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: 1280px;
            --transition: all 0.15s ease;
        }

        *, *::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: -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;
        }

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

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

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

        .tunnel {
            width: 100%;
            max-width: var(--width-tunnel);
            margin: 0 auto;
            padding: 0 5%;
            display: flex;
            flex-direction: column;
            gap: 6rem;
            padding-bottom: 6rem;
        }

        /* Nav Component (Forced Copy Styles) */
        .crown {
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            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;
            justify-content: space-between;
            align-items: center;
            height: 80px;
            max-width: var(--width-tunnel);
            margin: 0 auto;
            padding: 0 5%;
        }

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

        .route {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

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

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

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

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

        .apex-large {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 700;
            line-height: 1.3;
            color: #fff;
            white-space: normal;
            margin-bottom: 1rem;
        }

        .apex-medium {
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1.4;
            color: #fff;
            margin-bottom: 0.75rem;
        }

        .apex-base {
            font-size: 1.25rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .cipher-lead {
            font-size: clamp(1.125rem, 1.5vw, 1.25rem);
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            max-width: 600px;
            word-break: keep-all;
        }

        .cipher-sub {
            font-size: 1.125rem;
            color: var(--text-muted);
        }

        .cipher-sm {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .apex-center {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Buttons & Actions */
        .pulse {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 40px;
            background: var(--accent);
            color: #000;
            font-weight: 700;
            font-size: 1.125rem;
            border-radius: 50px;
            box-shadow: var(--shadow-glow);
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }

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

        .wire-bolt {
            display: inline-flex;
            align-items: center;
            margin-top: 1.5rem;
            color: var(--accent);
            font-weight: 600;
            font-size: 1rem;
        }

        .wire-bolt::after {
            content: "→";
            margin-left: 0.5rem;
            transition: var(--transition);
        }

        .wire-bolt:hover::after {
            transform: translateX(5px);
        }

        /* Section 1: Hero (acquire) */
        .portal {
            width: 100%;
            min-height: 85vh;
            display: flex;
            align-items: center;
            padding-top: 120px;
            position: relative;
        }

        .portal::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(circle at 70% 30%, rgba(226, 157, 79, 0.12) 0%, transparent 60%);
            pointer-events: none;
            z-index: -1;
        }

        .pod-split {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
            width: 100%;
        }

        .cipher-zone {
            flex: 1;
            min-width: 320px;
            display: flex;
            flex-direction: column;
        }

        .lens-zone {
            flex: 1;
            min-width: 320px;
            position: relative;
        }

        .lens-portal {
            border-radius: var(--radius);
            box-shadow: var(--shadow-base);
            border: 1px solid rgba(255,255,255,0.05);
            transform: perspective(1000px) rotateY(-5deg);
            transition: var(--transition);
        }

        .lens-portal:hover {
            transform: perspective(1000px) rotateY(0deg) translateY(-5px);
        }

        .pod-bolt {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            align-items: flex-start;
        }

        .cipher-meta {
            font-size: 0.875rem;
            color: var(--text-muted);
            opacity: 0.8;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cipher-meta::before {
            content: '';
            display: block;
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
        }

        /* Section 2: Comparison (article) */
        .vault {
            display: flex;
            flex-direction: column;
            width: 100%;
            position: relative;
        }

        .pod-complex {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: stretch;
        }

        .lens-showcase {
            flex: 1;
            min-width: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lens-fluid {
            border-radius: var(--radius);
            box-shadow: var(--shadow-base);
            border: 1px solid rgba(255,255,255,0.05);
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .pod-cluster {
            flex: 1.5;
            min-width: 320px;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .proxy {
            flex: 1 1 calc(50% - 0.75rem);
            min-width: 240px;
            background: var(--surface);
            border-radius: var(--radius);
            padding: 2.5rem;
            border: 1px solid rgba(255,255,255,0.03);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

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

        .glyph-wrap {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-sm);
            background: rgba(226, 157, 79, 0.1);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .glyph-wrap svg {
            width: 28px;
            height: 28px;
            fill: currentColor;
        }

        /* Section 3: Steps (div) */
        .shield {
            width: 100%;
            display: flex;
            flex-direction: column;
            background: linear-gradient(180deg, transparent, rgba(30, 39, 54, 0.3), transparent);
            padding: 4rem 0;
            border-radius: var(--radius);
        }

        .pod-steps {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            list-style: none;
            position: relative;
        }

        .pod-steps::before {
            content: '';
            position: absolute;
            top: 32px;
            left: 5%;
            right: 5%;
            height: 2px;
            background: linear-gradient(90deg, rgba(226, 157, 79, 0.1), rgba(226, 157, 79, 0.5), rgba(226, 157, 79, 0.1));
            z-index: 0;
        }

        .blip-step {
            flex: 1;
            min-width: 280px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 0 1rem;
        }

        .glyph-step {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--surface-alt);
            border: 2px solid var(--accent);
            color: var(--accent);
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 0 20px rgba(0,0,0,0.5);
        }

        /* Section 4: Support Info (aside) */
        .veil {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .proxy-massive {
            width: 100%;
            background: var(--surface-alt);
            border-radius: var(--radius);
            padding: 4rem;
            box-shadow: var(--shadow-base);
            border: 1px solid rgba(255,255,255,0.05);
            display: flex;
            flex-direction: column;
        }

        .proxy-massive .apex-large {
            text-align: center;
            margin-bottom: 3rem;
        }

        .pod-dl {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .blip-dl {
            flex: 1 1 calc(50% - 1rem);
            min-width: 300px;
            padding: 1.5rem;
            background: rgba(10, 15, 22, 0.4);
            border-radius: var(--radius-sm);
            border-left: 3px solid var(--accent);
        }

        /* Footer Component */
        .anchor {
            width: 100%;
            background: #05080b;
            padding: 4rem 5% 2rem 5%;
            margin-top: auto;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .anchor .tunnel-inner {
            max-width: var(--width-tunnel);
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }

        .apex-wake {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.05em;
        }

        .cipher-wake {
            color: var(--text-muted);
            max-width: 400px;
        }

        .pod-legal {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
            margin: 1rem 0;
        }

        .wire-wake {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

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

        .cipher-copyright {
            font-size: 0.85rem;
            color: rgba(156, 163, 175, 0.5);
            margin-top: 2rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .portal {
                padding-top: 100px;
            }
            .pod-split {
                flex-direction: column;
                text-align: center;
            }
            .cipher-zone {
                align-items: center;
            }
            .pod-bolt {
                align-items: center;
            }
            .lens-portal {
                transform: none;
            }
            .pod-complex {
                flex-direction: column;
            }
            .proxy-massive {
                padding: 3rem 2rem;
            }
            .pod-steps::before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .tunnel {
                gap: 4rem;
                padding-bottom: 4rem;
            }
            .crown-inner {
                flex-direction: column;
                height: auto;
                padding: 1rem 5%;
                gap: 1rem;
            }
            .route {
                justify-content: center;
                gap: 1rem;
            }
            .proxy, .blip-dl, .blip-step {
                flex: 1 1 100%;
            }
        }

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