:root {
            --color-primary: #c644e0;
            --color-primary-glow: rgba(198, 68, 224, 0.4);
            --color-secondary: #00e5ff;
            --color-bg-dark: #0a0510;
            --color-bg-surface: #140b1c;
            --color-bg-elevated: #1e112a;
            --color-text-main: #f0f0f5;
            --color-text-muted: #a09aa8;
            --color-border: rgba(198, 68, 224, 0.15);
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 2rem;
            --space-lg: 4rem;
            --space-xl: 6rem;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-pill: 99px;
            --transition: all 0.25s ease;
        }

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

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

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

        /* Core Utilities */
        .flex-cluster {
            display: flex;
            flex-wrap: wrap;
        }

        .flex-cluster > * {
            min-width: 0;
        }

        .word-mesh {
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .echo-echo {
            color: var(--color-text-muted);
            font-size: 1.1rem;
            word-break: keep-all;
        }

        .lens {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-lg);
        }

        .glyph {
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        /* Typography */
        .apex-mega {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -1px;
            white-space: normal;
            background: linear-gradient(to right, #fff, var(--color-text-muted));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: var(--space-md);
        }

        .apex-prime {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: -0.5px;
            white-space: normal;
            margin-bottom: var(--space-sm);
        }

        .apex-core {
            font-size: 1.25rem;
            font-weight: 600;
            line-height: 1.4;
            white-space: normal;
            color: #fff;
        }

        /* Buttons & Actions */
        .warp-spark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem 1.8rem;
            border-radius: var(--radius-md);
            font-weight: 600;
            background: linear-gradient(135deg, var(--color-primary), #9b2bba);
            color: #fff;
            box-shadow: 0 4px 15px rgba(198, 68, 224, 0.3);
            border: none;
            cursor: pointer;
            text-align: center;
        }

        .warp-spark:hover, .warp-spark:focus {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(198, 68, 224, 0.5);
        }

        .sync-spark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem 1.8rem;
            border-radius: var(--radius-md);
            font-weight: 600;
            background: transparent;
            color: var(--color-text-main);
            border: 1px solid var(--color-border);
            cursor: pointer;
            text-align: center;
        }

        .sync-spark:hover, .sync-spark:focus {
            background: var(--color-bg-surface);
            border-color: var(--color-primary);
            color: #fff;
        }

        /* Header / Navigation (Strict Reuse) */
        .peak-cloak {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 5, 16, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border);
        }

        .helm-orbit {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

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

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

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

        .helm-wire:hover, .helm-wire.active {
            color: #fff;
        }

        .helm-wire.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--color-primary);
            border-radius: 2px;
        }

        /* Hero Layout - Acquire */
        .nexus-tunnel {
            max-width: 1200px;
            margin: 0 auto;
            padding: var(--space-xl) 2rem var(--space-lg);
            align-items: center;
            gap: 4rem;
        }

        .nexus-mesh {
            flex: 1 1 45%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .nexus-mesh {
            flex: 1 1 45%;
            position: relative;
        }

        .nexus-mesh::before {
            content: '';
            position: absolute;
            top: 10%;
            left: 10%;
            right: -10%;
            bottom: -10%;
            background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
            z-index: -1;
            filter: blur(60px);
        }

        .nexus-mesh .lens {
            border: 1px solid var(--color-border);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .band-cluster {
            display: flex;
            gap: 1rem;
            margin-top: var(--space-md);
            flex-wrap: wrap;
        }

        /* Platform Matrix - Acquire */
        .portal-cloak {
            background: linear-gradient(180deg, transparent, var(--color-bg-surface), transparent);
            padding: var(--space-xl) 0;
            border-top: 1px solid rgba(255,255,255,0.02);
            border-bottom: 1px solid rgba(255,255,255,0.02);
        }

        .portal-tunnel {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            flex-direction: column;
        }

        .portal-peak {
            text-align: center;
            max-width: 700px;
            margin: 0 auto var(--space-lg);
        }

        .node-matrix {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            width: 100%;
            margin-bottom: var(--space-lg);
        }

        .node-vault {
            background: var(--color-bg-elevated);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 2.5rem 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            transition: var(--transition);
            box-shadow: inset 0 0 30px rgba(198,68,224,0.02);
            position: relative;
            overflow: hidden;
        }

        .node-vault::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
            opacity: 0;
            transition: var(--transition);
        }

        .node-vault:hover, .node-vault:focus-within {
            transform: translateY(-5px);
            border-color: rgba(198, 68, 224, 0.4);
            box-shadow: 0 15px 35px rgba(0,0,0,0.3), inset 0 0 50px rgba(198,68,224,0.05);
        }

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

        .node-glyph {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-md);
            background: rgba(198, 68, 224, 0.1);
            color: var(--color-primary);
            border: 1px solid rgba(198, 68, 224, 0.2);
        }

        .node-echo {
            flex-grow: 1;
        }

        .node-echo p {
            margin-top: 0.5rem;
            font-size: 0.95rem;
            color: var(--color-text-muted);
        }

        .node-band {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: var(--color-text-muted);
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .portal-media {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }
        
        .portal-media::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40%;
            background: linear-gradient(0deg, var(--color-bg-surface), transparent);
            pointer-events: none;
        }

        /* iOS Guide - Steps */
        .aura-cloak {
            padding: var(--space-xl) 0;
        }

        .aura-tunnel {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 2rem;
            align-items: center;
            gap: 4rem;
        }

        .aura-mesh {
            flex: 1 1 40%;
        }

        .aura-mesh {
            flex: 1 1 50%;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .ping-vault {
            display: flex;
            gap: 1.5rem;
            background: var(--color-bg-surface);
            padding: 1.5rem;
            border-radius: var(--radius-md);
            border: 1px solid rgba(255,255,255,0.05);
            transition: var(--transition);
        }

        .ping-vault:hover {
            border-color: rgba(0, 229, 255, 0.3);
            background: var(--color-bg-elevated);
        }

        .ping-glyph {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0, 229, 255, 0.1);
            color: var(--color-secondary);
            font-weight: 700;
            font-size: 1.2rem;
            border: 1px solid rgba(0, 229, 255, 0.2);
        }

        .ping-echo .apex-core {
            margin-bottom: 0.3rem;
            font-size: 1.1rem;
        }

        .ping-echo p {
            font-size: 0.95rem;
            color: var(--color-text-muted);
            line-height: 1.5;
        }

        /* Free Trial Banner - Acquire */
        .depth-cloak {
            padding: var(--space-lg) 2rem var(--space-xl);
            max-width: 1000px;
            margin: 0 auto;
        }

        .depth-tunnel {
            background: linear-gradient(135deg, rgba(198, 68, 224, 0.1), rgba(20, 11, 28, 0.9));
            border: 1px solid var(--color-border);
            border-radius: 24px;
            padding: 4rem 2rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: inset 0 0 80px rgba(198,68,224,0.05), 0 20px 40px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
        }

        .depth-tunnel::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, transparent 60%);
            z-index: 0;
            pointer-events: none;
        }

        .depth-mesh {
            position: relative;
            z-index: 1;
            max-width: 600px;
        }

        /* Footer */
        .base-root {
            border-top: 1px solid var(--color-border);
            padding: 3rem 2rem;
            background: #050208;
            margin-top: auto;
        }

        .base-tunnel {
            max-width: 1200px;
            margin: 0 auto;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

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

        .base-matrix {
            display: flex;
            gap: 1.5rem;
        }

        .base-wire {
            color: var(--color-text-muted);
            font-size: 0.9rem;
        }
        
        .base-wire:hover {
            color: var(--color-primary);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nexus-tunnel, .aura-tunnel {
                gap: 2rem;
            }
            .nexus-mesh, .nexus-mesh, .aura-mesh, .aura-mesh {
                flex: 1 1 100%;
                text-align: center;
            }
            .nexus-mesh {
                align-items: center;
            }
            .band-cluster {
                justify-content: center;
            }
            .ping-vault {
                text-align: left;
            }
        }

        @media (max-width: 768px) {
            .helm-orbit {
                flex-direction: column;
                gap: 1rem;
            }
            .helm-matrix {
                justify-content: center;
            }
            .node-matrix {
                grid-template-columns: 1fr;
            }
            .apex-mega {
                font-size: 2.2rem;
            }
            .apex-prime {
                font-size: 1.8rem;
            }
            .depth-tunnel {
                padding: 3rem 1.5rem;
            }
            .base-tunnel {
                flex-direction: column;
                text-align: center;
            }
        }

.helm-peak-cloak {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: var(--color-text-main);
}
.helm-peak-cloak,
.helm-peak-cloak *,
.helm-peak-cloak *::before,
.helm-peak-cloak *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.helm-peak-cloak a.helm-helm-wire,
.helm-peak-cloak a.helm-helm-wire:hover,
.helm-peak-cloak a.helm-helm-wire:focus,
.helm-peak-cloak a.helm-helm-wire:active,
.helm-peak-cloak a.helm-helm-wire.active,
.helm-peak-cloak a.helm-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-peak-cloak{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 5, 16, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(198, 68, 224, 0.15);
            z-index: 1000;
            padding: 0 2rem;
        }

.helm-peak-cloak .helm-helm-orbit{
            max-width: 1400px;
            margin: 0 auto;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

.helm-peak-cloak .helm-sigil{
            flex-shrink: 0;
            width: 160px;
        }

.helm-peak-cloak .helm-helm-matrix{
            align-items: center;
            gap: 2.5rem;
        }

.helm-peak-cloak .helm-helm-wire{
            font-size: 1rem;
            color: #a09aa8;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
        }

.helm-peak-cloak .helm-helm-wire:hover, .helm-peak-cloak .helm-helm-wire.active{
            color: #f0f0f5;
        }

.helm-peak-cloak .helm-helm-wire.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #c644e0;
            box-shadow: 0 0 10px rgba(198, 68, 224, 0.4);
        }

.helm-peak-cloak .helm-warp-spark{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem 1.8rem;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            text-align: center;
        }

.helm-peak-cloak .helm-warp-spark{
            background: linear-gradient(135deg, #c644e0, #9b2bba);
            color: #fff;
            box-shadow: 0 4px 15px rgba(198, 68, 224, 0.3);
        }

.helm-peak-cloak .helm-warp-spark:hover{
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(198, 68, 224, 0.5);
        }

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

.helm-peak-cloak {
    background: rgb(10, 5, 16);
    background-image: none;
}

.base-base-tunnel {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: var(--color-text-main);
}
.base-base-tunnel,
.base-base-tunnel *,
.base-base-tunnel *::before,
.base-base-tunnel *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.base-base-tunnel{
            background: #050208;
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(198, 68, 224, 0.15);
            flex-direction: column;
        }

.base-base-tunnel .base-base-matrix{
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            justify-content: space-between;
            gap: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

.base-base-tunnel .base-base-cluster{
            flex-direction: column;
            gap: 1rem;
            width: calc(25% - 1.5rem);
        }

.base-base-tunnel .base-base-apex{
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(to right, #fff, #c644e0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

.base-base-tunnel .base-base-peak{
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.5rem;
        }

.base-base-tunnel .base-base-wire{
            color: #a09aa8;
            font-size: 0.9rem;
        }

.base-base-tunnel .base-base-wire:hover{
            color: #c644e0;
        }

.base-base-tunnel .base-base-tail{
            max-width: 1400px;
            margin: 2rem auto 0;
            width: 100%;
            justify-content: space-between;
            color: #a09aa8;
            font-size: 0.85rem;
        }

@media (max-width: 768px){.base-base-tunnel .base-base-cluster{
                width: 100%;
            }}