/* ==========================================================================
           v2rayN Core Design System - High Contrast Tech Framework
           ========================================================================== */
        :root {
            --bg-deep: #050507;
            --bg-surface: #0e0e12;
            --bg-elevated: #16161c;
            --accent: #e42b91;
            --accent-glow: rgba(228, 43, 145, 0.3);
            --accent-dim: rgba(228, 43, 145, 0.1);
            --text-main: #f0f0f5;
            --text-muted: #a0a0b0;
            --border: #23232d;
            --border-focus: #3a3a4a;
            
            --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --transition: all 0.15s ease;
        }

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

        body {
            font-family: var(--font-sans);
            background-color: var(--bg-deep);
            color: var(--text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* Essential Typography */
        h1, h2, h3, h4 {
            color: var(--text-main);
            font-weight: 700;
            line-height: 1.3;
            white-space: normal;
        }

        p {
            margin-bottom: 1rem;
            color: var(--text-muted);
        }

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

        /* Mandatory Word Break */
        .rune, p, span, h1, h2, h3, div, section, article {
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* ==========================================================================
           Layout Skeletons (Core, Tunnel, Vault)
           ========================================================================== */
        .core {
            display: flex;
            flex-direction: column;
            width: 100%;
            min-height: 100vh;
        }

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

        /* Mandatory Flex Setup */
        .mesh {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .mesh > * {
            min-width: 0;
        }

        /* ==========================================================================
           Header & Navigation (Crown, Orbit, Chain)
           ========================================================================== */
        .crown {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(5, 5, 7, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            padding: 1rem 0;
        }

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

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

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

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

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

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

        .wire::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent);
            transform: scaleX(0);
            transition: var(--transition);
            transform-origin: right;
        }

        .wire:hover::after, .wire.active::after {
            transform: scaleX(1);
            transform-origin: left;
            box-shadow: 0 0 10px var(--accent-glow);
        }

        /* ==========================================================================
           Hero Section (Nexus - Asymmetric Grid Prototype)
           ========================================================================== */
        .nexus {
            padding: 180px 0 100px;
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at 70% 30%, var(--accent-dim) 0%, transparent 50%);
        }

        .nexus-grid {
            display: grid;
            /* Asymmetric setup: roughly 40% text, 60% visual */
            grid-template-columns: minmax(320px, 4fr) minmax(400px, 6fr);
            gap: 4rem;
            align-items: center;
        }

        .nexus-minor {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            z-index: 2;
        }

        .nexus-minor .apex {
            font-size: clamp(2.5rem, 4vw, 4rem);
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #fff 0%, #a0a0b0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nexus-minor .rune {
            font-size: 1.125rem;
            max-width: 90%;
        }

        .actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
        }

        .pulse {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem 1.8rem;
            border-radius: var(--radius-sm);
            font-weight: 600;
            background: var(--accent);
            color: #fff;
            box-shadow: 0 4px 14px var(--accent-glow);
            border: 1px solid transparent;
        }

        .pulse:hover {
            background: #f055a6;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px var(--accent-glow);
        }

        .ping {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem 1.8rem;
            border-radius: var(--radius-sm);
            font-weight: 600;
            background: var(--bg-surface);
            color: var(--text-main);
            border: 1px solid var(--border);
        }

        .ping:hover {
            border-color: var(--border-focus);
            background: var(--bg-elevated);
        }

        .nexus-dominant {
            position: relative;
            z-index: 1;
            /* Container for the dominant visual piece */
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: 0 24px 64px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
            display: flex;
            justify-content: center;
            align-items: center;
            aspect-ratio: 16/10;
        }

        /* SVG Data UI for Hero */
        .glyph-nexus {
            width: 100%;
            height: 100%;
        }

        /* ==========================================================================
           Content Blocks (Vault, Shard, Flare)
           ========================================================================== */
        .vault {
            padding: 6rem 0;
            border-bottom: 1px solid var(--border);
        }

        /* Alternate background for alternating sections */
        .flare {
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border);
        }

        .split {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 4rem;
            align-items: center;
        }

        .split-shell {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .split-shell .apex {
            font-size: 2.2rem;
        }

        .split-media {
            position: relative;
        }

        .lens {
            width: 100%;
            height: auto;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-focus);
            box-shadow: 0 12px 32px rgba(0,0,0,0.5);
            display: block;
            transition: var(--transition);
        }

        .lens:hover {
            border-color: var(--accent);
            box-shadow: 0 12px 32px var(--accent-dim);
        }

        /* High density text grids */
        .rune-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .node {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 2rem;
            transition: var(--transition);
        }
        
        .flare .node {
            background: var(--bg-deep);
        }

        .node:hover {
            border-color: var(--accent);
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        }

        .node-glyph {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-sm);
            background: var(--accent-dim);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

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

        .node .apex {
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        /* ==========================================================================
           Call to Action (Burst)
           ========================================================================== */
        .burst {
            padding: 8rem 0;
            text-align: center;
            background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-elevated) 100%);
        }

        .burst-inner {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .burst .apex {
            font-size: 3rem;
        }

        /* ==========================================================================
           Footer (Sole)
           ========================================================================== */
        .sole {
            background: var(--bg-deep);
            border-top: 1px solid var(--border);
            padding: 4rem 0 2rem;
        }

        .sole-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }

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

        .crypt {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .crypt .wire {
            color: var(--text-muted);
            padding: 0;
            display: inline-block;
            width: fit-content;
        }

        .crypt .wire::after {
            display: none;
        }

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

        .copyright {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.875rem;
            border-top: 1px solid var(--border);
            padding-top: 2rem;
        }

        /* ==========================================================================
           Responsive Rules
           ========================================================================== */
        @media (max-width: 1024px) {
            .nexus-grid {
                grid-template-columns: 1fr;
            }
            .nexus-dominant {
                aspect-ratio: 16/9;
            }
        }

        @media (max-width: 768px) {
            .orbit {
                gap: 1rem;
            }
            .split {
                grid-template-columns: 1fr;
            }
            .burst .apex {
                font-size: 2.2rem;
            }
            .vault {
                padding: 4rem 0;
            }
        }

.orbit-crown {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--text-main);
}
.orbit-crown,
.orbit-crown *,
.orbit-crown *::before,
.orbit-crown *::after {
    box-sizing: border-box;
}

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

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

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

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

