/* 视觉契约与基因参数 */
:root {
    --color-brand: #a8e95d;
    --color-brand-dark: #8cc449;
    --color-dark: #121a0f;
    --color-dark-muted: #3a4a35;
    --color-surface: #ffffff;
    --color-bg: #f7fbf5;
    --color-border: #e3ede0;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 22px;
    
    --shadow-sm: 0 4px 12px rgba(18, 26, 15, 0.05);
    --shadow-md: 0 8px 24px rgba(18, 26, 15, 0.08);
    --shadow-lg: 0 12px 32px rgba(18, 26, 15, 0.12);
    --shadow-brand: 0 8px 24px rgba(168, 233, 93, 0.4);
    
    --transition: 0.35s ease;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* 全局重置与基础规范 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    min-width: 0; /* Flex防溢出 */
}

body {
    font-family: var(--font);
    background-color: var(--color-bg);
    color: var(--color-dark);
    line-height: 1.6;
    word-break: break-word;
    overflow-wrap: break-word;
    -webkit-font-smoothing: antialiased;
}

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

/* 强制Flex布局通用类 */
.flex-mesh {
    display: flex;
    flex-wrap: wrap;
}

/* 顶部导航层 (严格复用) */
.top-apex {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 251, 245, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
}

.mesh-wire {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 5%;
    align-items: center;
    justify-content: space-between;
}

.brand-mark img {
    height: 32px;
    display: block;
}

.wire-wave {
    gap: 24px;
    align-items: center;
}

.wire-hook {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-dark-muted);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
}

.wire-hook:hover {
    color: var(--color-dark);
    background: rgba(18, 26, 15, 0.05);
}

.wire-hook.active {
    color: var(--color-dark);
    font-weight: 600;
    background: var(--color-brand);
}

/* 移动端导航适配 */
@media (max-width: 768px) {
    .wire-wave {
        display: none; /* 简化演示，实际应有汉堡菜单展开逻辑，此处遵循蓝图不引入复杂JS */
    }
}

/* 页面主干 */
.core-route {
    display: block;
    width: 100%;
}

/* --- 第一区块：Hero (Article) 一键启用 --- */
.spark-band {
    padding: 80px 5% 100px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 64px;
}

.spark-fold {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.spark-peak {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    white-space: normal;
}

.spark-dash {
    font-size: 18px;
    color: var(--color-dark-muted);
    line-height: 1.8;
    word-break: keep-all;
    max-width: 90%;
}

.fire-tap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background-color: var(--color-brand);
    color: var(--color-dark);
    font-weight: 600;
    font-size: 18px;
    border-radius: 999px;
    box-shadow: var(--shadow-brand);
    align-self: flex-start;
    gap: 12px;
}

.fire-tap:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(168, 233, 93, 0.5);
    background-color: #b4f06f;
}

.fire-tap svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Hero 右侧悬浮卡片 (CSS绘制UI) */
.spark-gram {
    flex: 1 1 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.gram-surface {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 32px;
    width: 100%;
    max-width: 360px;
    position: relative;
    z-index: 2;
    animation: floatGram 6s ease-in-out infinite;
    border: 1px solid var(--color-border);
}

@keyframes floatGram {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.gram-surface::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-brand) 0%, transparent 100%);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    filter: blur(20px);
}

.ui-peak {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.ui-dash {
    font-size: 14px;
    color: var(--color-dark-muted);
    text-align: center;
    margin-bottom: 24px;
}

.ui-send {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--color-brand);
    color: var(--color-dark);
    text-align: center;
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.ui-cancel {
    display: block;
    width: 100%;
    padding: 14px;
    background: transparent;
    color: var(--color-brand-dark);
    text-align: center;
    font-weight: 500;
}

/* --- 第二区块：Steps (Section) 设置中文步骤 --- */
.pulse-mesh {
    background: var(--color-surface);
    padding: 100px 5%;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.pulse-fold {
    max-width: 1200px;
    margin: 0 auto;
}

.pulse-peak {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 64px;
    white-space: normal;
}

.pulse-pack {
    gap: 32px;
    justify-content: center;
}

.pulse-tape {
    flex: 1 1 320px;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    position: relative;
    border: 1px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition);
}

.pulse-tape:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-brand);
}

