:root {
            --paper-bg: #ffffff;
            --paper-alt: #fcfcfd;
            --text-main: #0f0f11;
            --text-muted: #555566;
            --accent: #f853a3;
            --accent-light: #fdf2f7;
            --radius-soft: 20px;
            --radius-sharp: 8px;
            --space-xs: 0.5rem;
            --space-sm: 1.5rem;
            --space-md: 3rem;
            --space-lg: 6rem;
            --space-xl: 10rem;
            --shadow-vault: 0 24px 48px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.03);
            --shadow-hover: 0 32px 64px rgba(0,0,0,0.08), 0 8px 24px rgba(0,0,0,0.04);
            --transition: all 0.15s ease;
            --font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
        }

        /* Reset & Base */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: var(--font-family);
            background-color: var(--paper-bg);
            color: var(--text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            word-break: break-word;
            overflow-wrap: break-word;
        }
        a { text-decoration: none; color: inherit; }
        img, svg { max-width: 100%; height: auto; display: block; }

        /* Flex Utilities */
        .flex-pod {
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }
        .flex-dot {
            min-width: 0;
        }

        /* Mandatory Nav Styles (Inherited exact) */
        .helm-cloak {
            position: fixed;
            top: 0; left: 0; right: 0;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            z-index: 1000;
        }
        .helm {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 4vw;
        }
        .sigil {
            display: flex;
            align-items: center;
        }
        .sigil img {
            height: 32px;
            width: auto;
        }
        .route {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .wire {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-muted);
            transition: color var(--transition);
        }
        .wire:hover, .wire.active {
            color: var(--text-main);
        }
        @media (max-width: 768px) {
            .route { display: none; } /* Simplified for mobile per standard pattern */
        }

        /* Typography */
        .apex-mega {
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            white-space: normal;
            margin-bottom: var(--space-sm);
        }
        .apex-primary {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: var(--space-sm);
        }
        .apex-secondary {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .cipher-lead {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: var(--text-muted);
            max-width: 700px;
            margin-bottom: var(--space-md);
            word-break: keep-all;
        }

        /* Common Components */
        .cloak-bound {
            max-width: 1280px;
            margin: 0 auto;
            padding: var(--space-lg) 4vw;
        }
        .trigger-tunnel {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1.2rem 2.5rem;
            background-color: var(--text-main);
            color: var(--paper-bg);
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 50px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }
        .trigger-tunnel:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            background-color: var(--accent);
        }
        .glyph-base {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: var(--accent-light);
            color: var(--accent);
            margin-bottom: 1.5rem;
        }

        /* Section 1: Hero (Vortex) */
        .vortex-cloak {
            padding: calc(var(--space-xl) + 2rem) 4vw var(--space-lg);
            background: radial-gradient(circle at 50% 0%, var(--accent-light) 0%, var(--paper-bg) 60%);
            min-height: 75vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        .vortex-core {
            max-width: 900px;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-wrap: wrap;
            min-width: 0;
        }
        .vortex-tag {
            display: inline-block;
            padding: 0.4rem 1rem;
            background: rgba(248, 83, 163, 0.1);
            color: var(--accent);
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        /* Section 2: Premium Routes (Armor & Vaults) */
        .armor-cloak {
            background-color: var(--paper-alt);
        }
        .vault-matrix {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: var(--space-md);
        }
        .vault {
            background: var(--paper-bg);
            border-radius: var(--radius-soft);
            padding: 2.5rem;
            box-shadow: var(--shadow-vault);
            border: 1px solid rgba(0,0,0,0.03);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            min-width: 0;
        }
        .vault:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .vault-flow {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            min-width: 0;
        }
        .vault-flow-dot {
            padding: 0.3rem 0.8rem;
            background: var(--paper-alt);
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: var(--radius-sharp);
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-muted);
        }

        /* Section 3: Smart Node List (Shell & Lens) */
        .cloak-split {
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
        }
        .cloak-cipher-pod {
            flex: 1;
            min-width: 300px;
        }
        .cloak-lens-pod {
            flex: 1.2;
            min-width: 300px;
        }
        .lens-cloak {
            border-radius: var(--radius-soft);
            box-shadow: var(--shadow-vault);
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.03);
            position: relative;
        }
        .lens-cloak::after {
            content: '';
            position: absolute;
            inset: 0;
            box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
            border-radius: var(--radius-soft);
            pointer-events: none;
        }
        .stat-matrix {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .stat-dot {
            padding-left: 1rem;
            border-left: 3px solid var(--accent);
        }
        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 0.3rem;
        }

        /* Section 4: Bandwidth Policy (Tunnel) */
        .tunnel-cloak {
            background-color: var(--text-main);
            color: var(--paper-bg);
            text-align: center;
            padding: var(--space-lg) 4vw;
            border-radius: 40px;
            max-width: 1360px;
            margin: 0 auto var(--space-lg);
        }
        .tunnel-cloak .cipher-lead {
            color: rgba(255,255,255,0.7);
            margin-left: auto;
            margin-right: auto;
        }
        .tunnel-matrix {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2rem;
            margin-top: var(--space-md);
            text-align: left;
        }
        .packet {
            padding: 2rem;
            background: rgba(255,255,255,0.05);
            border-radius: var(--radius-soft);
            border: 1px solid rgba(255,255,255,0.1);
            min-width: 0;
        }
        .packet .glyph-base {
            background: rgba(255,255,255,0.1);
            color: var(--paper-bg);
        }

        /* Footer (Anchor) */
        .anchor-cloak {
            border-top: 1px solid rgba(0,0,0,0.05);
            padding: var(--space-md) 4vw;
            background-color: var(--paper-bg);
        }
        .anchor-matrix {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }
        .anchor-brand {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }
        .anchor-flow {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Responsive overrides */
        @media (max-width: 768px) {
            .vault-matrix, .tunnel-matrix {
                grid-template-columns: 1fr;
            }
            .cloak-split {
                flex-direction: column;
            }
            .stat-matrix {
                grid-template-columns: 1fr;
            }
            .tunnel-cloak {
                border-radius: 0;
                margin-bottom: 0;
            }
        }

.helm-helm-cloak {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: var(--ink-main);
}
.helm-helm-cloak,
.helm-helm-cloak *,
.helm-helm-cloak *::before,
.helm-helm-cloak *::after {
    box-sizing: border-box;
}

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

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

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

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

.helm-helm-cloak a.helm-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;
}

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