.orbit-crown a.orbit-wire {
    --aisite-shell-nav-padding: 0.5rem 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;
}

.orbit-crown a.orbit-wire,
.orbit-crown a.orbit-wire:hover,
.orbit-crown a.orbit-wire:focus,
.orbit-crown a.orbit-wire:active,
.orbit-crown a.orbit-wire.active,
.orbit-crown a.orbit-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);
}

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

.orbit-crown{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(5, 5, 7, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #23232d;
            padding: 1rem 0;
        }

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

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

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

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

.orbit-crown .orbit-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #a0a0b0;
            position: relative;
            padding: 0.5rem 0;
        }

.orbit-crown .orbit-wire:hover, .orbit-crown .orbit-wire.active{
            color: #f0f0f5;
        }

.orbit-crown .orbit-wire::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #e42b91;
            transform: scaleX(0);
            transition: all 0.15s ease;
            transform-origin: right;
        }

.orbit-crown .orbit-wire:hover::after, .orbit-crown .orbit-wire.active::after{
            transform: scaleX(1);
            transform-origin: left;
            box-shadow: 0 0 10px rgba(228, 43, 145, 0.3);
        }

@media (max-width: 768px){.orbit-crown .orbit-orbit{
                gap: 1rem;
            }}

.orbit-crown {
    background: rgb(5, 5, 7);
    background-image: none;
}

.crypt-sole {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--text-main);
}
.crypt-sole,
.crypt-sole *,
.crypt-sole *::before,
.crypt-sole *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.crypt-sole .crypt-rune{
            word-break: break-word;
            overflow-wrap: break-word;
        }

.crypt-sole .crypt-tunnel{
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.crypt-sole .crypt-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #a0a0b0;
            position: relative;
            padding: 0.5rem 0;
        }

.crypt-sole .crypt-wire:hover, .crypt-sole .crypt-wire.active{
            color: #f0f0f5;
        }

.crypt-sole .crypt-wire::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #e42b91;
            transform: scaleX(0);
            transition: all 0.15s ease;
            transform-origin: right;
        }

.crypt-sole .crypt-wire:hover::after, .crypt-sole .crypt-wire.active::after{
            transform: scaleX(1);
            transform-origin: left;
            box-shadow: 0 0 10px rgba(228, 43, 145, 0.3);
        }

.crypt-sole{
            background: #050507;
            border-top: 1px solid #23232d;
            padding: 4rem 0 2rem;
        }

.crypt-sole .crypt-sole-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }

.crypt-sole .crypt-root{
            font-size: 1.5rem;
            font-weight: 700;
            color: #f0f0f5;
            margin-bottom: 1rem;
            display: inline-block;
        }

.crypt-sole .crypt-crypt{
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

.crypt-sole .crypt-crypt .crypt-wire{
            color: #a0a0b0;
            padding: 0;
            display: inline-block;
            width: fit-content;
        }

.crypt-sole .crypt-crypt .crypt-wire::after{
            display: none;
        }

.crypt-sole .crypt-crypt .crypt-wire:hover{
            color: #e42b91;
        }

.crypt-sole .crypt-copyright{
            text-align: center;
            color: #a0a0b0;
            font-size: 0.875rem;
            border-top: 1px solid #23232d;
            padding-top: 2rem;
        }