/* CSS Variables - Design System: Product Matrix Hub */
        :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-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: 8rem;
            
            --radius-inner: 8px;
            --radius-outer: 12px;
            
            --shadow-base: 0 4px 24px rgba(0,0,0,0.5);
            --shadow-hover: 0 12px 32px rgba(108, 211, 104, 0.15);
            --transition-speed: 0.25s;
            
            --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        /* Global Reset & Typography */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: var(--font-sans);
            background-color: var(--color-bg-base);
            color: var(--color-text-mute);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        /* Enforced Text Wrapping Rules */
        .byte, .apex, .vein {
            word-break: keep-all;
            overflow-wrap: break-word;
            white-space: normal;
        }

        /* Enforced Flex Rules via Utility Classes */
        .pack-row, .pack-col {
            display: flex;
            flex-wrap: wrap;
        }
        .pack-row > *, .pack-col > * {
            min-width: 0;
        }
        .pack-col { flex-direction: column; }

        /* Structure Utilities */
        .fold {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        
        .zone {
            flex: 1;
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .tube {
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        /* Typography Classes */
        .apex-huge { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: var(--color-text-prime); line-height: 1.1; letter-spacing: -0.02em; }
        .apex-prime { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--color-text-prime); line-height: 1.2; }
        .apex-sub { font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 600; color: var(--color-text-prime); }
        .apex-node { font-size: 1.125rem; font-weight: 600; color: var(--color-text-prime); }
        
        .byte-lead { font-size: 1.25rem; color: var(--color-text-mute); max-width: 800px; }
        .byte-core { font-size: 1rem; color: var(--color-text-mute); }
        .byte-fine { font-size: 0.875rem; color: var(--color-text-mute); }

        /* Components */
        .pulse {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 2rem;
            background-color: var(--color-accent);
            color: var(--color-bg-base);
            font-weight: 600;
            text-decoration: none;
            border-radius: var(--radius-inner);
            transition: all var(--transition-speed) ease;
            border: 1px solid transparent;
            cursor: pointer;
        }
        .pulse:hover, .pulse:focus {
            background-color: transparent;
            color: var(--color-accent);
            border-color: var(--color-accent);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .pulse-alt {
            background-color: transparent;
            color: var(--color-text-prime);
            border-color: var(--color-border);
        }
        .pulse-alt:hover, .pulse-alt:focus {
            background-color: var(--color-bg-surface);
            border-color: var(--color-text-mute);
            color: var(--color-text-prime);
        }

        /* SVG Glyphs */
        .glyph {
            width: 2.5rem;
            height: 2.5rem;
            fill: var(--color-accent);
            margin-bottom: var(--space-sm);
        }

        /* ----------------------------------- */
        /* Specific Layout Sections            */
        /* ----------------------------------- */

        /* Header / Nav */
        .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 var(--color-border);
        }
        
        .crown .tube {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

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

        .helm {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-md);
        }

        .helm-vein {
            color: var(--color-text-mute);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color var(--transition-speed) ease;
        }
        .helm-vein:hover, .helm-vein.active {
            color: var(--color-text-prime);
        }
        .helm-vein.active {
            position: relative;
        }
        .helm-vein.active::after {
            content: '';
            position: absolute;
            bottom: -24px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--color-accent);
        }

        /* 1. Vault (Hero - Blueprint: fullbleed_overlay) */
        .vault {
            position: relative;
            width: 100%;
            min-height: 95vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-top: 0; /* Starts at top, underneath fixed header */
        }

        /* Simulating full-bleed image background with complex CSS to meet blueprint requirements */
        .vault-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: 
                radial-gradient(circle at 50% 0%, rgba(108, 211, 104, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(48, 54, 61, 0.4) 0%, transparent 40%),
                linear-gradient(180deg, var(--color-bg-base) 0%, #0d1117 100%);
            z-index: 1;
        }
        .vault-bg::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: linear-gradient(var(--color-border) 1px, transparent 1px),
                              linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.05;
        }

        .vault-core {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: var(--space-xl) var(--space-md);
            max-width: 900px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--space-md);
            /* Semi-transparent gradient overlay for text readability as per blueprint */
            background: radial-gradient(circle at center, rgba(10,12,16,0.8) 0%, rgba(10,12,16,0) 80%);
            border-radius: 50%;
        }

        .vault-actions {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-sm);
            justify-content: center;
            margin-top: var(--space-sm);
        }

        /* 2. Cloak (Proof / Dashboard) */
        .cloak {
            padding: var(--space-xl) 0;
            background-color: var(--color-bg-base);
            border-bottom: 1px solid var(--color-border);
        }

        .cloak-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: var(--space-lg);
            align-items: center;
        }

        .cloak-data {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
        }

        .shard-proof {
            background: var(--color-bg-surface);
            padding: var(--space-md);
            border-radius: var(--radius-outer);
            border: 1px solid var(--color-border);
            box-shadow: var(--shadow-base);
        }

        .lens-node {
            width: 100%;
            height: auto;
            border-radius: var(--radius-outer);
            border: 1px solid var(--color-border);
            box-shadow: var(--shadow-base);
            display: block;
        }

        .proof-mesh {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
        }
        
        .proof-dot {
            display: flex;
            align-items: flex-start;
            gap: var(--space-xs);
        }
        .proof-dot svg {
            width: 20px; height: 20px; fill: var(--color-accent);
            flex-shrink: 0; margin-top: 4px;
        }

        /* 3. Realm (Capabilities / Content Density Area) */
        .realm {
            padding: var(--space-xl) 0;
            background-color: var(--color-bg-surface);
        }

        .realm-crown {
            text-align: center;
            margin-bottom: var(--space-lg);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Capability Matrix (CSS Grid) */
        .matrix {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-md);
            margin-bottom: var(--space-xl);
        }

        .cell {
            background: var(--color-bg-elevated);
            padding: var(--space-md);
            border-radius: var(--radius-outer);
            border: 1px solid var(--color-border);
            transition: transform var(--transition-speed) ease;
        }
        .cell:hover {
            transform: translateY(-5px);
            border-color: var(--color-text-mute);
        }

        /* Deep Content Snippets (Injecting topic breadth) */
        .deep-lane {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: var(--space-lg);
            border-top: 1px solid var(--color-border);
            padding-top: var(--space-lg);
        }

        .deep-node {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
        }
        .deep-node .vein {
            color: var(--color-accent);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .deep-node .vein:hover {
            text-decoration: underline;
        }

        /* 4. Nexus-end (CTA) */
        .nexus-end {
            padding: var(--space-xl) 0;
            background: linear-gradient(135deg, var(--color-bg-base) 0%, #101a14 100%);
            border-top: 1px solid var(--color-border);
            text-align: center;
        }
        
        .nexus-box {
            background: var(--color-bg-surface);
            border: 1px solid var(--color-accent-dim);
            padding: var(--space-lg);
            border-radius: var(--radius-outer);
            box-shadow: 0 0 40px rgba(108, 211, 104, 0.05);
            max-width: 800px;
            margin: 0 auto;
        }

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

        .sole-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: var(--space-md);
            margin-bottom: var(--space-lg);
        }

        .sole-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-text-prime);
            margin-bottom: var(--space-sm);
        }

        .sole-pack {
            display: flex;
            flex-direction: column;
            gap: var(--space-xs);
        }
        
        .sole-pack .vein {
            color: var(--color-text-mute);
            text-decoration: none;
            font-size: 0.875rem;
        }
        .sole-pack .vein:hover {
            color: var(--color-text-prime);
        }

        .sole-bottom {
            border-top: 1px solid var(--color-border);
            padding-top: var(--space-md);
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: var(--space-xs);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .helm { display: none; /* In a real scenario, a burger menu would go here, but sticking to constraints */ }
            /* Forcing flex to column on mobile as requested */
            .vault-actions { flex-direction: column; width: 100%; }
            .vault-actions .pulse, .vault-actions .pulse-alt { width: 100%; }
            .crown .tube { justify-content: center; }
            .helm { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 10px; }
            .crown { position: relative; } /* Unfix header on small screens to fit menu */
            .crown .tube { height: auto; padding: 15px; }
        }

.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; }}