/* ==========================================================================
   XChat Core Visual Variables
   ========================================================================== */
:root {
    --color-primary: #58a7fa;
    --color-primary-deep: #2563eb;
    --color-accent: #0ea5e9;
    --color-bg-base: #f8fafc;
    --color-bg-surface: #ffffff;
    --color-bg-alt: #f1f5f9;
    --color-text-main: #0f172a;
    --color-text-muted: #475569;
    --color-border: #e2e8f0;
    
    --color-code-bg: #1e293b;
    --color-code-text: #e2e8f0;
    --color-code-highlight: #38bdf8;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-pill: 9999px;
    
    --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.01);
    --shadow-glow: 0 4px 15px rgba(88, 167, 250, 0.3);
    
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    
    --transition: all 0.15s ease;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

/* Base structural rules for layout safety */
.hive, .mesh {
    display: flex;
    flex-wrap: wrap;
}

.hive > *, .mesh > * {
    min-width: 0;
}

.vox, .crest, .crest-mega {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* ==========================================================================
   Typography
   ========================================================================== */
.crest-mega {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-text-main);
    letter-spacing: -0.03em;
    white-space: normal;
}

.crest {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text-main);
    letter-spacing: -0.02em;
    white-space: normal;
}

.crest-sub {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.vox-lead {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--color-text-muted);
    line-height: 1.6;
    word-break: keep-all;
}

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

