/* CSS Variables - Inherited from Homepage Visual Family */
        :root {
            --color-brand: #a8e95d;
            --color-brand-dark: #8cc449;
            --color-brand-light: #d4f4ae;
            --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 12px 32px rgba(18, 26, 15, 0.08);
            --shadow-brand: 0 8px 24px rgba(168, 233, 93, 0.4);
            --transition: 0.35s ease;
            --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        /* Reset & Base */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: var(--font-main);
            background-color: var(--color-bg);
            color: var(--color-dark);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Core Utilities */
        .flex-mesh {
            display: flex;
            flex-wrap: wrap;
        }
        .flex-mesh > * {
            min-width: 0;
        }
        .word-fold {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        .keep-all {
            word-break: keep-all;
        }
        
        /* Layout Wrappers */
        .fold-mesh {
            display: block;
            width: 100%;
        }
        .core-route {
            display: block;
            width: 100%;
            min-height: 60vh;
        }
        .band-limit {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
        }

        /* Typography */
        h1, h2, h3, h4 {
            white-space: normal;
            color: var(--color-dark);
        }
        .peak-huge {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 24px;
        }
        .peak-large {
            font-size: clamp(24px, 3vw, 36px);
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: -0.01em;
            margin-bottom: 20px;
        }
        .dash-lead {
            font-size: clamp(16px, 2vw, 18px);
            color: var(--color-dark-muted);
            margin-bottom: 32px;
        }

        /* Component: Buttons */
        .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: 18px;
            text-decoration: none;
            border-radius: 999px;
            box-shadow: var(--shadow-brand);
            transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
            border: none;
            cursor: pointer;
            gap: 12px;
        }
        .fire-tap:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(168, 233, 93, 0.5);
            background-color: var(--color-brand-light);
        }
        .ghost-tap {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 24px;
            background-color: transparent;
            color: var(--color-dark);
            font-weight: 500;
            font-size: 15px;
            text-decoration: none;
            border-radius: 999px;
            border: 2px solid var(--color-border);
            transition: all var(--transition);
            gap: 8px;
        }
        .ghost-tap:hover {
            border-color: var(--color-brand);
            background-color: rgba(168, 233, 93, 0.1);
        }

        /* SVG Icons Base */
        .dot-vector {
            width: 24px;
            height: 24px;
            fill: currentColor;
            flex-shrink: 0;
        }

        /* --- Header / Nav (Strictly Inherited) --- */
        .top-apex {
            background-color: rgba(247, 251, 245, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--color-border);
        }
        .mesh-wire {
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px 5%;
            justify-content: space-between;
            align-items: center;
        }
        .brand-mark img {
            height: 36px;
            display: block;
        }
        .wire-wave {
            gap: 32px;
            align-items: center;
        }
        .wire-hook {
            text-decoration: none;
            color: var(--color-dark-muted);
            font-weight: 500;
            font-size: 16px;
            transition: color var(--transition);
            position: relative;
        }
        .wire-hook:hover {
            color: var(--color-dark);
        }
        .wire-hook.active {
            color: var(--color-dark);
            font-weight: 700;
        }
        .wire-hook.active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 3px;
            background-color: var(--color-brand);
            border-radius: 2px;
        }

        /* --- Section 1: Acquire (Hero Download) --- */
        .intro-spark {
            padding: 80px 0 100px;
            background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
            position: relative;
            overflow: hidden;
        }
        .spark-fold {
            justify-content: space-between;
            align-items: center;
            gap: 48px;
        }
        .spark-dash-pack {
            flex: 1 1 500px;
            z-index: 2;
        }
        .spark-lens-pack {
            flex: 1 1 500px;
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transform: translateY(0);
            transition: transform var(--transition);
        }
        .spark-lens-pack:hover {
            transform: translateY(-8px);
        }
        .spark-lens {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            aspect-ratio: 16/10;
        }
        .detect-note {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background-color: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: 999px;
            font-size: 14px;
            color: var(--color-dark-muted);
            margin-bottom: 24px;
            font-weight: 500;
        }
        .detect-note svg {
            color: var(--color-brand-dark);
        }

        /* --- Section 2: Platform Matrix --- */
        .platform-beacon {
            padding: 80px 0;
            background-color: var(--color-surface);
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
            box-shadow: 0 -10px 40px rgba(0,0,0,0.02);
        }
        .beacon-apex {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }
        .matrix-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
            margin-bottom: 60px;
        }
        .gram-tape {
            padding: 32px;
            background: var(--color-bg);
            border-radius: var(--radius-md);
            border: 1px solid var(--color-border);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .gram-tape:hover {
            background: var(--color-surface);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
            border-color: var(--color-brand);
        }
        .gram-apex {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }
        .gram-seal {
            width: 48px;
            height: 48px;
            background-color: var(--color-surface);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-sm);
            color: var(--color-dark);
        }
        .gram-seal svg {
            width: 28px;
            height: 28px;
        }
        .gram-peak {
            font-size: 20px;
            font-weight: 700;
        }
        .gram-info {
            flex-grow: 1;
        }
        .gram-meta {
            font-size: 14px;
            color: var(--color-dark-muted);
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
        }
        .gram-log {
            font-size: 14px;
            color: var(--color-dark-muted);
            margin-bottom: 24px;
            padding-top: 16px;
            border-top: 1px dashed var(--color-border);
        }
        .matrix-lens-fold {
            width: 100%;
            border-radius: var(--radius-md);
            overflow: hidden;
            margin-top: 40px;
            background-color: var(--color-bg);
            padding: 16px;
        }
        .matrix-lens {
            width: 100%;
            height: auto;
            border-radius: var(--radius-sm);
            display: block;
        }

        /* --- Section 3: Verification Steps --- */
        .verify-pulse {
            padding: 80px 0;
            background-color: var(--color-bg);
        }
        .pulse-fold {
            max-width: 900px;
            margin: 0 auto;
            background-color: var(--color-surface);
            padding: 48px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
        }
        .pulse-apex {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--color-border);
        }
        .pulse-apex svg {
            width: 32px;
            height: 32px;
            color: var(--color-brand-dark);
        }
        .step-track {
            list-style: none;
            counter-reset: counter;
        }
        .step-tick {
            position: relative;
            padding-left: 56px;
            margin-bottom: 32px;
        }
        .step-tick:last-child {
            margin-bottom: 0;
        }
        .step-tick::before {
            counter-increment: counter;
            content: counter(counter);
            position: absolute;
            left: 0;
            top: 0;
            width: 36px;
            height: 36px;
            background-color: var(--color-brand-light);
            color: var(--color-dark);
            font-weight: 700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }
        .tick-peak {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .tick-dash {
            color: var(--color-dark-muted);
            font-size: 15px;
        }
        .code-block {
            display: block;
            background-color: var(--color-bg);
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            font-family: monospace;
            font-size: 14px;
            color: var(--color-dark);
            margin-top: 12px;
            border: 1px solid var(--color-border);
            overflow-x: auto;
        }

        /* --- Footer --- */
        .bottom-tail {
            background-color: var(--color-dark);
            color: var(--color-surface);
            padding: 60px 0 40px;
        }
        .tail-mesh {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 32px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 32px;
            margin-bottom: 32px;
        }
        .tail-peak {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: 1px;
            color: var(--color-surface);
        }
        .tail-wave {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .tail-hook {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 15px;
            transition: color var(--transition);
        }
        .tail-hook:hover {
            color: var(--color-brand);
        }
        .tail-earth {
            text-align: center;
            color: rgba(255,255,255,0.5);
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .wire-wave {
                display: none; /* Mobile nav behavior would be handled by JS usually, hiding for static purity unless structural */
            }
            .spark-fold {
                flex-direction: column;
                text-align: center;
            }
            .detect-note {
                margin: 0 auto 24px;
            }
            .matrix-grid {
                grid-template-columns: 1fr;
            }
            .pulse-fold {
                padding: 32px 24px;
            }
            .tail-mesh {
                flex-direction: column;
                text-align: 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%; }}