/* CSS Variables - Inherited Visual Family */
        :root {
            --color-bg-base: #0a0c10;
            --color-bg-surface: #12151c;
            --color-bg-elevated: #1a1e27;
            --color-accent: #6cd368;
            --color-accent-dim: rgba(108, 211, 104, 0.15);
            --color-accent-hover: #7ce378;
            --color-text-prime: #e6edf3;
            --color-text-mute: #8d96a0;
            --color-border: #30363d;
            
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 2rem;
            --space-lg: 4rem;
            --space-xl: 6rem;
            
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 24px;
            
            --shadow-glow: 0 0 40px var(--color-accent-dim);
            --shadow-surface: 0 8px 32px rgba(0,0,0,0.4);
            
            --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            --transition: all 0.25s ease;
        }

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

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

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Typography */
        .apex-huge {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: var(--color-text-prime);
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
            margin-bottom: var(--space-md);
        }

        .apex-large {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: var(--color-text-prime);
            white-space: normal;
            word-break: break-word;
            margin-bottom: var(--space-sm);
        }

        .apex-mid {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--color-text-prime);
            line-height: 1.4;
            white-space: normal;
            word-break: break-word;
        }

        .byte-lead {
            font-size: clamp(1.125rem, 2vw, 1.25rem);
            color: var(--color-text-mute);
            max-width: 700px;
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all;
            margin-bottom: var(--space-lg);
        }

        .byte {
            color: var(--color-text-mute);
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all;
        }

        .byte-accent {
            color: var(--color-accent);
            font-weight: 600;
        }

        /* Global Layout Wrappers */
        .zone {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            width: 100%;
        }

        .tube {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-md);
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

        /* Required Header Snippet Styles */
        .crown {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 12, 16, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border);
            padding: var(--space-sm) 0;
        }
        
        .crown .tube {
            justify-content: space-between;
            align-items: center;
        }

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

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

        .helm {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-md);
            align-items: center;
            min-width: 0;
        }

        .helm-vein {
            color: var(--color-text-mute);
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--transition);
            min-width: 0;
        }

        .helm-vein:hover,
        .helm-vein.active {
            color: var(--color-text-prime);
        }

        .helm-vein.active {
            position: relative;
        }

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

        /* Main Content Area */
        .fold {
            flex: 1;
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        /* Buttons / Actions */
        .pulse {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            background-color: var(--color-accent);
            color: var(--color-bg-base);
            font-weight: 600;
            font-size: 1.125rem;
            border-radius: var(--radius-sm);
            border: 1px solid transparent;
            transition: var(--transition);
            cursor: pointer;
            min-width: 0;
        }

        .pulse:hover {
            background-color: var(--color-accent-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-glow);
        }

        .pulse-ghost {
            background-color: transparent;
            color: var(--color-text-prime);
            border: 1px solid var(--color-border);
        }
        
        .pulse-ghost:hover {
            background-color: var(--color-bg-elevated);
            border-color: var(--color-text-mute);
            box-shadow: none;
        }

        /* Section 1: Intro (Hero Variant - fullbleed_overlay style) */
        .vault {
            position: relative;
            padding: var(--space-xl) 0;
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: radial-gradient(ellipse at top, var(--color-bg-elevated) 0%, var(--color-bg-base) 80%);
            overflow: hidden;
        }

        .vault::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100vw;
            height: 100%;
            background: linear-gradient(180deg, var(--color-accent-dim) 0%, transparent 50%);
            pointer-events: none;
        }

        .vault .tube {
            flex-direction: column;
            align-items: center;
            z-index: 2;
        }

        .pack-actions {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-sm);
            justify-content: center;
            min-width: 0;
        }

        /* Section 2: Supported Libraries (FAQ/Grid Role) */
        .realm {
            padding: var(--space-xl) 0;
            background-color: var(--color-bg-base);
            position: relative;
            border-top: 1px solid var(--color-border);
        }

        .realm .tube {
            flex-direction: column;
        }
        
        .realm-crown {
            text-align: center;
            margin-bottom: var(--space-lg);
            width: 100%;
        }

        .pack-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: var(--space-md);
            width: 100%;
        }

        .shard {
            background: var(--color-bg-surface);
            padding: var(--space-md);
            border-radius: var(--radius-md);
            border: 1px solid var(--color-border);
            box-shadow: var(--shadow-surface);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            min-width: 0;
        }

        .shard:hover {
            transform: translateY(-5px);
            border-color: var(--color-accent);
            background: var(--color-bg-elevated);
        }

        .glyph {
            width: 48px;
            height: 48px;
            margin-bottom: var(--space-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-sm);
            background: var(--color-bg-base);
            border: 1px solid var(--color-border);
            color: var(--color-accent);
        }

        /* Section 3: 4K Experience (Detail Role) */
        .cloak {
            padding: var(--space-xl) 0;
            background-color: var(--color-bg-surface);
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

        .pack-split {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-lg);
            align-items: center;
            width: 100%;
        }

        .pack-split > * {
            flex: 1;
            min-width: 300px;
        }

        /* Data Visuals using CSS */
        .visual-core {
            background: var(--color-bg-base);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            padding: var(--space-md);
            box-shadow: var(--shadow-surface);
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
        }

        .lane-wrap {
            width: 100%;
            background: var(--color-bg-elevated);
            height: 8px;
            border-radius: 4px;
            overflow: hidden;
            position: relative;
        }

        .lane {
            height: 100%;
            background: var(--color-accent);
            border-radius: 4px;
            position: relative;
        }
        
        .lane::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transform: translateX(-100%);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            100% { transform: translateX(100%); }
        }

        .lane-full { width: 95%; }
        .lane-mid { width: 60%; background: var(--color-text-mute); }
        .lane-low { width: 30%; background: var(--color-border); }
        
        .visual-seal {
            display: flex;
            justify-content: space-between;
            font-size: 0.875rem;
            color: var(--color-text-mute);
            margin-bottom: -0.5rem;
        }

        /* Section 4: FAQ (Aside Role) */
        .base-faq {
            padding: var(--space-xl) 0;
            background-color: var(--color-bg-base);
        }

        .pack-folds {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
        }

        .fold {
            background: var(--color-bg-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-sm);
            overflow: hidden;
            transition: var(--transition);
        }

        .fold:hover {
            border-color: var(--color-text-mute);
        }

        .fold summary {
            padding: var(--space-md);
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--color-text-prime);
        }
        
        .fold summary::-webkit-details-marker {
            display: none;
        }

        .fold summary::after {
            content: '+';
            color: var(--color-accent);
            font-size: 1.5rem;
            font-weight: 300;
            transition: transform 0.3s ease;
        }

        .fold[open] summary::after {
            transform: rotate(45deg);
        }

        .fold-fold {
            padding: 0 var(--space-md) var(--space-md);
            color: var(--color-text-mute);
            border-top: 1px solid transparent;
        }
        
        .fold[open] .fold-fold {
            border-top-color: var(--color-border);
            padding-top: var(--space-sm);
        }

        /* Footer */
        .sole {
            background-color: var(--color-bg-surface);
            border-top: 1px solid var(--color-border);
            padding: var(--space-lg) 0 var(--space-md);
            margin-top: auto;
        }

        .sole .tube {
            flex-direction: column;
            gap: var(--space-md);
        }

        .sole-top {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: var(--space-md);
            width: 100%;
            border-bottom: 1px solid var(--color-border);
            padding-bottom: var(--space-md);
        }

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

        .sole-links {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-md);
            min-width: 0;
        }
        
        .sole-links a {
            color: var(--color-text-mute);
            transition: var(--transition);
        }

        .sole-links a:hover {
            color: var(--color-accent);
        }

        .sole-bottom {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            color: var(--color-text-mute);
            font-size: 0.875rem;
            width: 100%;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .helm {
                display: none; /* In a real scenario, this would be a hamburger menu. Hiding for simplicity of blueprint adherence without complex JS */
            }
            
            /* Fallback simple nav for mobile */
            .crown .tube {
                flex-direction: column;
                gap: var(--space-sm);
            }
            .helm {
                display: flex;
                justify-content: center;
                width: 100%;
            }

            .vault {
                padding: var(--space-lg) 0;
            }

            .pack-split {
                flex-direction: column;
            }
            
            .pack-grid {
                grid-template-columns: 1fr;
            }
        }

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

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

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

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

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

