/* 基础变量体系 */
        :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;
            --radius-pill: 999px;
            
            --shadow-sm: 0 4px 12px rgba(18, 26, 15, 0.05);
            --shadow-md: 0 12px 32px rgba(18, 26, 15, 0.08);
            --shadow-lg: 0 24px 64px rgba(168, 233, 93, 0.15);
            
            --transition: all 0.35s ease;
            --space-layout: 1320px;
        }

        /* 全局重置与强制规则 */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--color-bg);
            color: var(--color-dark);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
        
        /* 强制文本换行规范 */
        .dash, .peak, p, span, div, article, aside, section {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        p, .dash { word-break: keep-all; line-height: 1.8; }
        h1, h2, h3, .peak { white-space: normal; }

        /* 强制Flex规范基类 */
        .flex-mesh {
            display: flex;
            flex-wrap: wrap;
        }
        .flex-mesh > * {
            min-width: 0;
        }

        /* 链接与交互基础 */
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        svg { display: block; max-width: 100%; height: auto; }
        img { display: block; max-width: 100%; height: auto; object-fit: cover; }

        /* 外层折叠结构 */
        .layout-fold {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* --- 导航区域 (Apex & 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 var(--color-border);
        }
        .mesh-wire {
            max-width: var(--space-layout);
            margin: 0 auto;
            padding: 16px 5%;
            justify-content: space-between;
            align-items: center;
        }
        .brand-mark {
            width: 120px;
            height: auto;
            flex-shrink: 0;
        }
        .wire-wave {
            gap: 32px;
            align-items: center;
        }
        .wire-hook {
            font-size: 15px;
            font-weight: 500;
            color: var(--color-dark-muted);
            padding: 8px 0;
            position: relative;
        }
        .wire-hook:hover, .wire-hook.active {
            color: var(--color-dark);
        }
        .wire-hook::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--color-brand);
            transform: scaleX(0);
            transition: var(--transition);
            transform-origin: right;
        }
        .wire-hook:hover::after, .wire-hook.active::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* --- 主内容区 (Core Mesh) --- */
        .core-mesh {
            flex: 1;
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        /* --- Hero区域 (Intro Spark - card_float Blueprint) --- */
        .intro-spark {
            position: relative;
            padding: 100px 5%;
            min-height: 85vh;
            justify-content: center; /* Fallback for small screens */
            align-items: center;
            overflow: hidden;
            background-color: var(--color-bg);
        }
        /* Blueprint: Large background gradient offset */
        .spark-bg-layer {
            position: absolute;
            top: 0;
            right: 0;
            width: 65%;
            height: 100%;
            background: linear-gradient(135deg, #eef9e3 0%, #c4f08e 100%);
            border-bottom-left-radius: 120px;
            z-index: 1;
        }
        .spark-bg-layer::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: radial-gradient(var(--color-surface) 1px, transparent 1px);
            background-size: 24px 24px;
            opacity: 0.3;
        }
        /* Blueprint: Floating Card overlapping edge */
        .spark-gram {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 680px;
            background: var(--color-surface);
            padding: 64px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            margin-right: auto; /* Push to left */
            margin-left: max(5%, calc((100% - var(--space-layout)) / 2));
        }
        .spark-peak {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }
        .spark-dash {
            font-size: clamp(16px, 1.5vw, 18px);
            color: var(--color-dark-muted);
            margin-bottom: 40px;
        }
        .fire-tap {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            background-color: var(--color-brand);
            color: var(--color-dark);
            font-weight: 600;
            font-size: 16px;
            border-radius: var(--radius-pill);
            box-shadow: 0 8px 24px rgba(168, 233, 93, 0.4);
            transition: var(--transition);
        }
        .fire-tap:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(168, 233, 93, 0.5);
            background-color: var(--color-brand-dark);
        }

        /* --- 核心能力展示区域 (Capability Pack) --- */
        .capability-pack {
            padding: 120px 5%;
            max-width: var(--space-layout);
            margin: 0 auto;
            width: 100%;
            gap: 64px;
            align-items: stretch;
        }
        .capability-track-left {
            flex: 1 1 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .mesh-peak {
            font-size: clamp(28px, 3vw, 36px);
            font-weight: 700;
            margin-bottom: 24px;
        }
        .mesh-dash {
            font-size: 18px;
            color: var(--color-dark-muted);
            margin-bottom: 48px;
        }
        .feature-tick {
            display: flex;
            gap: 20px;
            margin-bottom: 32px;
            padding: 24px;
            background: var(--color-surface);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .feature-tick:hover {
            transform: translateX(8px);
            border-color: var(--color-brand);
            box-shadow: var(--shadow-md);
        }
        .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: var(--color-dark);
        }
        .feature-peak {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .feature-dash {
            font-size: 14px;
            color: var(--color-dark-muted);
        }
        
        .capability-track-right {
            flex: 1 1 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .capability-track-right::before {
            content: '';
            position: absolute;
            width: 80%;
            height: 80%;
            background: var(--color-brand);
            border-radius: var(--radius-lg);
            opacity: 0.2;
            filter: blur(60px);
            z-index: 0;
        }
        .gallery-lens {
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            position: relative;
            z-index: 1;
            width: 100%;
        }

        /* --- 网页版对比区域 (Comparison Fold) --- */
        .comparison-fold {
            background-color: var(--color-dark);
            color: var(--color-surface);
            padding: 100px 5%;
            margin: 40px 0;
        }
        .comparison-mesh {
            max-width: var(--space-layout);
            margin: 0 auto;
            gap: 40px;
            align-items: center;
            justify-content: space-between;
        }
        .comparison-info {
            flex: 1 1 500px;
        }
        .comparison-peak {
            font-size: clamp(26px, 3vw, 32px);
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--color-brand);
        }
        .comparison-dash {
            font-size: 16px;
            color: #a0aab5;
            max-width: 600px;
        }
        .comparison-fire {
            flex: 0 0 auto;
        }
        .secondary-tap {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            background-color: transparent;
            color: var(--color-brand);
            border: 2px solid var(--color-brand);
            font-weight: 600;
            border-radius: var(--radius-pill);
            transition: var(--transition);
        }
        .secondary-tap:hover {
            background-color: var(--color-brand);
            color: var(--color-dark);
        }

        /* --- 站内导航承接区域 (Pathway Track) --- */
        .pathway-track {
            padding: 80px 5% 120px;
            max-width: var(--space-layout);
            margin: 0 auto;
            width: 100%;
        }
        .pathway-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 64px;
        }
        .pathway-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }
        .pathway-gram {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .pathway-gram::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 4px;
            height: 100%;
            background: var(--color-brand);
            transform: scaleY(0);
            transition: var(--transition);
            transform-origin: bottom;
        }
        .pathway-gram:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
        }
        .pathway-gram:hover::before {
            transform: scaleY(1);
        }
        .pathway-dot {
            width: 56px;
            height: 56px;
            background: var(--color-bg);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--color-dark-muted);
        }
        .pathway-peak {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .pathway-dash {
            font-size: 15px;
            color: var(--color-dark-muted);
            flex: 1;
            margin-bottom: 24px;
        }
        .pathway-hook {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--color-dark);
            font-size: 14px;
            align-self: flex-start;
        }
        .pathway-hook svg {
            transition: var(--transition);
        }
        .pathway-gram:hover .pathway-hook svg {
            transform: translateX(4px);
            color: var(--color-brand-dark);
        }

        /* --- 页脚区域 (Bottom Base) --- */
        .bottom-base {
            background-color: var(--color-surface);
            border-top: 1px solid var(--color-border);
            padding: 64px 5% 32px;
        }
        .base-mesh {
            max-width: var(--space-layout);
            margin: 0 auto;
            justify-content: space-between;
            gap: 48px;
        }
        .base-brand-peak {
            font-size: 24px;
            font-weight: 800;
            color: var(--color-dark);
            margin-bottom: 16px;
            letter-spacing: 1px;
        }
        .base-dash {
            font-size: 14px;
            color: var(--color-dark-muted);
            max-width: 300px;
        }
        .base-links {
            display: flex;
            gap: 48px;
        }
        .base-pack {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .base-pack-peak {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--color-dark);
            margin-bottom: 8px;
        }
        .base-hook {
            font-size: 14px;
            color: var(--color-dark-muted);
        }
        .base-hook:hover {
            color: var(--color-brand-dark);
        }
        .base-tail {
            max-width: var(--space-layout);
            margin: 48px auto 0;
            padding-top: 24px;
            border-top: 1px solid var(--color-border);
            text-align: center;
            font-size: 13px;
            color: var(--color-dark-muted);
        }

        /* --- 响应式断点 --- */
        @media (max-width: 1024px) {
            .spark-bg-layer { width: 100%; border-radius: 0; opacity: 0.5; }
            .spark-gram { margin: 0 auto; text-align: center; padding: 48px 32px; }
            .capability-pack { gap: 48px; }
        }
        @media (max-width: 768px) {
            .wire-wave { display: none; /* Mobile menu logic would go here, hidden for pure HTML layout simplicity if not explicitly requested, or just stack them */ }
            .mesh-wire { flex-direction: column; gap: 16px; }
            .wire-wave { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
            
            .capability-track-left, .capability-track-right { flex-basis: 100%; }
            .comparison-info { text-align: center; }
            .comparison-mesh { justify-content: center; }
            .pathway-grid { grid-template-columns: 1fr; }
            .base-mesh { flex-direction: column; align-items: center; text-align: center; }
            .base-links { flex-direction: column; gap: 32px; align-items: center; }
            .base-dash { max-width: 100%; }
        }

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