/* ==========================================================================
           变量体系 (继承首页视觉契约)
           ========================================================================== */
        :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-glow: 0 8px 24px rgba(168, 233, 93, 0.4);
            
            --transition: all 0.35s ease;
            --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        /* ==========================================================================
           基础重置与全局样式
           ========================================================================== */
        *, *::before, *::after {
            box-sizing: border-box;
            min-width: 0; /* 强制防止Flex溢出 */
        }

        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-base);
            background-color: var(--color-bg);
            color: var(--color-dark);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

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

        /* 强制文本换行 */
        .dash, 
        .peak {
            word-break: break-word; 
            overflow-wrap: break-word;
        }
        
        .dash {
            word-break: keep-all; /* 中文词组保持 */
        }

        .peak {
            white-space: normal;
        }

        /* ==========================================================================
           导航栏 (完全复用结构，补充样式定义)
           ========================================================================== */
        .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;
        }

        .flex-mesh {
            display: flex;
            flex-wrap: wrap;
        }

        .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,
        .wire-hook:focus {
            color: var(--color-dark);
            background: rgba(18, 26, 15, 0.05);
        }

        .wire-hook.active {
            color: var(--color-dark);
            font-weight: 700;
            background: rgba(168, 233, 93, 0.2);
        }

        /* ==========================================================================
           全局容器
           ========================================================================== */
        .mesh-fold {
            display: block;
        }

        .mesh-mesh {
            display: block;
            min-height: calc(100vh - 200px);
        }

        /* ==========================================================================
           区块 1: Hero (解锁自动化聊天体验) - 角色: acquire
           ========================================================================== */
        .acquire-spark {
            padding: 80px 5% 100px;
            background: linear-gradient(180deg, var(--color-bg) 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .spark-fold {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 60px;
        }

        .spark-pack {
            flex: 1 1 400px;
            z-index: 2;
        }

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

        .spark-dash {
            font-size: 18px;
            color: var(--color-dark-muted);
            margin: 0 0 40px 0;
            line-height: 1.8;
            max-width: 540px;
        }

        .fire-tap {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 36px;
            background-color: var(--color-brand);
            color: var(--color-dark);
            font-weight: 600;
            font-size: 16px;
            border-radius: 999px;
            box-shadow: var(--shadow-glow);
            border: none;
            cursor: pointer;
        }

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

        /* 创意种子落实：card_float 视觉承载 */
        .spark-lens {
            flex: 1 1 400px;
            position: relative;
            min-height: 400px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }

        .lens-gram {
            background: var(--color-surface);
            padding: 20px 24px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--color-border);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
            position: absolute;
            animation: float-gram 6s ease-in-out infinite;
            max-width: 300px;
            width: 100%;
        }

        .lens-gram:nth-child(1) {
            top: 10%;
            left: 0;
            animation-delay: 0s;
        }

        .lens-gram:nth-child(2) {
            top: 40%;
            right: 0;
            animation-delay: -2s;
            z-index: 2;
        }

        .lens-gram:nth-child(3) {
            bottom: 10%;
            left: 10%;
            animation-delay: -4s;
        }

        .gram-dot {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--color-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .gram-dot svg {
            width: 20px;
            height: 20px;
            fill: var(--color-brand-dark);
        }

        .gram-track {
            flex: 1;
            min-width: 0;
        }

        .track-peak {
            font-size: 14px;
            font-weight: 700;
            margin: 0 0 4px 0;
            color: var(--color-dark);
        }

        .track-dash {
            font-size: 13px;
            color: var(--color-dark-muted);
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

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

        /* ==========================================================================
           区块 2: Steps (与机器人互动的基本指令) - 角色: steps
           ========================================================================== */
        .steps-pulse {
            padding: 100px 5%;
            background-color: var(--color-surface);
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

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

        .pulse-apex {
            text-align: center;
            margin-bottom: 60px;
        }

        .pulse-peak {
            font-size: clamp(28px, 3vw, 36px);
            font-weight: 800;
            margin: 0;
        }

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

        .pulse-tick {
            flex: 1 1 300px;
            padding: 40px 32px;
            background: var(--color-bg);
            border-radius: var(--radius-lg);
            text-align: center;
            border: 1px solid transparent;
            transition: var(--transition);
        }

        .pulse-tick:hover {
            background: var(--color-surface);
            border-color: var(--color-border);
            box-shadow: var(--shadow-md);
            transform: translateY(-5px);
        }

        .step-dot {
            width: 72px;
            height: 72px;
            margin: 0 auto 24px;
            background: var(--color-brand);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 16px rgba(168, 233, 93, 0.2);
        }

        .step-dot svg {
            width: 32px;
            height: 32px;
            fill: var(--color-dark);
        }

        .tick-peak {
            font-size: 20px;
            font-weight: 700;
            margin: 0 0 12px 0;
        }

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

        /* ==========================================================================
           区块 3: Showcase (电报实用机器人精选) - 角色: capability
           ========================================================================== */
        .capability-beacon {
            padding: 100px 5%;
            background-color: var(--color-bg);
        }

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

        .beacon-apex {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 48px;
            gap: 24px;
        }

        .beacon-peak {
            font-size: clamp(28px, 3vw, 36px);
            font-weight: 800;
            margin: 0;
            max-width: 500px;
        }

        .beacon-pack {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
        }

        .beacon-gram {
            background: var(--color-surface);
            border-radius: var(--radius-md);
            padding: 32px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border);
            display: flex;
            flex-direction: column;
            transition: var(--transition);
        }

        .beacon-gram:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
            border-color: var(--color-brand-dark);
        }

        .gram-mark {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            background: rgba(168, 233, 93, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .gram-mark svg {
            width: 28px;
            height: 28px;
            fill: var(--color-brand-dark);
        }

        .gram-peak {
            font-size: 22px;
            font-weight: 700;
            margin: 0 0 12px 0;
            color: var(--color-dark);
        }

        .gram-dash {
            font-size: 15px;
            color: var(--color-dark-muted);
            margin: 0;
            flex-grow: 1;
        }

        /* ==========================================================================
           页脚区域
           ========================================================================== */
        .tail-base {
            background-color: var(--color-surface);
            border-top: 1px solid var(--color-border);
            padding: 60px 5% 40px;
        }

        .tail-mesh {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

        .tail-pack {
            flex: 1 1 200px;
        }

        .tail-peak {
            font-size: 20px;
            font-weight: 800;
            margin: 0 0 20px 0;
            color: var(--color-dark);
        }

        .tail-dash {
            font-size: 14px;
            color: var(--color-dark-muted);
            margin: 0 0 16px 0;
        }

        .tail-track {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

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

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

        .tail-line {
            max-width: 1200px;
            margin: 40px auto 0;
            padding-top: 24px;
            border-top: 1px solid var(--color-border);
            text-align: center;
            font-size: 14px;
            color: var(--color-dark-muted);
        }

        /* ==========================================================================
           响应式断点
           ========================================================================== */
        @media (max-width: 992px) {
            .spark-fold {
                gap: 40px;
            }
            .spark-lens {
                min-height: 300px;
            }
            .wire-wave {
                display: none; /* 简化移动端头部处理，实际项目中应有汉堡菜单，此处按指引保留核心 */
            }
        }

        @media (max-width: 768px) {
            .spark-fold {
                flex-direction: column;
                text-align: center;
            }
            .spark-dash {
                margin: 0 auto 32px;
            }
            .spark-lens {
                width: 100%;
                min-height: 350px;
            }
            .pulse-pack {
                flex-direction: column;
            }
            .beacon-apex {
                flex-direction: column;
                align-items: flex-start;
            }
            .tail-mesh {
                flex-direction: column;
            }
        }

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