/* 基础与重置 */
:root {
    --bg: #0a0f16;
    --surface: #141b25;
    --surface-alt: #1e2736;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --accent: #e29d4f;
    --accent-hover: #f0b064;
    --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);
    --width-tunnel: 1280px;
}

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

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

/* 强制排版规则 */
.cipher, .apex {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}
.cipher {
    word-break: keep-all;
}

/* 布局壳层 */
.app-veil {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    flex-wrap: wrap;
    min-width: 0;
}

.core-tunnel {
    flex: 1;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    min-width: 0;
    width: 100%;
}

/* 导航栏 (强制复用结构与样式) */
.crown {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 15, 22, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.crown-inner {
    max-width: var(--width-tunnel);
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
}

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

.sigil img {
    height: 28px;
    width: auto;
    display: block;
}

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

.wire {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.15s ease;
    min-width: 0;
}

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

/* Hero区 (角色: intro) */
.portal {
    width: 100%;
    min-height: 60vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 80px;
    background: radial-gradient(circle at top center, rgba(226, 157, 79, 0.12) 0%, var(--bg) 60%);
    position: relative;
    min-width: 0;
}

.portal::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

.portal-veil {
    max-width: 900px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    min-width: 0;
}

.apex-huge {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.apex-highlight {
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.zone-seal {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(226, 157, 79, 0.1);
    border: 1px solid rgba(226, 157, 79, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
}

/* 价格卡片区 (角色: comparison) */
.vault {
    width: 100%;
    max-width: var(--width-tunnel);
    margin: -40px auto 4rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.proxy {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-base);
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 0;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    position: relative;
    overflow: hidden;
}

.proxy:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.proxy-massive {
    background: var(--surface-alt);
    border: 1px solid rgba(226, 157, 79, 0.4);
    box-shadow: var(--shadow-glow);
    padding: 4rem 2.5rem;
    transform: scale(1.03);
    z-index: 2;
}

.proxy-massive:hover {
    transform: scale(1.03) translateY(-5px);
}

.zone-ribbon {
    position: absolute;
    top: 1.5rem;
    right: -2.5rem;
    background: var(--accent);
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.4rem 3rem;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.proxy-crown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.apex-tier {
    font-size: 1.5rem;
    font-weight: 600;
}

.cipher-price {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-main);
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
    min-width: 0;
}

.cipher-currency {
    font-size: 1.5rem;
    padding-bottom: 0.4rem;
}

.cipher-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    padding-bottom: 0.4rem;
}

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

.pod-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    flex-grow: 1;
    min-width: 0;
}

.blip-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-main);
    min-width: 0;
}

.glyph-check {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.pulse {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-main);
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.15s ease;
    width: 100%;
    min-width: 0;
}

.pulse:hover {
    background: rgba(255, 255, 255, 0.05);
}

.pulse-prime {
    background: var(--accent);
    color: #000;
    border: none;
    box-shadow: 0 4px 15px rgba(226, 157, 79, 0.2);
}

.pulse-prime:hover {
    background: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(226, 157, 79, 0.4);
}

/* 高级特权区 (角色: comparison) */
.realm {
    width: 100%;
    max-width: var(--width-tunnel);
    margin: 4rem auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    min-width: 0;
}

.apex-realm {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}

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

.packet {
    background: rgba(20, 27, 37, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    transition: background 0.15s ease;
    min-width: 0;
}

.packet:hover {
    background: var(--surface);
}

.packet-glyph {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(226, 157, 79, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

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

.apex-packet {
    font-size: 1.25rem;
    font-weight: 600;
}

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

/* 支付与退款保障 (角色: comparison) */
.cloak {
    width: 100%;
    background: var(--surface-alt);
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    min-width: 0;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.cloak-veil {
    max-width: var(--width-tunnel);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
    min-width: 0;
}

.cloak-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.apex-cloak {
    font-size: 2rem;
    font-weight: 700;
}

.pod-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    min-width: 0;
}

.blip-pay {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,0,0,0.2);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    min-width: 0;
}

.blip-pay svg {
    width: 24px;
    height: 24px;
}

.cloak-seal {
    flex: 0 1 400px;
    background: linear-gradient(145deg, rgba(20,27,37,0.8), rgba(10,15,22,0.8));
    border: 1px solid rgba(226, 157, 79, 0.2);
    border-radius: var(--radius);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    box-shadow: var(--shadow-base);
    position: relative;
    min-width: 0;
}

.cloak-seal::before {
    content: '';
    position: absolute;
    top: -1px; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.5;
}

.glyph-shield {
    width: 64px;
    height: 64px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.5;
}

/* 页脚 */
.wake {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg);
    padding: 4rem 2rem;
    width: 100%;
}

.wake-inner {
    max-width: var(--width-tunnel);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    min-width: 0;
}

.anchor-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.pod-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    min-width: 0;
}

.wire-mute {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.15s ease;
}

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

/* 响应式 */
@media (max-width: 1024px) {
    .proxy-massive {
        transform: scale(1);
    }
    .proxy-massive:hover {
        transform: translateY(-5px);
    }
    .portal {
        padding-top: 100px;
    }
}

@media (max-width: 768px) {
    .crown-inner {
        flex-direction: column;
        gap: 1rem;
    }
    .route {
        gap: 1rem;
        justify-content: center;
    }
    .vault {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }
    .cloak-veil {
        flex-direction: column;
    }
    .cloak-seal {
        flex: 1 1 auto;
        width: 100%;
    }
    .wake-inner {
        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;
            }}