        :root {
            --bg-primary: #0b0914;
            --bg-secondary: #12101f;
            --bg-card: #16132b;
            --bg-elevated: #1d1838;
            --text-primary: #f0edf7;
            --text-secondary: #a8a0c0;
            --text-muted: #6e6590;
            --brand: #00e5b0;
            --brand-glow: rgba(0, 229, 176, 0.35);
            --brand-dim: rgba(0, 229, 176, 0.12);
            --accent: #8b5cf6;
            --accent-glow: rgba(139, 92, 246, 0.3);
            --accent-dim: rgba(139, 92, 246, 0.1);
            --gradient-main: linear-gradient(135deg, #00e5b0 0%, #7c6cf0 50%, #8b5cf6 100%);
            --gradient-hero: linear-gradient(160deg, #0b0914 0%, #12102a 40%, #0f0c20 100%);
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-glow: rgba(0, 229, 176, 0.25);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;
            --radius-xl: 32px;
            --font-sans: 'Inter', 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
            --shadow-glow: 0 0 40px rgba(0, 229, 176, 0.15);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: var(--font-sans);
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { color: var(--brand); text-decoration: none; transition: color 0.25s ease; }
        a:hover { color: #5ff5cf; }
        .skip-link { position: absolute; left: -999px; top: 0; background: var(--brand); color: #0b0914; padding: 10px 20px; border-radius: 0 0 var(--radius-sm) 0; font-weight: 700; z-index: 9999; }
        .skip-link:focus { left: 0; }
        .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

        /* Header (与首页一致) */
        .header {
            position: sticky; top: 0; z-index: 1000;
            background: rgba(11, 9, 20, 0.88);
            backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border-subtle);
        }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
        .logo { display: flex; align-items: center; gap: 10px; font-size: 1.35rem; font-weight: 800; color: var(--text-primary); letter-spacing: -0.5px; white-space: nowrap; }
        .logo .logo-mark { width: 34px; height: 34px; border-radius: 10px; background: var(--gradient-main); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 900; color: #0b0914; box-shadow: 0 0 20px var(--brand-glow); }
        .nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
        .nav a { padding: 8px 14px; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 500; color: var(--text-secondary); transition: all 0.25s ease; white-space: nowrap; }
        .nav a:hover { color: var(--text-primary); background: var(--bg-elevated); }
        .nav a.is-active { color: var(--brand); background: var(--brand-dim); font-weight: 600; }
        .header-cta { display: flex; align-items: center; gap: 10px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 20px; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 600; border: none; cursor: pointer; transition: all 0.3s ease; white-space: nowrap; text-align: center; }
        .btn-primary { background: var(--brand); color: #0b0914; box-shadow: 0 0 24px var(--brand-glow); }
        .btn-primary:hover { background: #5ff5cf; color: #0b0914; box-shadow: 0 0 36px var(--brand-glow); transform: translateY(-1px); }
        .btn-ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--border-subtle); }
        .btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
        .btn-outline { background: transparent; color: var(--brand); border: 1.5px solid var(--brand); }
        .btn-outline:hover { background: var(--brand-dim); border-color: var(--brand); }
        .btn-lg { padding: 14px 30px; font-size: 1rem; border-radius: var(--radius-md); }
        .menu-btn { display: none; background: var(--bg-elevated); border: 1px solid var(--border-subtle); color: var(--text-primary); font-size: 1.2rem; width: 42px; height: 42px; border-radius: var(--radius-sm); cursor: pointer; align-items: center; justify-content: center; }
        .menu-btn:hover { border-color: var(--brand); color: var(--brand); }

        /* 新页面专用 hero */
        .hero-feature {
            background: var(--gradient-hero);
            padding: 70px 0 60px;
            position: relative;
            overflow: hidden;
        }
        .hero-feature::before { content: ''; position: absolute; top: -150px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%); pointer-events: none; }
        .hero-feature::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 500px; height: 500px; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%); pointer-events: none; }
        .feature-hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; position: relative; z-index: 1; }
        .eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 50px; background: var(--brand-dim); color: var(--brand); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 18px; border: 1px solid var(--border-glow); }
        .eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); animation: pulse-dot 2s infinite; }
        @keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }
        .feature-hero-grid h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.2; letter-spacing: -1px; margin-bottom: 18px; }
        .feature-hero-grid h1 .highlight { background: var(--gradient-main); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
        .lead { font-size: 1.05rem; color: var(--text-secondary); max-width: 520px; margin-bottom: 30px; }
        .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
        .hero-meta { display: flex; gap: 24px; flex-wrap: wrap; font-size: 0.85rem; color: var(--text-muted); }
        .hero-meta span { display: flex; align-items: center; gap: 6px; }
        .hero-meta b { color: var(--brand); font-weight: 700; }

        /* 动态优化仪表盘视觉 */
        .dynamic-dashboard {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 20px 22px 24px;
            width: 100%;
            max-width: 400px;
            box-shadow: var(--shadow-card), 0 0 60px var(--brand-glow);
            position: relative;
        }
        .dynamic-dashboard::before { content: ''; position: absolute; inset: -1px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--brand-glow), transparent 40%, var(--accent-glow)); z-index: -1; opacity: 0.5; }
        .dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
        .dash-title { font-size: 0.8rem; font-weight: 600; color: var(--brand); }
        .live-badge { font-size: 0.7rem; background: var(--brand-dim); color: var(--brand); padding: 2px 10px; border-radius: 50px; border: 1px solid var(--border-glow); }
        .metric-row { display: flex; justify-content: space-between; background: var(--bg-elevated); border-radius: var(--radius-sm); padding: 8px 12px; margin-bottom: 8px; font-size: 0.8rem; }
        .metric-row .metric-label { color: var(--text-secondary); }
        .metric-row .metric-value { color: var(--text-primary); font-weight: 700; }
        .switch-animation { display: flex; align-items: center; justify-content: center; margin: 14px 0; gap: 8px; }
        .line-node { width: 40px; height: 6px; background: var(--brand); border-radius: 3px; opacity: 0.6; }
        .line-node.active { opacity: 1; box-shadow: 0 0 10px var(--brand-glow); }
        .arrow-switch { color: var(--brand); font-size: 1.2rem; }

        /* 通用 Section */
        .section { padding: 70px 0; }
        .section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
        .kicker { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--brand); background: var(--brand-dim); padding: 4px 14px; border-radius: 50px; margin-bottom: 14px; border: 1px solid var(--border-glow); }
        .section-head h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; }
        .section-head p { color: var(--text-secondary); font-size: 0.95rem; }

        /* 卡片网格 */
        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
        .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
        .card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 28px 24px; transition: all 0.35s ease; position: relative; overflow: hidden; }
        .card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-main); opacity: 0; transition: opacity 0.35s ease; }
        .card:hover { border-color: var(--border-glow); box-shadow: var(--shadow-glow); transform: translateY(-3px); }
        .card:hover::after { opacity: 1; }
        .icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--brand-dim); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--brand); border: 1px solid var(--border-glow); }
        .icon svg { width: 24px; height: 24px; }
        .card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
        .card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

        /* 时间线（无缝切换） */
        .timeline { display: flex; flex-direction: column; gap: 20px; position: relative; max-width: 700px; margin: 0 auto; }
        .timeline::before { content: ''; position: absolute; left: 24px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(to bottom, var(--brand), var(--accent)); opacity: 0.4; }
        .timeline-item { display: flex; gap: 20px; align-items: flex-start; position: relative; }
        .timeline-dot { width: 50px; height: 50px; border-radius: 50%; background: var(--bg-elevated); border: 2px solid var(--brand); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--brand); flex-shrink: 0; z-index: 1; }
        .timeline-content { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 20px; flex: 1; }
        .timeline-content h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
        .timeline-content p { font-size: 0.85rem; color: var(--text-muted); }

        /* 场景自适应卡片 */
        .scenario-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
        .scenario-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 20px 16px; text-align: center; transition: all 0.3s ease; }
        .scenario-card:hover { border-color: var(--brand); box-shadow: var(--shadow-glow); transform: translateY(-2px); }
        .scenario-emoji { font-size: 2.2rem; margin-bottom: 10px; }
        .scenario-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
        .scenario-card p { font-size: 0.78rem; color: var(--text-muted); }

        /* 对比表格 */
        .compare { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border-subtle); background: var(--bg-card); }
        .compare table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
        .compare th, .compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border-subtle); }
        .compare th { background: var(--bg-elevated); font-weight: 700; color: var(--text-primary); white-space: nowrap; }
        .compare th:first-child { color: var(--brand); }
        .compare td { color: var(--text-secondary); }
        .compare tr:last-child td { border-bottom: none; }
        .compare tr:hover td { background: rgba(255, 255, 255, 0.02); }

        /* CTA Band */
        .cta-band { background: var(--gradient-hero); padding: 70px 0; border-top: 1px solid var(--border-subtle); position: relative; overflow: hidden; }
        .cta-band::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%); pointer-events: none; }
        .cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 12px; }
        .cta-band p { color: var(--text-secondary); margin-bottom: 28px; }

        /* Footer (与首页一致) */
        .footer { background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); padding: 50px 0 24px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
        .footer-brand .logo { margin-bottom: 12px; }
        .footer-brand p { font-size: 0.85rem; color: var(--text-muted); max-width: 300px; }
        .footer h3 { font-size: 0.85rem; font-weight: 700; margin-bottom: 14px; color: var(--text-primary); letter-spacing: 0.5px; }
        .footer a { display: block; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; transition: color 0.25s ease; }
        .footer a:hover { color: var(--brand); }
        .copy { border-top: 1px solid var(--border-subtle); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.78rem; color: var(--text-muted); }

        /* 响应式 */
        @media (max-width: 1024px) {
            .grid-4, .grid-3, .scenario-grid { grid-template-columns: repeat(2, 1fr); }
            .grid-2 { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .feature-hero-grid { grid-template-columns: 1fr; gap: 36px; }
            .dynamic-dashboard { max-width: 320px; margin: 0 auto; }
        }
        @media (max-width: 768px) {
            .header-inner { height: auto; padding: 12px 0; flex-wrap: wrap; }
            .nav { display: none; width: 100%; flex-direction: column; background: var(--bg-secondary); border-radius: var(--radius-sm); padding: 12px; border: 1px solid var(--border-subtle); }
            .nav.open { display: flex; }
            .nav a { padding: 10px 14px; width: 100%; text-align: center; }
            .menu-btn { display: flex; }
            .header-cta .btn-ghost { display: none; }
            .grid-3, .grid-2, .scenario-grid, .timeline { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 24px; }
            .hero-feature { padding: 40px 0; }
            .section { padding: 48px 0; }
            .compare th, .compare td { padding: 12px 14px; font-size: 0.78rem; }
            .hero-actions { flex-direction: column; }
            .hero-actions .btn { width: 100%; }
            .hero-meta { gap: 14px; font-size: 0.78rem; }
            .timeline::before { left: 19px; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 16px; }
            .feature-hero-grid h1 { font-size: 1.6rem; }
            .card, .scenario-card { padding: 20px 16px; }
            .btn-lg { padding: 12px 22px; font-size: 0.9rem; }
        }