.helm-crown a.helm-helm-vein {
    --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-crown a.helm-helm-vein,
.helm-crown a.helm-helm-vein:hover,
.helm-crown a.helm-helm-vein:focus,
.helm-crown a.helm-helm-vein:active,
.helm-crown a.helm-helm-vein.active,
.helm-crown a.helm-helm-vein[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-crown .helm-tube{
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 2rem;
        }

.helm-crown{
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            background: rgba(10, 12, 16, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #30363d;
        }

.helm-crown .helm-tube{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

.helm-crown .helm-sigil img{
            height: 28px;
            display: block;
        }

.helm-crown .helm-helm{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

.helm-crown .helm-helm-vein{
            color: #8d96a0;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.25s ease;
        }

.helm-crown .helm-helm-vein:hover, .helm-crown .helm-helm-vein.active{
            color: #e6edf3;
        }

.helm-crown .helm-helm-vein.active{
            position: relative;
        }

.helm-crown .helm-helm-vein.active::after{
            content: '';
            position: absolute;
            bottom: -24px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #6cd368;
        }

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

.helm-crown .helm-tube{ justify-content: center; }

.helm-crown .helm-helm{ display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 10px; }

.helm-crown{ position: relative; }

.helm-crown .helm-tube{ height: auto; padding: 15px; }}

.helm-crown {
    background: rgb(10, 12, 16);
    background-image: none;
}

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

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

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

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

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

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

.base-fold .base-vein{
            word-break: keep-all;
            overflow-wrap: break-word;
            white-space: normal;
        }

.base-fold .base-pack-row{
            display: flex;
            flex-wrap: wrap;
        }

.base-fold .base-pack-row > *{
            min-width: 0;
        }

.base-fold{
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

.base-fold .base-zone{
            flex: 1;
            display: flex;
            flex-direction: column;
            width: 100%;
        }

.base-fold .base-tube{
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 2rem;
        }

.base-fold .base-apex-huge{ font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: #e6edf3; line-height: 1.1; letter-spacing: -0.02em; }

.base-fold .base-apex-prime{ font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #e6edf3; line-height: 1.2; }

.base-fold .base-apex-node{ font-size: 1.125rem; font-weight: 600; color: #e6edf3; }

.base-fold .base-byte-lead{ font-size: 1.25rem; color: #8d96a0; max-width: 800px; }

.base-fold .base-byte-core{ font-size: 1rem; color: #8d96a0; }

.base-fold .base-byte-fine{ font-size: 0.875rem; color: #8d96a0; }

.base-fold .base-pulse{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 2rem;
            background-color: #6cd368;
            color: #0a0c10;
            font-weight: 600;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.25s ease;
            border: 1px solid transparent;
            cursor: pointer;
        }

.base-fold .base-pulse:hover, .base-fold .base-pulse:focus{
            background-color: transparent;
            color: #6cd368;
            border-color: #6cd368;
            box-shadow: 0 12px 32px rgba(108, 211, 104, 0.15);
            transform: translateY(-2px);
        }

.base-fold .base-pulse-alt{
            background-color: transparent;
            color: #e6edf3;
            border-color: #30363d;
        }

.base-fold .base-pulse-alt:hover, .base-fold .base-pulse-alt:focus{
            background-color: #12151c;
            border-color: #8d96a0;
            color: #e6edf3;
        }

.base-fold .base-glyph{
            width: 2.5rem;
            height: 2.5rem;
            fill: #6cd368;
            margin-bottom: 1rem;
        }

.base-fold .base-crown{
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            background: rgba(10, 12, 16, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #30363d;
        }

.base-fold .base-crown .base-tube{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

.base-fold .base-sigil img{
            height: 28px;
            display: block;
        }

.base-fold .base-helm{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

.base-fold .base-helm-vein{
            color: #8d96a0;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.25s ease;
        }

.base-fold .base-helm-vein:hover, .base-fold .base-helm-vein.active{
            color: #e6edf3;
        }

.base-fold .base-helm-vein.active{
            position: relative;
        }

.base-fold .base-helm-vein.active::after{
            content: '';
            position: absolute;
            bottom: -24px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #6cd368;
        }

.base-fold .base-vault{
            position: relative;
            width: 100%;
            min-height: 95vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-top: 0; 
        }

.base-fold .base-vault-core{
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 8rem 2rem;
            max-width: 900px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            
            background: radial-gradient(circle at center, rgba(10,12,16,0.8) 0%, rgba(10,12,16,0) 80%);
            border-radius: 50%;
        }

.base-fold .base-vault-actions{
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-top: 1rem;
        }

.base-fold .base-cloak{
            padding: 8rem 0;
            background-color: #0a0c10;
            border-bottom: 1px solid #30363d;
        }

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

.base-fold .base-cloak-data{
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

.base-fold .base-shard-proof{
            background: #12151c;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid #30363d;
            box-shadow: 0 4px 24px rgba(0,0,0,0.5);
        }

.base-fold .base-lens-node{
            width: 100%;
            height: auto;
            border-radius: 12px;
            border: 1px solid #30363d;
            box-shadow: 0 4px 24px rgba(0,0,0,0.5);
            display: block;
        }

.base-fold .base-proof-mesh{
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

.base-fold .base-proof-dot{
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }

.base-fold .base-proof-dot svg{
            width: 20px; height: 20px; fill: #6cd368;
            flex-shrink: 0; margin-top: 4px;
        }

.base-fold .base-realm{
            padding: 8rem 0;
            background-color: #12151c;
        }

.base-fold .base-realm-crown{
            text-align: center;
            margin-bottom: 4rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

.base-fold .base-matrix{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 8rem;
        }

.base-fold .base-cell{
            background: #1a1e27;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid #30363d;
            transition: transform 0.25s ease;
        }

.base-fold .base-cell:hover{
            transform: translateY(-5px);
            border-color: #8d96a0;
        }

.base-fold .base-deep-lane{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 4rem;
            border-top: 1px solid #30363d;
            padding-top: 4rem;
        }

.base-fold .base-deep-node{
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

.base-fold .base-deep-node .base-vein{
            color: #6cd368;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

.base-fold .base-deep-node .base-vein:hover{
            text-decoration: underline;
        }

.base-fold .base-nexus-end{
            padding: 8rem 0;
            background: linear-gradient(135deg, #0a0c10 0%, #101a14 100%);
            border-top: 1px solid #30363d;
            text-align: center;
        }

.base-fold .base-nexus-box{
            background: #12151c;
            border: 1px solid rgba(108, 211, 104, 0.15);
            padding: 4rem;
            border-radius: 12px;
            box-shadow: 0 0 40px rgba(108, 211, 104, 0.05);
            max-width: 800px;
            margin: 0 auto;
        }

.base-fold .base-sole{
            background-color: #0a0c10;
            border-top: 1px solid #30363d;
            padding: 4rem 0 2rem;
        }

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

.base-fold .base-sole-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #e6edf3;
            margin-bottom: 1rem;
        }

.base-fold .base-sole-pack{
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

.base-fold .base-sole-pack .base-vein{
            color: #8d96a0;
            text-decoration: none;
            font-size: 0.875rem;
        }

.base-fold .base-sole-pack .base-vein:hover{
            color: #e6edf3;
        }

.base-fold .base-sole-bottom{
            border-top: 1px solid #30363d;
            padding-top: 2rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

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

.base-fold .base-vault-actions{ flex-direction: column; width: 100%; }

.base-fold .base-vault-actions .base-pulse, .base-fold .base-vault-actions .base-pulse-alt{ width: 100%; }

.base-fold .base-crown .base-tube{ justify-content: center; }

.base-fold .base-helm{ display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 10px; }

.base-fold .base-crown{ position: relative; }

.base-fold .base-crown .base-tube{ height: auto; padding: 15px; }}