/* 变量与基础系统 */
        :root {
            --surface: #ffffff;
            --surface-alt: #f8fafc;
            --surface-dim: #f1f5f9;
            --primary: #2b35f5;
            --primary-hover: #1e25cc;
            --text-main: #0f172a;
            --text-muted: #64748b;
            --text-inverse: #ffffff;
            --radius-lg: 24px;
            --radius-md: 18px;
            --radius-sm: 12px;
            --shadow-soft: 0 12px 36px -8px rgba(43, 53, 245, 0.08);
            --shadow-hover: 0 20px 40px -12px rgba(43, 53, 245, 0.15);
            --transition: 0.35s ease;
            --case-width: 1200px;
        }

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

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

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

        /* 强制规范：文本与Flex */
        .relay, .apex, .cable, .deck, .spark, .pulse, .flare, .mesh, .root, .case, .node, .tape-eco, .gram {
            word-break: break-word;
            overflow-wrap: break-word;
        }

        p, span, div {
            word-break: keep-all;
        }

        h1, h2, h3, .lead-prime, .lead {
            white-space: normal;
        }

        /* 强制复用：导航栏样式 */
        .apex {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .cable {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: var(--case-width);
            margin: 0 auto;
            padding: 1rem 2rem;
            min-width: 0;
        }

        .mark {
            display: flex;
            align-items: center;
            min-width: 0;
        }

        .lens-mark {
            height: 32px;
            width: auto;
            display: block;
        }

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

        .dial {
            min-width: 0;
        }

        .cord {
            color: var(--text-muted);
            font-weight: 500;
            transition: color var(--transition);
        }

        .cord:hover {
            color: var(--primary);
        }

        .cord.active {
            color: var(--primary);
        }

        /* 通用容器 */
        .case {
            max-width: var(--case-width);
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

        /* 创意种子：split_diagonal 首屏 */
        .spark {
            min-height: 85vh;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            position: relative;
            background: linear-gradient(110deg, var(--surface-alt) 0%, var(--surface-alt) 55%, var(--surface-dim) 55%, var(--surface-dim) 100%);
            padding: 100px 0;
            overflow: hidden;
            min-width: 0;
        }

        .spark .case {
            position: relative;
            z-index: 2;
        }

        .spark .node {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
            min-width: 0;
        }

        .spark-ink {
            flex: 1 1 500px;
            min-width: 0;
        }

        .spark-ui {
            flex: 1 1 400px;
            min-width: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* 字体体系 */
        .lead-prime {
            color: var(--text-main);
            font-weight: 800;
            line-height: 1.2;
            font-size: clamp(2.5rem, 4vw, 4rem);
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
        }

        .lead {
            color: var(--text-main);
            font-weight: 700;
            line-height: 1.3;
            font-size: clamp(2rem, 3vw, 2.5rem);
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .lead-sub {
            color: var(--text-main);
            font-weight: 600;
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .ink {
            color: var(--text-muted);
            font-size: 1.125rem;
            margin-bottom: 2rem;
            max-width: 600px;
        }

        /* 按钮体系 */
        .belt {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            min-width: 0;
        }

        .tap-primary, .tap-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 1.125rem;
            transition: all var(--transition);
            min-width: 0;
        }

        .tap-primary {
            background: var(--primary);
            color: var(--text-inverse);
            box-shadow: 0 8px 24px rgba(43, 53, 245, 0.25);
        }

        .tap-primary:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(43, 53, 245, 0.35);
        }

        .tap-secondary {
            background: var(--surface);
            color: var(--text-main);
            border: 1px solid rgba(0,0,0,0.1);
        }

        .tap-secondary:hover {
            background: var(--surface-alt);
            border-color: rgba(0,0,0,0.15);
            transform: translateY(-2px);
        }

        /* Data UI 视觉承载 (代替图片) */
        .ui-mesh {
            width: 100%;
            max-width: 480px;
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            box-shadow: var(--shadow-hover);
            border: 1px solid rgba(0,0,0,0.03);
            position: relative;
        }

        .ui-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.5rem;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            min-width: 0;
        }

        .ui-row:last-child {
            border-bottom: none;
        }

        .ui-dot {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--surface-dim);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .ui-ink {
            flex: 1;
            min-width: 0;
        }

        .ui-belt {
            height: 8px;
            background: var(--surface-dim);
            border-radius: 4px;
            margin-top: 8px;
            width: 100%;
        }
        .ui-belt-fill {
            height: 100%;
            background: var(--primary);
            border-radius: 4px;
            width: 0;
            transition: width 1s ease 0.5s;
        }
        .ui-mesh:hover .ui-belt-fill {
            width: 100%;
        }

        /* 步骤区 */
        .pulse {
            padding: 6rem 0;
            background: var(--surface);
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

        .pulse .case > .node {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .tape-eco {
            background: var(--surface-alt);
            padding: 3rem 2rem;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(0,0,0,0.02);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .tape-eco:hover {
            box-shadow: var(--shadow-soft);
            background: var(--surface);
            transform: translateY(-5px);
        }

        .dot-large {
            width: 64px;
            height: 64px;
            border-radius: var(--radius-md);
            background: rgba(43, 53, 245, 0.1);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            font-size: 1.5rem;
            font-weight: 700;
        }

        /* 多版本对比区 */
        .flare {
            padding: 6rem 0;
            background: var(--surface-dim);
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

        .flare .node {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .gram {
            background: var(--surface);
            padding: 2.5rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .gram .lead-sub {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        /* 排错指南区 */
        .mesh {
            padding: 6rem 0;
            background: var(--surface);
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

        .mesh .node {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 3rem;
            max-width: 800px;
        }

        .dash {
            background: var(--surface-alt);
            border-radius: var(--radius-md);
            padding: 1.5rem 2rem;
            border: 1px solid rgba(0,0,0,0.03);
            transition: var(--transition);
        }

        .dash:hover {
            background: var(--surface);
            box-shadow: var(--shadow-soft);
        }

        .dash .lead-sub {
            margin-bottom: 0.5rem;
            color: var(--text-main);
        }

        .dash .ink {
            margin-bottom: 0;
            font-size: 1rem;
        }

        /* 页脚 */
        .root {
            background: var(--surface-alt);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(0,0,0,0.05);
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

        .earth {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 3rem;
            min-width: 0;
        }

        .base {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.875rem;
            border-top: 1px solid rgba(0,0,0,0.05);
            padding-top: 2rem;
            width: 100%;
        }

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

        .earth-lead {
            font-weight: 600;
            color: var(--text-main);
        }

        .earth-cord {
            color: var(--text-muted);
            transition: color var(--transition);
        }

        .earth-cord:hover {
            color: var(--primary);
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .spark {
                background: var(--surface-alt); /* 平板/手机取消斜切背景，保持简洁 */
                padding: 60px 0;
            }
            .spark-ui {
                order: -1;
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 768px) {
            .cable {
                padding: 1rem;
            }
            .deck {
                display: none; /* 简化演示，移动端菜单通常需要JS，这里按安全规则隐藏或平铺，改为底部平铺 */
                width: 100%;
                margin-top: 1rem;
                gap: 1rem;
                justify-content: center;
            }
            .apex:hover .deck {
                display: flex; /* 悬浮头部显示菜单 */
            }
            .lead-prime {
                font-size: 2.5rem;
            }
            .pulse, .flare, .mesh {
                padding: 4rem 0;
            }
        }

.cable-apex {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--ink-base);
}
.cable-apex,
.cable-apex *,
.cable-apex *::before,
.cable-apex *::after {
    box-sizing: border-box;
}

.cable-apex [role="navigation"],
.cable-apex div,
.cable-apex section,
.cable-apex article,
.cable-apex aside,
.cable-apex p,
.cable-apex h1,
.cable-apex h2,
.cable-apex h3,
.cable-apex h4,
.cable-apex h5,
.cable-apex h6,
.cable-apex a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

.cable-apex a.cable-cord {
    --aisite-shell-nav-padding: 0.5rem 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;
}

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

.cable-apex .cable-deck, .cable-apex .cable-cable{
            display: flex;
            flex-wrap: wrap;
        }

.cable-apex .cable-deck > *, .cable-apex .cable-cable > *{
            min-width: 0;
        }

.cable-apex{
            position: fixed;
            top: 0; left: 0; right: 0;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            z-index: 100;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

.cable-apex .cable-cable{
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            align-items: center;
            justify-content: space-between;
        }

.cable-apex .cable-mark{ flex: 0 0 auto; width: 140px; }

.cable-apex .cable-lens-mark{ height: 32px; width: auto; object-fit: contain; }

.cable-apex .cable-deck{ gap: 2rem; align-items: center; }

.cable-apex .cable-cord{
            font-size: 1rem;
            font-weight: 500;
            color: #334155;
            padding: 0.5rem 0;
            position: relative;
        }

.cable-apex .cable-cord::after{
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 0; height: 2px;
            background: #2b35f5;
            transition: all 0.35s ease;
        }

.cable-apex .cable-cord:hover, .cable-apex .cable-cord.active{ color: #2b35f5; }

.cable-apex .cable-cord:hover::after, .cable-apex .cable-cord.active::after{ width: 100%; }

@media (max-width: 768px){.cable-apex .cable-cable{ padding: 1rem; }

.cable-apex .cable-deck{ display: none;  }}

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

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

.base-root [role="navigation"],
.base-root div,
.base-root section,
.base-root article,
.base-root aside,
.base-root p,
.base-root h1,
.base-root h2,
.base-root h3,
.base-root h4,
.base-root h5,
.base-root h6,
.base-root a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

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

.base-root .base-earth, .base-root .base-base-cords, .base-root .base-node-base{
            display: flex;
            flex-wrap: wrap;
        }

.base-root .base-earth > *, .base-root .base-base-cords > *, .base-root .base-node-base > *{
            min-width: 0;
        }

.base-root{
            background: #ffffff;
            padding: 6rem 2rem 2rem;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

.base-root .base-earth{
            max-width: 1400px;
            margin: 0 auto;
            gap: 4rem;
            justify-content: space-between;
            margin-bottom: 4rem;
        }

.base-root .base-base-brand{ flex: 1 1 300px; }

.base-root .base-lead-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #0f172a;
            display: block;
            margin-bottom: 1rem;
        }

.base-root .base-ink-base{ color: #64748b; max-width: 300px; }

.base-root .base-base-cords{ flex: 2 1 600px; justify-content: flex-end; gap: 4rem; }

.base-root .base-node-base{ flex-direction: column; gap: 1rem; }

.base-root .base-lead-base{ font-weight: 700; color: #0f172a; margin-bottom: 0.5rem; display: block; }

.base-root .base-cord-base{ color: #64748b; }

.base-root .base-cord-base:hover{ color: #2b35f5; }

.base-root .base-base-legal{
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(0,0,0,0.05);
            text-align: center;
        }

.base-root .base-ink-ink{ color: #94a3b8; font-size: 0.875rem; }

@media (max-width: 768px){.base-root .base-base-cords{ justify-content: flex-start; }}