.vox-code {
    font-family: var(--font-mono);
    background: var(--color-code-bg);
    color: var(--color-code-text);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    display: block;
    width: 100%;
    overflow-x: auto;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.vox-code-highlight {
    color: var(--color-code-highlight);
    font-weight: 600;
}

/* ==========================================================================
   Layout Containers
   ========================================================================== */
.husk {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.zone {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.pad-y-lg { padding-top: 6rem; padding-bottom: 6rem; }
.pad-y-md { padding-top: 4rem; padding-bottom: 4rem; }

.mesh {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.mesh-dense {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.hive-center {
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.hive-column {
    flex-direction: column;
    gap: 1rem;
}

/* ==========================================================================
   Navigation (Inherited from prototype)
   ========================================================================== */
.crown {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 50;
}

.helm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.glyph {
    display: flex;
    align-items: center;
}

.glyph img {
    height: 32px;
    width: auto;
}

.flow {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.bond:hover {
    color: var(--color-primary-deep);
}

.bond.active {
    color: var(--color-primary-deep);
    font-weight: 600;
}

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

/* ==========================================================================
   Hero Section (Inner Page Variant)
   ========================================================================== */
.flare {
    background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 50%, #f0f9ff 100%);
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
}

.flare::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(88, 167, 250, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.flare-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.flare-vox {
    max-width: 600px;
}

.flare-lens {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Abstract Terminal Graphic built with CSS */
.abstract-term {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 16/10;
    background: var(--color-code-bg);
    border-radius: var(--radius-md);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.abstract-term:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-5px);
}

.term-crown {
    height: 32px;
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 6px;
}

.term-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.term-dot:nth-child(1) { background: #ef4444; }
.term-dot:nth-child(2) { background: #eab308; }
.term-dot:nth-child(3) { background: #22c55e; }

.term-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.term-line {
    height: 12px;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    width: 80%;
}
.term-line.short { width: 40%; }
.term-line.highlight { background: rgba(56, 189, 248, 0.2); width: 60%; }
.term-prompt {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}
.term-prompt::before {
    content: '>';
    color: var(--color-primary);
    font-family: var(--font-mono);
    font-weight: bold;
}
.term-cursor {
    width: 8px;
    height: 16px;
    background: var(--color-primary);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* ==========================================================================
   Components
   ========================================================================== */
.pod {
    background: var(--color-bg-surface);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.pod:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(88, 167, 250, 0.3);
}

.pod-crest {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mark-shield {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(88, 167, 250, 0.1), rgba(37, 99, 235, 0.1));
    color: var(--color-primary-deep);
}

.mark-shield svg {
    width: 24px;
    height: 24px;
}

.ping {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-deep));
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-glow);
    border: none;
    cursor: pointer;
    text-align: center;
}

.ping:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 167, 250, 0.4);
}

.surface-alt {
    background-color: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.node {
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: var(--transition);
}

.node:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.node-husk {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.tail {
    background: var(--color-bg-surface);
    border-top: 1px solid var(--color-border);
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.tail-mesh {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

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

.echo {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.echo-links {
    display: flex;
    gap: 1.5rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .flare-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .flare-vox {
        margin: 0 auto;
    }
    
    .abstract-term {
        max-width: 600px;
        transform: none;
    }
    
    .abstract-term:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .flow {
        display: none; /* In a real app, replace with mobile menu toggle. For layout_only, hide on small screens or stack */
    }
    
    .mesh, .mesh-dense {
        grid-template-columns: 1fr;
    }
    
    .node {
        flex-direction: column;
    }
    
    .tail-mesh {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .echo {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .pad-y-lg { padding-top: 4rem; padding-bottom: 4rem; }
    .pad-y-md { padding-top: 3rem; padding-bottom: 3rem; }
}

.helm-flow{
            display: flex;
            flex-wrap: wrap;
        }

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

.helm-zone{
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

.helm-crown{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 1px 3px rgba(0,0,0,0.02);
            padding: 1rem 0;
        }

.helm-helm{
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

.helm-glyph img{
            height: 32px;
            width: auto;
            display: block;
        }

.helm-flow{
            gap: 0.5rem;
            align-items: center;
        }

.helm-bond{
            text-decoration: none;
            color: #475569;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            transition: all 0.15s ease;
            font-size: 0.95rem;
        }

.helm-bond:hover, .helm-bond:focus{
            color: #2563eb;
            background-color: rgba(88, 167, 250, 0.1);
        }

.helm-bond.active{
            color: #2563eb;
            background-color: rgba(88, 167, 250, 0.15);
            font-weight: 600;
        }

@media (max-width: 768px){.helm-helm{
                flex-direction: column;
                gap: 1rem;
            }

.helm-flow{
                justify-content: center;
                width: 100%;
            }}

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

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

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

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

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

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

.base-husk .base-mesh, .base-husk .base-hive, .base-husk .base-flock, .base-husk .base-flow, .base-husk .base-pod{
            display: flex;
            flex-wrap: wrap;
        }

.base-husk .base-mesh > *, .base-husk .base-hive > *, .base-husk .base-flock > *, .base-husk .base-flow > *, .base-husk .base-pod > *{
            min-width: 0;
        }

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

.base-husk .base-zone{
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

.base-husk .base-crown{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 1px 3px rgba(0,0,0,0.02);
            padding: 1rem 0;
        }

.base-husk .base-helm{
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

.base-husk .base-glyph img{
            height: 32px;
            width: auto;
            display: block;
        }

.base-husk .base-flow{
            gap: 0.5rem;
            align-items: center;
        }

.base-husk .base-bond{
            text-decoration: none;
            color: #475569;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            transition: all 0.15s ease;
            font-size: 0.95rem;
        }

.base-husk .base-bond:hover, .base-husk .base-bond:focus{
            color: #2563eb;
            background-color: rgba(88, 167, 250, 0.1);
        }

.base-husk .base-bond.active{
            color: #2563eb;
            background-color: rgba(88, 167, 250, 0.15);
            font-weight: 600;
        }

.base-husk .base-flare{
            position: relative;
            width: 100%;
            
            min-height: clamp(400px, 45vw, 600px);
            background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 50%, #f0f9ff 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end; 
            overflow: hidden;
            margin-bottom: 6rem;
            padding-bottom: 4rem;
        }

.base-husk .base-flare::before{
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 60%;
            height: 120%;
            background: radial-gradient(circle, rgba(88,167,250,0.15) 0%, rgba(255,255,255,0) 70%);
            z-index: 1;
            pointer-events: none;
        }

.base-husk .base-apex{
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 1.5rem;
            
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

.base-husk .base-crest-mega{
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            color: #0f172a;
            letter-spacing: -0.03em;
            max-width: 800px;
        }

.base-husk .base-crest-mega span{
            background: linear-gradient(90deg, #2563eb, #0ea5e9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

.base-husk .base-vox-lead{
            font-size: clamp(1.125rem, 1.5vw, 1.375rem);
            color: #475569;
            max-width: 650px;
            font-weight: 400;
        }

.base-husk .base-ping{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            font-size: 1.125rem;
            font-weight: 600;
            color: #ffffff;
            background: linear-gradient(135deg, #58a7fa, #2563eb);
            border-radius: 9999px;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(88, 167, 250, 0.3);
            transition: all 0.15s ease;
            border: none;
            cursor: pointer;
            width: fit-content;
        }

.base-husk .base-ping:hover, .base-husk .base-ping:focus{
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(88, 167, 250, 0.4);
        }

.base-husk .base-mesh-layout{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-bottom: 6rem;
        }

.base-husk .base-crest-mesh{
            font-size: clamp(2rem, 3vw, 2.75rem);
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
            width: 100%;
        }

.base-husk .base-pod-feature{
            background: #ffffff;
            border-radius: 22px;
            padding: 2rem;
            box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.01);
            border: 1px solid #e2e8f0;
            transition: all 0.15s ease;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

.base-husk .base-pod-feature:hover{
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(88, 167, 250, 0.15), 0 8px 10px -6px rgba(88, 167, 250, 0.1);
            border-color: rgba(88, 167, 250, 0.3);
        }

.base-husk .base-mark-wrap{
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
        }

.base-husk .base-mark-wrap svg{
            width: 28px;
            height: 28px;
        }

.base-husk .base-crest-pod{
            font-size: 1.25rem;
            font-weight: 700;
            color: #0f172a;
        }

.base-husk .base-vox-pod{
            color: #475569;
            font-size: 0.95rem;
            flex-grow: 1;
        }

.base-husk .base-hive-split{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 4rem;
            align-items: center;
            margin-bottom: 6rem;
            background: #ffffff;
            border-radius: 22px;
            padding: 4rem;
            box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.01);
        }

.base-husk .base-lens-wrap{
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            border: 1px solid #e2e8f0;
        }

.base-husk .base-lens-wrap img{
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

.base-husk .base-hive-vox{
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

.base-husk .base-drop-flow{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }

.base-husk .base-drop-drop{
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

.base-husk .base-drop-drop svg{
            width: 24px;
            height: 24px;
            color: #0ea5e9;
            flex-shrink: 0;
            margin-top: 2px;
        }

.base-husk .base-flock-hub{
            margin-bottom: 6rem;
        }

.base-husk .base-flock-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

.base-husk .base-node-path{
            background: linear-gradient(to bottom right, #ffffff, #f8fafc);
            border-radius: 22px;
            padding: 1.5rem;
            border: 1px solid #e2e8f0;
            transition: all 0.15s ease;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            position: relative;
            overflow: hidden;
        }

.base-husk .base-node-path::after{
            content: '→';
            position: absolute;
            bottom: 1.5rem;
            right: 1.5rem;
            font-size: 1.2rem;
            color: #58a7fa;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.15s ease;
        }

.base-husk .base-node-path:hover, .base-husk .base-node-path:focus{
            border-color: #58a7fa;
            box-shadow: 0 20px 25px -5px rgba(88, 167, 250, 0.15), 0 8px 10px -6px rgba(88, 167, 250, 0.1);
        }

.base-husk .base-node-path:hover::after{
            opacity: 1;
            transform: translateX(0);
        }

.base-husk .base-crest-path{
            font-size: 1.15rem;
            font-weight: 600;
            color: #0f172a;
        }

.base-husk .base-vox-path{
            font-size: 0.9rem;
            color: #475569;
            line-height: 1.6;
        }

.base-husk .base-pulse-verb{
            background: linear-gradient(135deg, #2563eb, #58a7fa);
            border-radius: 22px;
            padding: 6rem 2rem;
            text-align: center;
            color: white;
            margin-bottom: 6rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.4);
        }

.base-husk .base-pulse-verb .base-crest-mesh{
            color: white;
            margin-bottom: 0;
        }

.base-husk .base-pulse-verb .base-vox-lead{
            color: rgba(255,255,255,0.9);
        }

.base-husk .base-spark-alt{
            background: white;
            color: #2563eb;
            padding: 1rem 3rem;
            border-radius: 9999px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.15s ease;
            display: inline-block;
        }

.base-husk .base-spark-alt:hover, .base-husk .base-spark-alt:focus{
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

.base-husk .base-tail{
            background-color: #0f172a;
            color: #94a3b8;
            padding: 4rem 0 2rem;
            margin-top: auto;
        }

.base-husk .base-base{
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
        }

.base-husk .base-crest-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            letter-spacing: 0.05em;
        }

.base-husk .base-beam-links{
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

.base-husk .base-beam-links a{
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.15s ease;
        }

.base-husk .base-beam-links a:hover{
            color: white;
        }

@media (max-width: 1024px){.base-husk .base-hive-split{
                grid-template-columns: 1fr;
            }

.base-husk .base-lens-wrap{
                order: -1;
            }}

@media (max-width: 768px){.base-husk .base-helm{
                flex-direction: column;
                gap: 1rem;
            }

.base-husk .base-flow{
                justify-content: center;
                width: 100%;
            }

.base-husk .base-flare{
                padding-bottom: 2rem;
            }

.base-husk .base-mesh-layout, .base-husk .base-flock-grid{
                grid-template-columns: 1fr;
            }

.base-husk .base-base{
                flex-direction: column;
                text-align: center;
            }

.base-husk .base-beam-links{
                justify-content: center;
            }}