/* ==========================================================================
           NovaVPN - Security & Privacy Policy Variant (Dark Mode)
           ========================================================================== */
        
        :root {
            /* Color System */
            --bg-deep: #05080f;
            --surface-one: #0d121c;
            --surface-two: #151c28;
            --surface-border: #232d3d;
            --accent-cyan: #5bcbe1;
            --accent-glow: rgba(91, 203, 225, 0.25);
            
            /* Typography Colors */
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
            --text-dark: #000000;
            
            /* Geometry */
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            
            /* Layout */
            --cloak-width: 1200px;
            --cloak-read: 860px;
            --space-base: 1rem;
        }

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

        body {
            margin: 0;
            padding: 0;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: var(--bg-deep);
            color: var(--text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Global Text Constraints */
        h1, h2, h3, h4, p, span, a, li, dt, dd {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        
        p, li, dd {
            word-break: keep-all; /* Better for Chinese */
        }

        h1, h2, h3, h4 {
            white-space: normal;
            margin-top: 0;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.25s ease;
        }

        ul, dl {
            margin: 0;
            padding: 0;
            list-style: none;
        }

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

        /* --------------------------------------------------------------------------
           Navigation Shell (Strictly inherited from Homepage)
           -------------------------------------------------------------------------- */
        .crown-zone {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(5, 8, 15, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--surface-border);
            display: flex;
            flex-wrap: wrap;
        }

        .orbit-mesh {
            max-width: var(--cloak-width);
            margin: 0 auto;
            width: 100%;
            padding: 16px 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

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

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

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

        .orbit-wire {
            color: var(--text-muted);
            font-size: 15px;
            font-weight: 500;
        }

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

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

        @media (max-width: 768px) {
            .orbit-pod {
                display: none; /* Simplified mobile nav for variant */
            }
        }

        /* --------------------------------------------------------------------------
           Layout Shells & Zones
           -------------------------------------------------------------------------- */
        .tunnel-core {
            display: flex;
            flex-direction: column;
            width: 100%;
            padding-top: 80px; /* Offset for fixed nav */
        }

        .cloak-bound {
            max-width: var(--cloak-width);
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
        }

        .cloak-read {
            max-width: var(--cloak-read);
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
        }

        /* --------------------------------------------------------------------------
           Typography (Apex & Cipher)
           -------------------------------------------------------------------------- */
        .apex-giant {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: var(--text-main);
            margin-bottom: 24px;
            width: 100%;
        }

        .apex-major {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.01em;
            color: var(--text-main);
            margin-bottom: 20px;
            width: 100%;
        }

        .apex-minor {
            font-size: 1.25rem;
            font-weight: 700;
            line-height: 1.4;
            color: var(--text-main);
            margin-bottom: 12px;
            width: 100%;
        }

        .apex-term {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--accent-cyan);
            margin-bottom: 8px;
            width: 100%;
        }

        .cipher-lead {
            font-size: clamp(1.125rem, 2vw, 1.375rem);
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 32px;
            width: 100%;
        }

        .cipher-flow {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 24px;
            width: 100%;
        }

        .cipher-desc {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 0;
            width: 100%;
        }

        /* --------------------------------------------------------------------------
           Block 1: Portal Veil (Hero Intro)
           -------------------------------------------------------------------------- */
        .portal-veil {
            padding: 120px 0 100px;
            background: radial-gradient(circle at 50% 0%, rgba(91, 203, 225, 0.08) 0%, transparent 60%);
            display: flex;
            flex-wrap: wrap;
            width: 100%;
        }

        .zone-split {
            display: flex;
            flex-wrap: wrap;
            gap: 64px;
            width: 100%;
            align-items: center;
        }

        .zone-primary {
            flex: 1 1 480px;
            display: flex;
            flex-wrap: wrap;
        }

        .zone-media {
            flex: 1 1 400px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            position: relative;
        }

        /* Feature List in Hero */
        .pod-mesh {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 16px;
            width: 100%;
        }

        .peg-peg {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-main);
        }

        .glyph-check {
            width: 24px;
            height: 24px;
            margin-right: 12px;
            border-radius: 50%;
            background: rgba(91, 203, 225, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .glyph-check::after {
            content: '';
            width: 6px;
            height: 10px;
            border: solid var(--accent-cyan);
            border-width: 0 2px 2px 0;
            transform: rotate(45deg) translate(-1px, -1px);
        }

        .lens-frame {
            border-radius: var(--radius-lg);
            border: 1px solid var(--surface-border);
            box-shadow: 0 24px 50px rgba(0,0,0,0.5), 0 0 40px rgba(91, 203, 225, 0.1);
            transition: transform 0.4s ease;
        }

        .zone-media:hover .lens-frame {
            transform: translateY(-8px);
        }

        /* --------------------------------------------------------------------------
           Block 2: Context Zone (Tech Deepdive)
           -------------------------------------------------------------------------- */
        .tunnel-context {
            padding: 100px 0;
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .zone-center {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 64px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

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

        .node-tech {
            background: var(--surface-one);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .node-tech::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .node-tech:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 32px rgba(0,0,0,0.4);
            border-color: rgba(91, 203, 225, 0.3);
        }

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

        .glyph-vector {
            width: 48px;
            height: 48px;
            margin-bottom: 24px;
            fill: none;
            stroke: var(--accent-cyan);
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            display: block;
        }

        /* --------------------------------------------------------------------------
           Block 3: Capability Aside (Kill Switch)
           -------------------------------------------------------------------------- */
        .tunnel-capability {
            padding: 80px 0;
            display: flex;
            flex-wrap: wrap;
            width: 100%;
        }

        .node-shield {
            background: linear-gradient(145deg, var(--surface-two) 0%, var(--surface-one) 100%);
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-xl);
            padding: 64px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 48px;
            position: relative;
            overflow: hidden;
        }

        .node-shield::after {
            content: '';
            position: absolute;
            right: -10%;
            bottom: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(91, 203, 225, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .zone-cloak {
            flex: 1 1 400px;
            display: flex;
            flex-wrap: wrap;
            z-index: 2;
        }

        .zone-visual {
            flex: 1 1 300px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            z-index: 2;
        }

        .pod-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            width: 100%;
            margin-top: 24px;
        }

        .packet-pill {
            padding: 8px 16px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            font-size: 0.9rem;
            color: var(--text-main);
            transition: all 0.25s ease;
        }

        .packet-pill:hover {
            border-color: var(--accent-cyan);
            background: rgba(91, 203, 225, 0.05);
        }

        .glyph-lock {
            width: 120px;
            height: 120px;
            fill: none;
            stroke: var(--accent-cyan);
            stroke-width: 1;
            filter: drop-shadow(0 0 20px rgba(91, 203, 225, 0.2));
            animation: pulseGlow 4s infinite alternate;
        }

        @keyframes pulseGlow {
            0% { filter: drop-shadow(0 0 10px rgba(91, 203, 225, 0.1)); }
            100% { filter: drop-shadow(0 0 30px rgba(91, 203, 225, 0.4)); }
        }

        /* --------------------------------------------------------------------------
           Block 4: Proof Article (Policy)
           -------------------------------------------------------------------------- */
        .tunnel-proof {
            padding: 100px 0 120px;
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            background: var(--bg-deep);
        }

        .zone-doc {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
        }

        .pod-terms {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 32px;
            width: 100%;
            margin-top: 32px;
        }

        .peg-term-row {
            display: flex;
            flex-wrap: wrap;
            padding-left: 24px;
            border-left: 2px solid var(--surface-border);
            transition: border-color 0.3s ease;
        }

        .peg-term-row:hover {
            border-left-color: var(--accent-cyan);
        }

        /* Inline Action Wire */
        .wire-inline {
            color: var(--accent-cyan);
            text-decoration: underline;
            text-decoration-color: transparent;
            text-underline-offset: 4px;
        }
        
        .wire-inline:hover {
            text-decoration-color: var(--accent-cyan);
        }

        /* --------------------------------------------------------------------------
           Footer Anchor
           -------------------------------------------------------------------------- */
        .heel-crypt {
            background: var(--surface-one);
            border-top: 1px solid var(--surface-border);
            padding: 60px 0 40px;
            display: flex;
            flex-wrap: wrap;
            width: 100%;
        }

        .zone-foot {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            gap: 24px;
        }

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

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

        /* --------------------------------------------------------------------------
           Responsive Adjustments
           -------------------------------------------------------------------------- */
        @media (max-width: 1024px) {
            .node-shield {
                padding: 40px;
                gap: 32px;
            }
        }

        @media (max-width: 768px) {
            .zone-split {
                flex-direction: column;
                gap: 40px;
            }
            .portal-veil {
                padding: 100px 0 60px;
            }
            .apex-giant {
                text-align: left;
            }
            .pod-matrix {
                grid-template-columns: 1fr;
            }
            .node-shield {
                flex-direction: column;
                padding: 32px 24px;
            }
            .zone-visual {
                order: -1;
            }
            .glyph-lock {
                width: 80px;
                height: 80px;
            }
            .zone-foot {
                flex-direction: column;
                text-align: center;
            }
        }

.route-crown-zone {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-main);
}
.route-crown-zone,
.route-crown-zone *,
.route-crown-zone *::before,
.route-crown-zone *::after {
    box-sizing: border-box;
}

.route-crown-zone nav,
.route-crown-zone div,
.route-crown-zone section,
.route-crown-zone article,
.route-crown-zone aside,
.route-crown-zone p,
.route-crown-zone h1,
.route-crown-zone h2,
.route-crown-zone h3,
.route-crown-zone h4,
.route-crown-zone h5,
.route-crown-zone h6,
.route-crown-zone a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

.route-crown-zone a.route-orbit-wire {
    --aisite-shell-nav-padding: 8px 16px;
    --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-zone a.route-orbit-wire,
.route-crown-zone a.route-orbit-wire:hover,
.route-crown-zone a.route-orbit-wire:focus,
.route-crown-zone a.route-orbit-wire:active,
.route-crown-zone a.route-orbit-wire.active,
.route-crown-zone a.route-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);
}

.route-crown-zone{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(5, 8, 15, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #232d3d;
        }

.route-crown-zone .route-orbit-mesh{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

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

.route-crown-zone .route-sigil img{
            height: 28px;
            width: auto;
            display: block;
        }

.route-crown-zone .route-orbit-pod{
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

.route-crown-zone .route-orbit-wire{
            padding: 8px 16px;
            font-size: 0.95rem;
            color: #94a3b8;
            border-radius: 6px;
            transition: all 0.25s ease;
            font-weight: 500;
        }

.route-crown-zone .route-orbit-wire:hover, .route-crown-zone .route-orbit-wire.active{
            color: #5bcbe1;
            background: rgba(91, 203, 225, 0.1);
        }

@media (max-width: 768px){.route-crown-zone .route-orbit-mesh{
                flex-direction: column;
                height: auto;
                padding: 16px 24px;
                gap: 16px;
            }

.route-crown-zone .route-orbit-pod{
                justify-content: center;
            }}

.route-crown-zone {
    background: rgb(5, 8, 15);
    background-image: none;
}

.anchor-anchor-crypt {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-main);
}
.anchor-anchor-crypt,
.anchor-anchor-crypt *,
.anchor-anchor-crypt *::before,
.anchor-anchor-crypt *::after {
    box-sizing: border-box;
}

.anchor-anchor-crypt nav,
.anchor-anchor-crypt div,
.anchor-anchor-crypt section,
.anchor-anchor-crypt article,
.anchor-anchor-crypt aside,
.anchor-anchor-crypt p,
.anchor-anchor-crypt h1,
.anchor-anchor-crypt h2,
.anchor-anchor-crypt h3,
.anchor-anchor-crypt h4,
.anchor-anchor-crypt h5,
.anchor-anchor-crypt h6,
.anchor-anchor-crypt a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

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

.anchor-anchor-crypt .anchor-zone-bound{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

.anchor-anchor-crypt{
            background: #000000;
            border-top: 1px solid #232d3d;
            padding: 60px 0 40px;
            text-align: center;
        }

.anchor-anchor-crypt .anchor-crypt-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }

.anchor-anchor-crypt .anchor-crypt-mesh{
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 32px;
            margin-bottom: 40px;
        }

.anchor-anchor-crypt .anchor-crypt-wire{
            color: #94a3b8;
            font-size: 0.95rem;
            transition: all 0.25s ease;
        }

.anchor-anchor-crypt .anchor-crypt-wire:hover{
            color: #5bcbe1;
        }

.anchor-anchor-crypt .anchor-crypt-cipher{
            color: #475569;
            font-size: 0.85rem;
        }