:root {
            --color-primary: #58a7fa;
            --color-primary-deep: #2563eb;
            --color-accent: #0ea5e9;
            --color-bg-base: #f8fafc;
            --color-bg-surface: #ffffff;
            --color-text-main: #0f172a;
            --color-text-muted: #475569;
            --color-border: #e2e8f0;
            
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 22px;
            --radius-pill: 9999px;
            
            --shadow-soft: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.01);
            --shadow-hover: 0 20px 25px -5px rgba(88, 167, 250, 0.15), 0 8px 10px -6px rgba(88, 167, 250, 0.1);
            
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 2rem;
            --space-lg: 4rem;
            --space-xl: 6rem;
            
            --transition: all 0.15s ease;
            --max-width: 1320px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

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

        /* 强制文本换行与flex规则 */
        .mesh, .hive, .flock, .flow, .pod {
            display: flex;
            flex-wrap: wrap;
        }
        
        .mesh > *, .hive > *, .flock > *, .flow > *, .pod > * {
            min-width: 0;
        }

        .vox, .crest {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        
        .vox {
            word-break: keep-all;
        }
        
        .crest {
            white-space: normal;
        }

        /* 全局容器结构 */
        .husk {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .zone {
            width: 100%;
            max-width: var(--max-width);
            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: var(--space-sm) 0;
        }

        .helm {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: var(--space-md);
        }

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

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

        .bond {
            text-decoration: none;
            color: var(--color-text-muted);
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: var(--radius-pill);
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .bond:hover, .bond:focus {
            color: var(--color-primary-deep);
            background-color: rgba(88, 167, 250, 0.1);
        }

        .bond.active {
            color: var(--color-primary-deep);
            background-color: rgba(88, 167, 250, 0.15);
            font-weight: 600;
        }

        /* Hero区 (cinematic_strip) */
        .flare {
            position: relative;
            width: 100%;
            /* Cinematic aspect ratio ~21:9 */
            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; /* Align content to bottom edge */
            overflow: hidden;
            margin-bottom: var(--space-xl);
            padding-bottom: var(--space-lg);
        }

        /* 模拟cinematic fill的背景装饰 */
        .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;
        }

        .apex {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.5rem;
            /* Text overlaid at bottom edge */
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
        }

        .crest-mega {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            color: var(--color-text-main);
            letter-spacing: -0.03em;
            max-width: 800px;
        }
        
        .crest-mega span {
            background: linear-gradient(90deg, var(--color-primary-deep), var(--color-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .vox-lead {
            font-size: clamp(1.125rem, 1.5vw, 1.375rem);
            color: var(--color-text-muted);
            max-width: 650px;
            font-weight: 400;
        }

        .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);
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(88, 167, 250, 0.3);
            transition: var(--transition);
            border: none;
            cursor: pointer;
            width: fit-content;
        }

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

        /* 特性区 (capability) */
        .mesh-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: var(--space-md);
            margin-bottom: var(--space-xl);
        }

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

        .pod-feature {
            background: var(--color-bg-surface);
            border-radius: var(--radius-lg);
            padding: var(--space-md);
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--color-border);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

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

        .mark-wrap {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-md);
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary-deep);
        }

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

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

        .vox-pod {
            color: var(--color-text-muted);
            font-size: 0.95rem;
            flex-grow: 1;
        }

        /* 性能与安全区 (context) */
        .hive-split {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: var(--space-lg);
            align-items: center;
            margin-bottom: var(--space-xl);
            background: var(--color-bg-surface);
            border-radius: var(--radius-lg);
            padding: var(--space-lg);
            box-shadow: var(--shadow-soft);
        }

        .lens-wrap {
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            border: 1px solid var(--color-border);
        }

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

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

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

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

        .drop-drop svg {
            width: 24px;
            height: 24px;
            color: var(--color-accent);
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* 站内路径承接中枢 (flock) */
        .flock-hub {
            margin-bottom: var(--space-xl);
        }

        .flock-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-md);
            margin-top: var(--space-md);
        }

        .node-path {
            background: linear-gradient(to bottom right, #ffffff, #f8fafc);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            border: 1px solid var(--color-border);
            transition: var(--transition);
            text-decoration: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            position: relative;
            overflow: hidden;
        }

        .node-path::after {
            content: '→';
            position: absolute;
            bottom: 1.5rem;
            right: 1.5rem;
            font-size: 1.2rem;
            color: var(--color-primary);
            opacity: 0;
            transform: translateX(-10px);
            transition: var(--transition);
        }

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

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

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

        .vox-path {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            line-height: 1.6;
        }

        /* CTA区 (pulse) */
        .pulse-verb {
            background: linear-gradient(135deg, var(--color-primary-deep), var(--color-primary));
            border-radius: var(--radius-lg);
            padding: var(--space-xl) var(--space-md);
            text-align: center;
            color: white;
            margin-bottom: var(--space-xl);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.4);
        }

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

        .pulse-verb .vox-lead {
            color: rgba(255,255,255,0.9);
        }
        
        .spark-alt {
            background: white;
            color: var(--color-primary-deep);
            padding: 1rem 3rem;
            border-radius: var(--radius-pill);
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }
        
        .spark-alt:hover, .spark-alt:focus {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        /* 页脚 (tail) */
        .tail {
            background-color: #0f172a;
            color: #94a3b8;
            padding: var(--space-lg) 0 var(--space-md);
            margin-top: auto;
        }

        .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: var(--space-md);
        }

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

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

        .beam-links a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

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

        /* 响应式断点 */
        @media (max-width: 1024px) {
            .hive-split {
                grid-template-columns: 1fr;
            }
            .lens-wrap {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .helm {
                flex-direction: column;
                gap: 1rem;
            }
            .flow {
                justify-content: center;
                width: 100%;
            }
            .flare {
                padding-bottom: var(--space-md);
            }
            .mesh-layout, .flock-grid {
                grid-template-columns: 1fr;
            }
            .base {
                flex-direction: column;
                text-align: center;
            }
            .beam-links {
                justify-content: center;
            }
        }

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