.tape-dot {
    width: 48px;
    height: 48px;
    background: var(--color-brand);
    color: var(--color-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(168, 233, 93, 0.3);
}

.tape-peak {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.tape-dash {
    color: var(--color-dark-muted);
    font-size: 15px;
}

/* --- 第三区块：FAQ (Aside) 常见问题 --- */
.beacon-line {
    padding: 100px 5%;
    background: var(--color-bg);
}

.beacon-fold {
    max-width: 800px;
    margin: 0 auto;
}

.beacon-peak {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 64px;
    white-space: normal;
}

.beacon-pack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.beacon-note {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}

.beacon-note:hover {
    box-shadow: var(--shadow-md);
}

.note-peak {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.note-peak svg {
    width: 24px;
    height: 24px;
    fill: var(--color-brand-dark);
    flex-shrink: 0;
}

.note-dash {
    color: var(--color-dark-muted);
    font-size: 15px;
    padding-left: 36px;
}

/* --- 底部区域 (Section) --- */
.earth-band {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 60px 5% 40px;
}

.earth-fold {
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.earth-mark {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-dark);
}

.earth-route {
    gap: 24px;
}

.earth-hook {
    color: var(--color-dark-muted);
    font-size: 14px;
    font-weight: 500;
}

.earth-hook:hover {
    color: var(--color-brand-dark);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .spark-band {
        padding: 60px 5%;
        text-align: center;
    }
    
    .fire-tap {
        align-self: center;
    }
    
    .pulse-tape {
        flex: 1 1 100%;
    }
    
    .earth-fold {
        flex-direction: column;
        text-align: center;
    }
    
    .earth-route {
        justify-content: center;
    }
}

.wire-top-apex {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-dark);
}
.wire-top-apex,
.wire-top-apex *,
.wire-top-apex *::before,
.wire-top-apex *::after {
    box-sizing: border-box;
}

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

.wire-top-apex p,
.wire-top-apex h1,
.wire-top-apex h2,
.wire-top-apex h3,
.wire-top-apex h4,
.wire-top-apex h5,
.wire-top-apex h6 {
    text-decoration: none;
}

.wire-top-apex img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

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

.wire-top-apex a.wire-wire-hook {
    --aisite-shell-nav-padding: 8px 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;
}

.wire-top-apex a.wire-wire-hook,
.wire-top-apex a.wire-wire-hook:hover,
.wire-top-apex a.wire-wire-hook:focus,
.wire-top-apex a.wire-wire-hook:active,
.wire-top-apex a.wire-wire-hook.active,
.wire-top-apex a.wire-wire-hook[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);
}

.wire-top-apex .wire-flex-mesh{
            display: flex;
            flex-wrap: wrap;
        }

.wire-top-apex .wire-flex-mesh > *{
            min-width: 0;
        }

.wire-top-apex{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid #e3ede0;
        }

.wire-top-apex .wire-mesh-wire{
            max-width: 1320px;
            margin: 0 auto;
            padding: 16px 5%;
            justify-content: space-between;
            align-items: center;
        }

.wire-top-apex .wire-brand-mark{
            width: 120px;
            height: auto;
            flex-shrink: 0;
        }

.wire-top-apex .wire-wire-wave{
            gap: 32px;
            align-items: center;
        }

.wire-top-apex .wire-wire-hook{
            font-size: 15px;
            font-weight: 500;
            color: #3a4a35;
            padding: 8px 0;
            position: relative;
        }

.wire-top-apex .wire-wire-hook:hover, .wire-top-apex .wire-wire-hook.active{
            color: #121a0f;
        }

.wire-top-apex .wire-wire-hook::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #a8e95d;
            transform: scaleX(0);
            transition: all 0.35s ease;
            transform-origin: right;
        }

.wire-top-apex .wire-wire-hook:hover::after, .wire-top-apex .wire-wire-hook.active::after{
            transform: scaleX(1);
            transform-origin: left;
        }

@media (max-width: 768px){.wire-top-apex .wire-wire-wave{ display: none;  }

.wire-top-apex .wire-mesh-wire{ flex-direction: column; gap: 16px; }

.wire-top-apex .wire-wire-wave{ display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }}

.wire-top-apex {
    background: rgb(255, 255, 255);
    background-image: none;
}

.base-layout-fold {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-dark);
}
.base-layout-fold,
.base-layout-fold *,
.base-layout-fold *::before,
.base-layout-fold *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.base-layout-fold .base-flex-mesh{
            display: flex;
            flex-wrap: wrap;
        }

.base-layout-fold .base-flex-mesh > *{
            min-width: 0;
        }

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

.base-layout-fold .base-top-apex{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid #e3ede0;
        }

.base-layout-fold .base-mesh-wire{
            max-width: 1320px;
            margin: 0 auto;
            padding: 16px 5%;
            justify-content: space-between;
            align-items: center;
        }

.base-layout-fold .base-brand-mark{
            width: 120px;
            height: auto;
            flex-shrink: 0;
        }

