/* CSS Variables & Theme */
: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: #58ba54;
    --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: 16px;
    
    --shadow-base: 0 4px 12px rgba(0,0,0,0.3);
    --shadow-elevated: 0 8px 32px rgba(0,0,0,0.5);
    --shadow-accent: 0 0 20px rgba(108, 211, 104, 0.2);
    
    --transition: all 0.25s ease;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    background-color: var(--color-bg-base);
    color: var(--color-text-mute);
    font-family: var(--font-family);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    word-break: break-word;
    overflow-wrap: break-word;
}

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

img, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--color-text-prime);
    white-space: normal;
    font-weight: 700;
}

/* Mandatory Flexbox Rules */
.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}
.flex-dot {
    min-width: 0;
}

/* Layout Shell */
.fold-prime {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.zone-core {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Navigation - Mandatory 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);
}
.crown .tube {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.crown .sigil {
    min-width: 0;
    flex-shrink: 0;
}
.crown .sigil img {
    height: 32px;
    width: auto;
}
.crown .helm {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    min-width: 0;
}
.crown .helm-vein {
    min-width: 0;
    color: var(--color-text-mute);
    font-size: 0.95rem;
    font-weight: 500;
}
.crown .helm-vein:hover,
.crown .helm-vein:focus {
    color: var(--color-text-prime);
}
.crown .helm-vein.active {
    color: var(--color-text-prime);
    position: relative;
}
.crown .helm-vein.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

/* Hero Section (Acquire) - Vault */
.vault-acquire {
    position: relative;
    padding: var(--space-xl) 2rem;
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}
.vault-acquire::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, var(--color-accent-dim) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.tube-vault {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    gap: var(--space-lg);
    align-items: center;
}
.pack-vault-byte {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}
.apex-huge {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.byte-lead {
    font-size: 1.25rem;
    color: var(--color-text-mute);
    max-width: 90%;
}
.lane-actions {
    display: flex;
    gap: var(--space-sm);
}
.pulse-prime {
    background-color: var(--color-accent);
    color: var(--color-bg-base);
    padding: 0.875rem 2.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-accent);
}
.pulse-prime:hover,
.pulse-prime:focus {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
}
.pulse-ghost {
    background-color: transparent;
    color: var(--color-text-prime);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid var(--color-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pulse-ghost:hover,
.pulse-ghost:focus {
    background-color: var(--color-bg-surface);
    border-color: var(--color-text-mute);
}
.pack-vault-media {
    flex: 1 1 500px;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-elevated);
}
.lens-vault {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1.02);
}

/* Platform Matrix Section (Comparison) - Realm */
.realm-matrix {
    padding: var(--space-xl) 2rem;
    background-color: var(--color-bg-surface);
}
.tube-matrix {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}
.pack-matrix-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}
.apex-tube {
    font-size: 2.25rem;
    letter-spacing: -0.01em;
}
.byte-sub {
    font-size: 1.1rem;
}
.pack-data-visual {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-base);
}
.lens-data {
    width: 100%;
    height: auto;
}
.mesh-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-md);
}
.shard-sys {
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition);
}
.shard-sys:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent-dim);
    box-shadow: var(--shadow-elevated);
}
.lane-sys-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.glyph-sys-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--color-bg-base);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-prime);
}
.glyph-sys-wrap svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.apex-sys {
    font-size: 1.25rem;
}
.pack-sys-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
}
.byte-meta {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--color-border);
    padding-bottom: 0.25rem;
}
.bolt-leap {
    background: var(--color-bg-base);
    color: var(--color-text-prime);
    border: 1px solid var(--color-border);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}
.shard-sys:hover .bolt-leap {
    background: var(--color-accent);
    color: var(--color-bg-base);
    border-color: var(--color-accent);
}

/* Steps Article (Guide) - Cloak */
.cloak-guide {
    padding: var(--space-xl) 2rem;
    background-color: var(--color-bg-base);
    border-bottom: 1px solid var(--color-border);
}
.tube-steps {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}
.pack-guide-head {
    text-align: center;
}
.mesh-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    position: relative;
}
.node-step {
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}
.glyph-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent-dim);
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    pointer-events: none;
}
.glyph-step-glyph {
    width: 40px;
    height: 40px;
    color: var(--color-accent);
}
.apex-step {
    font-size: 1.35rem;
}
.byte-step {
    font-size: 0.95rem;
}

/* Data Zone (Extra Container for structural diversity) - Zone */
.zone-data {
    padding: var(--space-lg) 2rem;
    background-color: var(--color-bg-base);
}
.tube-data {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.apex-data {
    font-size: 1.2rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
}
.pack-data-mesh {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
}
.lane-data-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.dot-key {
    font-weight: 600;
    color: var(--color-text-prime);
    min-width: 120px;
}
.dot-val {
    color: var(--color-text-mute);
}

/* Footer - Sole */
.sole {
    background-color: var(--color-bg-surface);
    border-top: 1px solid var(--color-border);
    padding: var(--space-lg) 2rem 2rem;
}
.tube-foot {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}
.mesh-foot-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}
.pack-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 300px;
    min-width: 0;
}
.apex-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.mesh-foot-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}
.pack-vein-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}
.apex-col {
    color: var(--color-text-prime);
    font-size: 1rem;
    font-weight: 600;
}
.vein-foot {
    color: var(--color-text-mute);
    font-size: 0.9rem;
}
.vein-foot:hover {
    color: var(--color-accent);
}
.lane-foot-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .crown .helm {
        width: 100%;
        margin-top: 1rem;
        gap: 1rem;
        justify-content: flex-start;
    }
    .tube-vault {
        flex-direction: column;
        align-items: flex-start;
    }
    .apex-huge {
        font-size: 2.5rem;
    }
    .lane-actions {
        flex-direction: column;
        width: 100%;
    }
    .pulse-prime, .pulse-ghost {
        width: 100%;
    }
    .mesh-foot-top {
        flex-direction: column;
    }
    .mesh-foot-links {
        gap: 2rem;
    }
    .lane-data-row {
        flex-direction: column;
        gap: 0.25rem;
    }
}

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