/* ==========================================================================
   CSS Variables (Inherited from Index Family)
   ========================================================================== */
:root {
    --bg-base: #0a0f16;
    --surface: #141b25;
    --surface-alt: #1e2736;
    --surface-glass: rgba(30, 39, 54, 0.6);
    --primary: #e29d4f;
    --primary-glow: rgba(226, 157, 79, 0.3);
    --primary-fade: rgba(226, 157, 79, 0.1);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border: rgba(255, 255, 255, 0.05);
    --radius: 24px;
    --radius-sm: 16px;
    --shadow-base: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 40px -10px var(--primary-glow);
    --width-tunnel: 1280px;
    --transition: 0.15s ease;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    min-width: 0; /* Flexbox safety */
}

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

/* Global Text Wrapping */
h1, h2, h3, h4, p, span, a, div {
    word-break: break-word;
    overflow-wrap: break-word;
}
p, span, div {
    word-break: keep-all; /* Better for Chinese text */
}
h1, h2, h3, h4 {
    white-space: normal;
}

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

/* ==========================================================================
   Layout & Containers
   ========================================================================== */
.app-veil {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    flex-wrap: wrap;
}

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

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

/* ==========================================================================
   Header / Navigation (Mandatory 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 var(--border);
    padding: 16px 0;
    display: flex;
    flex-wrap: wrap;
}

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

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

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

.route {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

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

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

@media (max-width: 768px) {
    .route {
        display: none; /* Mobile menu logic omitted for brevity as per constraints, assuming JS handles or keep simple */
        width: 100%;
        gap: 16px;
        padding-top: 16px;
    }
    /* Show [role="navigation"] items stacking on mobile if visible */
    .crown-inner[data-expanded="true"] .route {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   Typography
   ========================================================================== */
.apex-huge {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 24px 0;
    background: linear-gradient(135deg, #ffffff 0%, #a0a5b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.apex-huge span {
    background: linear-gradient(135deg, var(--primary) 0%, #ffc070 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.apex-large {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 24px 0;
    color: var(--text-main);
}

.apex-medium {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 16px 0;
    color: var(--text-main);
}

.cipher-lead {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.cipher {
    color: var(--text-muted);
    margin: 0 0 16px 0;
    line-height: 1.7;
}

/* ==========================================================================
   Components
   ========================================================================== */
.pulse {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--primary);
    color: #000;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 50px;
    box-shadow: var(--shadow-glow);
    cursor: pointer;
    flex-wrap: wrap;
    border: none;
    outline: none;
}

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

.pulse-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 50px;
    border: 2px solid var(--primary);
    cursor: pointer;
    flex-wrap: wrap;
}

.pulse-ghost:hover,
.pulse-ghost:focus {
    background: var(--primary-fade);
}

/* Badges */
.status-zone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: blink 2s infinite ease-in-out;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ==========================================================================
   Page Sections (Semantic Mix)
   ========================================================================== */

/* 1. Hero: Portal (section) */
.portal {
    width: 100%;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    background: radial-gradient(circle at 50% 0%, var(--primary-fade) 0%, var(--bg-base) 60%);
}

.portal-veil {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at 50% 30%, black, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 50% 30%, black, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.portal .tunnel-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}

.map-lens {
    width: 100%;
    max-width: 800px;
    height: 300px;
    margin-top: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* SVG Globe Animation Elements */
.globe-glyph {
    width: 100%;
    height: 100%;
    stroke: var(--primary);
    stroke-width: 1;
    fill: none;
    opacity: 0.6;
}
.globe-node {
    fill: var(--primary);
    filter: drop-shadow(0 0 5px var(--primary));
}
.globe-path {
    stroke: var(--text-muted);
    stroke-dasharray: 4;
    animation: dash 20s linear infinite;
    opacity: 0.3;
}
@keyframes dash {
    to { stroke-dashoffset: 1000; }
}

/* 2. Locations: Proof Zone (article) */
.proof-zone {
    width: 100%;
    padding: 80px 0;
    display: flex;
    flex-wrap: wrap;
    background: var(--bg-base);
}

.proof-zone .tunnel-inner {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.apex-center {
    text-align: center;
    margin-bottom: 64px;
}

.node-pod {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    width: 100%;
}

.node-proxy {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    box-shadow: var(--shadow-base);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.node-proxy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition);
}

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

.node-proxy:hover::before {
    opacity: 1;
}

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

.glyph-vault svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.data-mesh {
    width: 100%;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-wrap: wrap;
}

.data-blip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

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

.data-value {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
}

/* 3. Capability: Routing (article) */
.capability-zone {
    width: 100%;
    padding: 100px 0;
    display: flex;
    flex-wrap: wrap;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.split-veil {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
    flex-wrap: wrap;
}

.cipher-pod {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.visual-pod {
    flex: 1 1 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.routing-lens {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg-base);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
    flex-wrap: wrap;
}

.feature-mesh {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.feature-blip {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.feature-blip svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

/* 4. CTA: Closing (div) */
.closing-vault {
    width: 100%;
    padding: 120px 0;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background: radial-gradient(circle at 50% 100%, rgba(226, 157, 79, 0.1) 0%, var(--bg-base) 60%);
}

.center-pod {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 64px 32px;
    box-shadow: var(--shadow-base);
    flex-wrap: wrap;
}

.bolt-zone {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.wake {
    width: 100%;
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
    display: flex;
    flex-wrap: wrap;
}

.anchor-pod {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

.brand-zone {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 300px;
    flex-wrap: wrap;
}

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

.wire-mesh {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 48px;
    flex: 1;
}

.wire-zone {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-wrap: wrap;
}

.wire-apex {
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

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

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

.copyright-zone {
    border-top: 1px solid var(--border);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    flex-wrap: wrap;
    gap: 16px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .split-veil {
        flex-direction: column;
    }
    .visual-pod, .cipher-pod {
        width: 100%;
        flex: 1 1 auto;
    }
}

@media (max-width: 768px) {
    .apex-huge {
        font-size: 2.5rem;
    }
    .apex-large {
        font-size: 2rem;
    }
    .portal {
        padding: 60px 0 80px;
    }
    .proof-zone, .capability-zone, .closing-vault {
        padding: 60px 0;
    }
    .node-pod {
        grid-template-columns: 1fr; /* Force single column on mobile */
    }
    .bolt-zone {
        flex-direction: column;
        width: 100%;
    }
    .pulse, .pulse-ghost {
        width: 100%;
    }
    .anchor-pod {
        flex-direction: column;
    }
    .wire-mesh {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
    .copyright-zone {
        flex-direction: column;
        text-align: center;
    }
}

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