.base-layout-fold .base-wire-wave{
            gap: 32px;
            align-items: center;
        }

.base-layout-fold .base-wire-hook{
            font-size: 15px;
            font-weight: 500;
            color: #3a4a35;
            padding: 8px 0;
            position: relative;
        }

.base-layout-fold .base-wire-hook:hover, .base-layout-fold .base-wire-hook.active{
            color: #121a0f;
        }

.base-layout-fold .base-wire-hook::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #a8e95d;
            transform: scaleX(0);
            transition: all 0.35s ease;
            transform-origin: right;
        }

.base-layout-fold .base-wire-hook:hover::after, .base-layout-fold .base-wire-hook.active::after{
            transform: scaleX(1);
            transform-origin: left;
        }

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

.base-layout-fold .base-intro-spark{
            position: relative;
            padding: 100px 5%;
            min-height: 85vh;
            justify-content: center; 
            align-items: center;
            overflow: hidden;
            background-color: #f7fbf5;
        }

.base-layout-fold .base-spark-gram{
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 680px;
            background: #ffffff;
            padding: 64px;
            border-radius: 22px;
            box-shadow: 0 24px 64px rgba(168, 233, 93, 0.15);
            margin-right: auto; 
            margin-left: max(5%, calc((100% - 1320px) / 2));
        }