.helm-helm-cloak{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(0,0,0,0.04);
        }

.helm-helm-cloak .helm-helm{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 4vw;
        }

.helm-helm-cloak .helm-helm > *{ min-width: 0; }

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

.helm-helm-cloak .helm-route{
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            align-items: center;
        }

.helm-helm-cloak .helm-route > *{ min-width: 0; }

.helm-helm-cloak .helm-wire{
            text-decoration: none;
            color: #4a4a52;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.15s ease;
            position: relative;
        }

.helm-helm-cloak .helm-wire:hover, .helm-helm-cloak .helm-wire.active{
            color: #0f0f11;
        }

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

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

.helm-helm-cloak {
    background: rgb(255, 255, 255);
    background-image: none;
}

.anchor-tail {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: var(--ink-main);
}
.anchor-tail,
.anchor-tail *,
.anchor-tail *::before,
.anchor-tail *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-tail{
            background-color: #ffffff;
            padding: 3rem 4vw;
            border-top: 1px solid rgba(0,0,0,0.04);
        }

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

.anchor-tail .anchor-anchor > *{ min-width: 0; }

.anchor-tail .anchor-root-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #0f0f11;
            letter-spacing: -0.02em;
        }

.anchor-tail .anchor-root-cipher{
            color: #888891;
            font-size: 0.9rem;
        }

@media (max-width: 768px){.anchor-tail .anchor-anchor{
                flex-direction: column;
                text-align: center;
            }}