/* ==========================================================================
           AuraVPN - Design System & Variables (Inherited from Homepage)
           ========================================================================== */
        :root {
            --aura-primary: #e8a868;
            --aura-primary-dark: #d09050;
            --aura-primary-light: #fdf3e9;
            --aura-bg: #f9f8f6;
            --aura-surface: #ffffff;
            --aura-text-main: #1a1b1e;
            --aura-text-cipher: #4a4d55;
            --aura-text-muted: #8a8d95;
            --aura-radius: 8px;
            --aura-shadow-soft: 0 4px 15px rgba(0,0,0,0.03);
            --aura-shadow-hover: 0 12px 30px rgba(232, 168, 104, 0.15);
            --aura-transition: 0.25s ease;
        }

        /* ==========================================================================
           Global Reset & Typography
           ========================================================================== */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

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

        /* Mandatory Flexbox/Text wrap rules */
        .flex-veil, .mesh, .cluster {
            display: flex;
            flex-wrap: wrap;
        }
        
        .flex-veil > *, .mesh > *, .cluster > * {
            min-width: 0;
        }

        .cipher-break {
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }

        /* ==========================================================================
           Header & Navigation (Strictly Reused Structure)
           ========================================================================== */
        .apex-veil {
            background-color: var(--aura-surface);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .global-cloak {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 5vw;
        }

        .apex-tunnel {
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            padding-bottom: 1rem;
        }

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

        .crest img {
            height: 32px;
            width: auto;
            display: block;
        }

        .helm-mesh {
            gap: 2rem;
            align-items: center;
        }

        .helm-wire {
            color: var(--aura-text-main);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: color var(--aura-transition);
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .helm-wire:hover,
        .helm-wire.active {
            color: var(--aura-primary);
        }

        /* ==========================================================================
           Buttons & Interactive Elements
           ========================================================================== */
        .ping-latch {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem 1.8rem;
            background: var(--aura-primary);
            color: var(--aura-surface);
            font-weight: 600;
            border-radius: var(--aura-radius);
            border: 1px solid var(--aura-primary);
            text-decoration: none;
            transition: all var(--aura-transition);
            cursor: pointer;
            gap: 0.5rem;
            word-break: keep-all;
        }

        .ping-latch:hover {
            background: var(--aura-primary-dark);
            border-color: var(--aura-primary-dark);
            transform: translateY(-2px);
        }

        .ping-latch-outline {
            background: transparent;
            color: var(--aura-primary);
            border: 1px solid var(--aura-primary);
        }

        .ping-latch-outline:hover {
            background: var(--aura-primary-light);
            color: var(--aura-primary-dark);
            transform: translateY(-2px);
        }

        /* ==========================================================================
           Main Layout & Sections
           ========================================================================== */
        .route-canvas {
            display: flex;
            flex-direction: column;
            gap: 4rem;
            padding-bottom: 5rem;
            min-width: 0;
        }

        /* Hero / Portal (Acquire) */
        .portal-vault {
            background: linear-gradient(180deg, var(--aura-surface) 0%, var(--aura-primary-light) 100%);
            padding: 5rem 5vw 6rem;
            border-radius: 0 0 24px 24px;
        }

        .portal-tunnel {
            max-width: 1320px;
            margin: 0 auto;
            gap: 4rem;
            align-items: center;
        }

        .portal-cipher-cluster {
            flex: 1 1 450px;
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }

        .portal-peak {
            font-size: clamp(2.8rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.15;
            color: var(--aura-text-main);
            letter-spacing: -0.02em;
        }

        .portal-desc {
            font-size: 1.2rem;
            color: var(--aura-text-cipher);
            line-height: 1.6;
        }

        .portal-mask-cluster {
            flex: 1 1 500px;
            position: relative;
        }

        .portal-mask-cluster img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            display: block;
        }

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

        .portal-note {
            font-size: 0.85rem;
            color: var(--aura-text-muted);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        /* Platform List (Comparison) */
        .nexus-domain {
            padding: 2rem 5vw;
        }

        .nexus-apex-peak {
            text-align: center;
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 3rem;
        }

        .nexus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1320px;
            margin: 0 auto;
        }

        .node-cell {
            background: var(--aura-surface);
            border-radius: var(--aura-radius);
            padding: 2.5rem 2rem;
            border: 1px solid rgba(232, 168, 104, 0.2);
            box-shadow: var(--aura-shadow-soft);
            transition: transform var(--aura-transition), box-shadow var(--aura-transition);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            min-width: 0;
            position: relative;
            overflow: hidden;
        }

        .node-cell::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--aura-primary);
            opacity: 0;
            transition: opacity var(--aura-transition);
        }

        .node-cell:hover {
            transform: translateY(-5px);
            box-shadow: var(--aura-shadow-hover);
        }

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

        .node-glyph-veil {
            width: 64px;
            height: 64px;
            background: var(--aura-primary-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.5rem;
        }

        .node-glyph-veil svg {
            width: 32px;
            height: 32px;
            fill: var(--aura-primary-dark);
        }

        .node-peak {
            font-size: 1.4rem;
            font-weight: 700;
        }

        .node-meta-belt {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            font-size: 0.9rem;
            color: var(--aura-text-muted);
            margin-bottom: 1rem;
            flex-grow: 1;
        }

        .node-meta-drop {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .node-meta-drop svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }

        /* Step Guide (Steps) */
        .steps-domain {
            background: var(--aura-surface);
            padding: 5rem 5vw;
            border-top: 1px solid rgba(0,0,0,0.03);
            border-bottom: 1px solid rgba(0,0,0,0.03);
        }

        .steps-tunnel {
            max-width: 1320px;
            margin: 0 auto;
        }

        .steps-apex-peak {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 3rem;
            text-align: center;
        }

        .steps-cluster {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            list-style: none;
        }

        .step-drop {
            background: var(--aura-bg);
            padding: 2.5rem 2rem;
            border-radius: var(--aura-radius);
            position: relative;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .step-num-glyph {
            font-size: 4rem;
            font-weight: 900;
            color: var(--aura-primary-light);
            line-height: 1;
            position: absolute;
            top: 1rem;
            right: 1rem;
            z-index: 0;
        }

        .step-peak {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--aura-text-main);
            position: relative;
            z-index: 1;
        }

        .step-cipher {
            color: var(--aura-text-cipher);
            position: relative;
            z-index: 1;
            font-size: 0.95rem;
        }

        /* Free Trial Info (Acquire) */
        .acquire-domain {
            padding: 4rem 5vw;
        }

        .acquire-cloak {
            max-width: 1000px;
            margin: 0 auto;
            background: var(--aura-surface);
            border: 1px solid rgba(232, 168, 104, 0.3);
            border-radius: 16px;
            padding: 4rem 3rem;
            text-align: center;
            box-shadow: var(--aura-shadow-soft);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .acquire-cloak::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, var(--aura-primary-light) 0%, transparent 60%);
            opacity: 0.5;
            z-index: 0;
            pointer-events: none;
        }

        .acquire-peak {
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .acquire-cipher {
            font-size: 1.1rem;
            color: var(--aura-text-cipher);
            max-width: 600px;
            position: relative;
            z-index: 1;
        }

        .acquire-actions {
            position: relative;
            z-index: 1;
            margin-top: 1rem;
        }

        /* ==========================================================================
           Footer
           ========================================================================== */
        .core-root {
            background: var(--aura-surface);
            padding: 4rem 5vw 2rem;
            border-top: 1px solid rgba(0,0,0,0.05);
            margin-top: auto;
        }

        .core-tunnel {
            max-width: 1320px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

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

        .core-mesh {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .core-wire {
            color: var(--aura-text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color var(--aura-transition);
        }

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

        .core-cipher {
            width: 100%;
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(0,0,0,0.05);
            color: var(--aura-text-muted);
            font-size: 0.85rem;
        }

        /* ==========================================================================
           Responsive Adjustments
           ========================================================================== */
        @media (max-width: 768px) {
            .portal-vault {
                padding: 3rem 5vw 4rem;
                border-radius: 0 0 16px 16px;
            }
            .portal-tunnel, .core-tunnel {
                flex-direction: column;
                text-align: center;
            }
            .portal-actions {
                justify-content: center;
            }
            .helm-mesh {
                display: none; /* In a real scenario, this would be a hamburger menu. Keeping it simple per constraints or visible as a scrolling row */
            }
            /* Override to keep nav visible for demo purposes if needed, but standard is hide/collapse. Let's make it a scrolling row for mobile to satisfy "must output all menu items" without complex JS */
            .helm-mesh {
                display: flex;
                flex-wrap: nowrap;
                overflow-x: auto;
                width: 100%;
                padding-top: 1rem;
                gap: 1rem;
                justify-content: flex-start;
                -webkit-overflow-scrolling: touch;
            }
            .helm-wire {
                white-space: nowrap;
            }
            .apex-tunnel {
                flex-direction: column;
                align-items: flex-start;
            }
            .acquire-cloak {
                padding: 3rem 1.5rem;
            }
        }

.route-apex-veil .route-flex-veil{
            display: flex;
            flex-wrap: wrap;
        }

.route-apex-veil .route-flex-veil > *{
            min-width: 0;
        }

.route-apex-veil .route-global-cloak{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.route-apex-veil{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(249, 248, 246, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding: 1.2rem 0;
        }

.route-apex-veil .route-apex-tunnel{
            justify-content: space-between;
            align-items: center;
        }

.route-apex-veil .route-crest{
            display: flex;
            align-items: center;
        }

.route-apex-veil .route-crest img{
            height: 32px;
            width: auto;
        }

.route-apex-veil .route-helm-mesh{
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

.route-apex-veil .route-helm-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #4a4d55;
            position: relative;
            padding: 0.5rem 0;
        }

.route-apex-veil .route-helm-wire:hover{
            color: #e8a868;
        }

.route-apex-veil .route-helm-wire.active{
            color: #e8a868;
        }

.route-apex-veil .route-helm-wire.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #e8a868;
            border-radius: 2px;
        }

@media (max-width: 768px){.route-apex-veil .route-helm-mesh{ display: none;  }}

.route-apex-veil {
    background: rgb(249, 248, 246);
    background-image: none;
}

.anchor-core-anchor {
    font-family: var(--font-cipher);
    line-height: 1.7;
    color: var(--aura-text-main);
}
.anchor-core-anchor,
.anchor-core-anchor *,
.anchor-core-anchor *::before,
.anchor-core-anchor *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-core-anchor .anchor-flex-veil{
            display: flex;
            flex-wrap: wrap;
        }

.anchor-core-anchor .anchor-flex-veil > *{
            min-width: 0;
        }

.anchor-core-anchor .anchor-global-cloak{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.anchor-core-anchor{
            background: #f9f8f6;
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

.anchor-core-anchor .anchor-core-tunnel{
            justify-content: space-between;
            align-items: flex-start;
            gap: 3rem;
            margin-bottom: 3rem;
        }

.anchor-core-anchor .anchor-brand-cipher{
            font-family: "Playfair Display", "Noto Serif SC", serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a1b1e;
            margin-bottom: 1rem;
            display: block;
        }

.anchor-core-anchor .anchor-core-desc{
            max-width: 300px;
            font-size: 0.9rem;
        }

.anchor-core-anchor .anchor-root-cluster{
            display: flex;
            gap: 4rem;
            flex-wrap: wrap;
        }

.anchor-core-anchor .anchor-root-column{
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

.anchor-core-anchor .anchor-root-peak{
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

.anchor-core-anchor .anchor-root-wire{
            font-size: 0.9rem;
            color: #4a4d55;
        }

.anchor-core-anchor .anchor-root-wire:hover{
            color: #e8a868;
        }

.anchor-core-anchor .anchor-core-bottom{
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(0,0,0,0.05);
            font-size: 0.85rem;
            color: #8a8d95;
        }

@media (max-width: 768px){.anchor-core-anchor .anchor-root-cluster{ gap: 2rem; flex-direction: column; }}