.base-layout-fold .base-spark-peak{
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

.base-layout-fold .base-spark-dash{
            font-size: clamp(16px, 1.5vw, 18px);
            color: #3a4a35;
            margin-bottom: 40px;
        }

.base-layout-fold .base-fire-tap{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            background-color: #a8e95d;
            color: #121a0f;
            font-weight: 600;
            font-size: 16px;
            border-radius: 999px;
            box-shadow: 0 8px 24px rgba(168, 233, 93, 0.4);
            transition: all 0.35s ease;
        }

.base-layout-fold .base-fire-tap:hover{
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(168, 233, 93, 0.5);
            background-color: #8cc449;
        }

.base-layout-fold .base-capability-pack{
            padding: 120px 5%;
            max-width: 1320px;
            margin: 0 auto;
            width: 100%;
            gap: 64px;
            align-items: stretch;
        }

.base-layout-fold .base-capability-track-left{
            flex: 1 1 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

.base-layout-fold .base-mesh-peak{
            font-size: clamp(28px, 3vw, 36px);
            font-weight: 700;
            margin-bottom: 24px;
        }

.base-layout-fold .base-mesh-dash{
            font-size: 18px;
            color: #3a4a35;
            margin-bottom: 48px;
        }

.base-layout-fold .base-feature-tick{
            display: flex;
            gap: 20px;
            margin-bottom: 32px;
            padding: 24px;
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(18, 26, 15, 0.05);
            transition: all 0.35s ease;
            border: 1px solid transparent;
        }

.base-layout-fold .base-feature-tick:hover{
            transform: translateX(8px);
            border-color: #a8e95d;
            box-shadow: 0 12px 32px rgba(18, 26, 15, 0.08);
        }

.base-layout-fold .base-feature-dot{
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, #f7fbf5, #e0f5c6);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #121a0f;
        }

.base-layout-fold .base-feature-peak{
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }

.base-layout-fold .base-feature-dash{
            font-size: 14px;
            color: #3a4a35;
        }

.base-layout-fold .base-capability-track-right{
            flex: 1 1 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

.base-layout-fold .base-capability-track-right::before{
            content: '';
            position: absolute;
            width: 80%;
            height: 80%;
            background: #a8e95d;
            border-radius: 22px;
            opacity: 0.2;
            filter: blur(60px);
            z-index: 0;
        }

.base-layout-fold .base-gallery-lens{
            border-radius: 22px;
            box-shadow: 0 24px 64px rgba(168, 233, 93, 0.15);
            position: relative;
            z-index: 1;
            width: 100%;
        }

.base-layout-fold .base-comparison-fold{
            background-color: #121a0f;
            color: #ffffff;
            padding: 100px 5%;
            margin: 40px 0;
        }

.base-layout-fold .base-comparison-mesh{
            max-width: 1320px;
            margin: 0 auto;
            gap: 40px;
            align-items: center;
            justify-content: space-between;
        }

.base-layout-fold .base-comparison-info{
            flex: 1 1 500px;
        }

.base-layout-fold .base-comparison-peak{
            font-size: clamp(26px, 3vw, 32px);
            font-weight: 700;
            margin-bottom: 20px;
            color: #a8e95d;
        }

.base-layout-fold .base-comparison-dash{
            font-size: 16px;
            color: #a0aab5;
            max-width: 600px;
        }

.base-layout-fold .base-comparison-fire{
            flex: 0 0 auto;
        }

.base-layout-fold .base-secondary-tap{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            background-color: transparent;
            color: #a8e95d;
            border: 2px solid #a8e95d;
            font-weight: 600;
            border-radius: 999px;
            transition: all 0.35s ease;
        }

.base-layout-fold .base-secondary-tap:hover{
            background-color: #a8e95d;
            color: #121a0f;
        }

.base-layout-fold .base-pathway-track{
            padding: 80px 5% 120px;
            max-width: 1320px;
            margin: 0 auto;
            width: 100%;
        }

.base-layout-fold .base-pathway-intro{
            text-align: center;
            max-width: 800px;
            margin: 0 auto 64px;
        }

.base-layout-fold .base-pathway-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

.base-layout-fold .base-pathway-gram{
            background: #ffffff;
            border-radius: 22px;
            padding: 40px 32px;
            box-shadow: 0 4px 12px rgba(18, 26, 15, 0.05);
            transition: all 0.35s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

.base-layout-fold .base-pathway-gram::before{
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 4px;
            height: 100%;
            background: #a8e95d;
            transform: scaleY(0);
            transition: all 0.35s ease;
            transform-origin: bottom;
        }

.base-layout-fold .base-pathway-gram:hover{
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(18, 26, 15, 0.08);
        }

.base-layout-fold .base-pathway-gram:hover::before{
            transform: scaleY(1);
        }

.base-layout-fold .base-pathway-dot{
            width: 56px;
            height: 56px;
            background: #f7fbf5;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: #3a4a35;
        }

.base-layout-fold .base-pathway-peak{
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
        }

.base-layout-fold .base-pathway-dash{
            font-size: 15px;
            color: #3a4a35;
            flex: 1;
            margin-bottom: 24px;
        }

.base-layout-fold .base-pathway-hook{
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: #121a0f;
            font-size: 14px;
            align-self: flex-start;
        }

.base-layout-fold .base-pathway-hook svg{
            transition: all 0.35s ease;
        }

.base-layout-fold .base-pathway-gram:hover .base-pathway-hook svg{
            transform: translateX(4px);
            color: #8cc449;
        }

.base-layout-fold .base-bottom-base{
            background-color: #ffffff;
            border-top: 1px solid #e3ede0;
            padding: 64px 5% 32px;
        }

.base-layout-fold .base-base-mesh{
            max-width: 1320px;
            margin: 0 auto;
            justify-content: space-between;
            gap: 48px;
        }

.base-layout-fold .base-base-brand-peak{
            font-size: 24px;
            font-weight: 800;
            color: #121a0f;
            margin-bottom: 16px;
            letter-spacing: 1px;
        }

.base-layout-fold .base-base-dash{
            font-size: 14px;
            color: #3a4a35;
            max-width: 300px;
        }

.base-layout-fold .base-base-links{
            display: flex;
            gap: 48px;
        }

.base-layout-fold .base-base-pack{
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.base-layout-fold .base-base-pack-peak{
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #121a0f;
            margin-bottom: 8px;
        }

.base-layout-fold .base-base-hook{
            font-size: 14px;
            color: #3a4a35;
        }

.base-layout-fold .base-base-hook:hover{
            color: #8cc449;
        }

.base-layout-fold .base-base-tail{
            max-width: 1320px;
            margin: 48px auto 0;
            padding-top: 24px;
            border-top: 1px solid #e3ede0;
            text-align: center;
            font-size: 13px;
            color: #3a4a35;
        }

@media (max-width: 1024px){.base-layout-fold .base-spark-gram{ margin: 0 auto; text-align: center; padding: 48px 32px; }

.base-layout-fold .base-capability-pack{ gap: 48px; }}

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

.base-layout-fold .base-mesh-wire{ flex-direction: column; gap: 16px; }

.base-layout-fold .base-wire-wave{ display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

.base-layout-fold .base-capability-track-left, .base-layout-fold .base-capability-track-right{ flex-basis: 100%; }

.base-layout-fold .base-comparison-info{ text-align: center; }

.base-layout-fold .base-comparison-mesh{ justify-content: center; }

.base-layout-fold .base-pathway-grid{ grid-template-columns: 1fr; }

.base-layout-fold .base-base-mesh{ flex-direction: column; align-items: center; text-align: center; }

.base-layout-fold .base-base-links{ flex-direction: column; gap: 32px; align-items: center; }

.base-layout-fold .base-base-dash{ max-width: 100%; }}