:root {
            --color-primary: #4a8ed7;
            --color-primary-dark: #3a75b8;
            --color-primary-light: #e6f0fa;
            --color-bg-base: #f8fafc;
            --color-bg-surface: #ffffff;
            --color-bg-alt: #f1f5f9;
            --color-text-main: #1e293b;
            --color-text-muted: #64748b;
            --color-border: #e2e8f0;
            --color-success: #10b981;
            
            --radius-ui: 20px;
            --radius-pulse: 9999px;
            
            --shadow-soft: 0 4px 10px -5px rgba(15, 23, 42, 0.05);
            --shadow-float: 0 10px 30px -10px rgba(74, 142, 215, 0.15), 0 4px 10px -5px rgba(15, 23, 42, 0.05);
            --shadow-pulse: 0 4px 14px 0 rgba(74, 142, 215, 0.39);
            
            --transition: all 0.25s ease;
        }

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

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

        /* Base Typography */
        h1, h2, h3, h4, h5, h6 {
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
            color: #0f172a;
        }

        p, span, a {
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* --- Header Styles (Reused from Contract) --- */
        .sole {
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--color-border);
        }
        .sole-pod {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            min-width: 0;
        }
        .cipher {
            display: flex;
            align-items: center;
            min-width: 0;
        }
        .cipher img {
            height: 32px;
            width: auto;
        }
        .route {
            display: flex;
            gap: 2rem;
            align-items: center;
            flex-wrap: wrap;
            min-width: 0;
        }
        .crest {
            font-weight: 500;
            color: var(--color-text-muted);
            transition: var(--transition);
            min-width: 0;
        }
        .crest:hover {
            color: var(--color-primary);
        }
        .crest.active {
            color: var(--color-primary);
            font-weight: 600;
        }

        /* --- Main Layout --- */
        .tunnel-core {
            display: flex;
            flex-direction: column;
            width: 100%;
            min-width: 0;
        }

        /* --- Hero Portal (Acquire) --- */
        .portal-portal {
            padding: 100px 2rem;
            background: linear-gradient(135deg, var(--color-bg-base) 0%, #eef2f6 100%);
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
            position: relative;
            overflow: hidden;
        }
        
        .pod-portal {
            max-width: 1200px;
            width: 100%;
            display: flex;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
            min-width: 0;
        }

        .band-portal-chain {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .apex-mega {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .chain-lead {
            font-size: 1.25rem;
            color: var(--color-text-muted);
            line-height: 1.6;
        }

        .band-pulse {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            min-width: 0;
            margin-top: 1rem;
        }

        .pulse-primary {
            padding: 1rem 2.5rem;
            border-radius: var(--radius-pulse);
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            background-color: var(--color-primary);
            color: white;
            box-shadow: var(--shadow-pulse);
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            min-width: 0;
        }

        .pulse-primary:hover {
            transform: translateY(-2px);
            background-color: var(--color-primary-dark);
            box-shadow: 0 6px 20px 0 rgba(74, 142, 215, 0.5);
        }

        .pulse-secondary {
            padding: 1rem 2rem;
            border-radius: var(--radius-pulse);
            font-weight: 600;
            border: 1px solid var(--color-border);
            background-color: transparent;
            color: var(--color-text-main);
            cursor: pointer;
            transition: var(--transition);
            min-width: 0;
        }

        .pulse-secondary:hover {
            background-color: var(--color-bg-alt);
            border-color: var(--color-text-muted);
        }

        .mesh-pod-portal {
            flex: 1;
            min-width: 320px;
            position: relative;
        }

        /* Data UI Visual Carrier Effect */
        .mesh-pod-portal::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: 20px;
            bottom: 20px;
            background: linear-gradient(135deg, var(--color-primary-light) 0%, transparent 100%);
            border-radius: var(--radius-ui);
            z-index: 0;
            opacity: 0.5;
        }

        .mesh-portal {
            position: relative;
            z-index: 1;
            border-radius: var(--radius-ui);
            box-shadow: var(--shadow-float);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        /* --- Platforms Portal (Comparison) --- */
        .portal-platforms {
            padding: 80px 2rem;
            background-color: var(--color-bg-surface);
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
        }

        .pod-platforms {
            max-width: 1200px;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 3rem;
            min-width: 0;
        }

        .band-apex {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            min-width: 0;
        }

        .apex-tunnel {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 700;
        }

        .chain-tunnel {
            color: var(--color-text-muted);
            max-width: 600px;
            font-size: 1.1rem;
        }

        .band-matrix {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            width: 100%;
        }

        .node-os {
            background: var(--color-bg-surface);
            padding: 2.5rem 2rem;
            border-radius: var(--radius-ui);
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--color-border);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: var(--transition);
            min-width: 0;
            gap: 1.5rem;
        }

        .node-os:hover {
            box-shadow: var(--shadow-float);
            transform: translateY(-5px);
            border-color: var(--color-primary-light);
        }

        .glyph-os {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--color-bg-alt);
            border-radius: 16px;
            color: var(--color-primary);
        }

        .apex-node {
            font-size: 1.25rem;
            font-weight: 700;
        }

        .chain-meta {
            font-size: 0.875rem;
            color: var(--color-text-muted);
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .pulse-download {
            margin-top: auto;
            width: 100%;
            padding: 0.75rem;
            border-radius: 12px;
            font-weight: 600;
            border: 1px solid var(--color-primary);
            color: var(--color-primary);
            background: transparent;
            cursor: pointer;
            transition: var(--transition);
        }

        .pulse-download:hover {
            background: var(--color-primary);
            color: white;
        }

        /* --- Sync Features (Div Container) --- */
        .tunnel-sync {
            padding: 80px 2rem;
            background-color: var(--color-bg-base);
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
        }

        .pod-sync {
            max-width: 1200px;
            width: 100%;
            display: flex;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
            background: var(--color-bg-surface);
            border-radius: var(--radius-ui);
            padding: 3rem;
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--color-border);
            min-width: 0;
        }

        .mesh-pod-sync {
            flex: 1;
            min-width: 300px;
        }

        .mesh-sync {
            border-radius: 16px;
            box-shadow: var(--shadow-float);
        }

        .band-sync-chain {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .band-features {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
            min-width: 0;
        }

        .lens-feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            min-width: 0;
        }

        .glyph-check {
            width: 24px;
            height: 24px;
            color: var(--color-success);
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* --- FAQ Guide (Aside Container) --- */
        .zone-guide {
            padding: 80px 2rem;
            background-color: var(--color-bg-surface);
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
            border-top: 1px solid var(--color-border);
        }

        .pod-guide {
            max-width: 800px;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 2rem;
            min-width: 0;
        }

        .band-faq {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            min-width: 0;
        }

        .lens-faq {
            background: var(--color-bg-base);
            border-radius: 12px;
            border: 1px solid var(--color-border);
            overflow: hidden;
            min-width: 0;
        }

        .apex-faq {
            padding: 1.25rem 1.5rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            transition: var(--transition);
        }

        .apex-faq:hover {
            background: var(--color-bg-alt);
        }

        .chain-faq {
            padding: 0 1.5rem 1.25rem 1.5rem;
            color: var(--color-text-muted);
            border-top: 1px solid transparent;
        }

        details[open] .chain-faq {
            border-top-color: var(--color-border);
            padding-top: 1.25rem;
        }

        details > summary {
            list-style: none;
        }
        details > summary::-webkit-details-marker {
            display: none;
        }
        .glyph-seal {
            width: 20px;
            height: 20px;
            color: var(--color-text-muted);
            transition: transform 0.3s ease;
        }
        details[open] .glyph-seal {
            transform: rotate(180deg);
        }

        /* --- Footer --- */
        .base-jolt {
            background-color: #0f172a;
            color: #94a3b8;
            padding: 4rem 2rem 2rem;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
        }

        .base-pod {
            max-width: 1200px;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 3rem;
            min-width: 0;
        }

        .apex-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .band-links {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            min-width: 0;
        }

        .crest-base {
            transition: var(--transition);
        }
        .crest-base:hover {
            color: #ffffff;
        }

        .crown-legal {
            border-top: 1px solid #1e293b;
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: 0.875rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .sole-pod {
                flex-direction: column;
                gap: 1rem;
            }
            .route {
                justify-content: center;
                gap: 1rem;
            }
            .pod-portal, .pod-sync {
                flex-direction: column;
            }
            .portal-portal, .portal-platforms, .tunnel-sync, .zone-guide {
                padding: 3rem 1.5rem;
            }
            .band-pulse {
                flex-direction: column;
            }
            .pulse-primary, .pulse-secondary {
                width: 100%;
                justify-content: center;
            }
            .pod-sync {
                padding: 1.5rem;
            }
        }

.route-sole{
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
            transition: all 0.25s ease;
        }

.route-sole .route-sole-pod{
            display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
            height: 80px; min-width: 0; max-width: 1320px; margin: 0 auto; padding: 0 2rem;
        }

.route-sole .route-cipher img{ height: 32px; width: auto; object-fit: contain; }

.route-sole .route-route{ display: flex; flex-wrap: wrap; gap: 2.5rem; align-items: center; min-width: 0; }

.route-sole .route-crest{
            text-decoration: none; color: #64748b;
            font-weight: 500; font-size: 0.95rem; transition: all 0.25s ease;
            position: relative; padding: 0.5rem 0;
        }

.route-sole .route-crest:hover, .route-sole .route-crest:focus{ color: #4a8ed7; }

.route-sole .route-crest.active{ color: #1e293b; font-weight: 600; }

.route-sole .route-crest.active::after{
            content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
            background-color: #4a8ed7; border-radius: 2px;
        }

@media (max-width: 768px){.route-sole .route-sole-pod{ height: auto; padding: 1rem 2rem; flex-direction: column; gap: 1rem; }

.route-sole .route-route{ width: 100%; justify-content: center; gap: 1.5rem; }}

@media (max-width: 480px){.route-sole .route-route{ gap: 1rem; flex-wrap: wrap; }

.route-sole .route-crest{ font-size: 0.85rem; }}

.route-sole {
    background: rgb(255, 255, 255);
    background-image: none;
}

.anchor-jolt {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text-main);
}
.anchor-jolt,
.anchor-jolt *,
.anchor-jolt *::before,
.anchor-jolt *::after {
    box-sizing: border-box;
}

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

.anchor-jolt p,
.anchor-jolt h1,
.anchor-jolt h2,
.anchor-jolt h3,
.anchor-jolt h4,
.anchor-jolt h5,
.anchor-jolt h6 {
    text-decoration: none;
}

.anchor-jolt img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

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

.anchor-jolt a,
.anchor-jolt a:hover,
.anchor-jolt a:focus,
.anchor-jolt a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.anchor-jolt{
            background-color: #0f172a; color: #cbd5e1;
            padding: 5rem 0 2rem 0; border-top: 1px solid #1e293b;
        }

.anchor-jolt .anchor-jolt-pod{
            max-width: 1320px; margin: 0 auto; padding: 0 2rem;
            display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 4rem;
        }

.anchor-jolt .anchor-base-brand{ font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 1.5rem; display: block; }

.anchor-jolt .anchor-jolt-apex{ color: white; font-size: 1.1rem; font-weight: 600; margin-bottom: 1.5rem; }

.anchor-jolt .anchor-jolt-band{ list-style: none; display: flex; flex-direction: column; gap: 1rem; }

.anchor-jolt .anchor-anchor{ color: #94a3b8; text-decoration: none; transition: all 0.25s ease; }

.anchor-jolt .anchor-anchor:hover, .anchor-jolt .anchor-anchor:focus{ color: white; padding-left: 5px; }

.anchor-jolt .anchor-jolt-bottom{
            max-width: 1320px; margin: 4rem auto 0 auto; padding: 2rem 2rem 0 2rem;
            border-top: 1px solid #1e293b; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
            font-size: 0.875rem; color: #64748b;
        }