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

        :root {
            --bg: #f9f7fb;
            --bg-alt: #f3eff8;
            --ink: #1a102b;
            --ink-soft: #2d2340;
            --muted: #8b7d9e;
            --muted-light: #b8aec8;
            --primary: #7c5ce7;
            --primary-bright: #8b6cf6;
            --accent: #f472b6;
            --accent-soft: #f9a8d4;
            --accent-warm: #fb7185;
            --success: #34d399;
            --warning: #fbbf24;
            --rose: #f87171;
            --glass: rgba(255, 255, 255, .65);
            --glass-hover: rgba(255, 255, 255, .85);
            --line: rgba(124, 92, 231, .1);
            --line-bright: rgba(124, 92, 231, .2);
            --card-hover: rgba(244, 114, 182, .04);
            --glow-primary: rgba(124, 92, 231, .1);
            --glow-accent: rgba(244, 114, 182, .07);
            --shadow-sm: 0 2px 12px rgba(124, 92, 231, .05);
            --shadow-md: 0 8px 30px rgba(124, 92, 231, .08);
            --shadow-lg: 0 18px 50px rgba(124, 92, 231, .1);
            --radius-sm: 8px;
            --radius: 14px;
            --radius-lg: 20px;
            --radius-xl: 24px;
            --ease: cubic-bezier(.22, 1, .36, 1);
            --font-display: 'Syne', sans-serif;
            --font-body: 'Space Grotesk', sans-serif;
            --font-mono: 'DM Mono', monospace;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            overflow-x: hidden;
            -webkit-text-size-adjust: 100%
        }

        body {
            font-family: var(--font-body);
            background: var(--bg);
            color: var(--ink);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale
        }

        ::selection {
            background: #c4b5fd;
            color: #1a102b
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all .3s var(--ease)
        }
        ul {
            list-style: none
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 clamp(20px, 4vw, 60px)
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-display);
            font-weight: 800;
            letter-spacing: -.02em
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background:
                radial-gradient(ellipse 70% 50% at 15% 85%, rgba(139, 108, 246, .04), transparent),
                radial-gradient(ellipse 55% 45% at 85% 15%, rgba(244, 114, 182, .04), transparent),
                radial-gradient(ellipse 40% 35% at 50% 50%, rgba(124, 92, 231, .02), transparent)
        }

        /* 导航栏 */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            backdrop-filter: blur(16px) saturate(1.3);
            -webkit-backdrop-filter: blur(16px) saturate(1.3);
            border-bottom: 1px solid var(--line);
            background: rgba(249, 247, 251, .78)
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px
        }
        .logo {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 800;
            letter-spacing: .05em;
            background: linear-gradient(135deg, #7c5ce7, #8b6cf6, #f472b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            flex-shrink: 0
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 26px
        }
        .nav-right a {
            font-size: .8rem;
            font-weight: 500;
            color: var(--muted);
            position: relative;
            letter-spacing: .02em;
            white-space: nowrap
        }
        .nav-right a:hover {
            color: var(--primary)
        }
        .nav-right a.active {
            color: var(--primary);
            font-weight: 600
        }
        .nav-download {
            padding: 8px 18px;
            border-radius: 6px;
            border: 1px solid rgba(124, 92, 231, .35);
            color: #7c5ce7 !important;
            font-weight: 600;
            font-size: .8rem;
            transition: all .3s ease;
            white-space: nowrap
        }
        .nav-download:hover {
            background: rgba(124, 92, 231, .08);
            box-shadow: 0 0 20px rgba(124, 92, 231, .12)
        }
        .mobile-btn {
            display: none;
            background: none;
            border: none;
            color: var(--ink);
            font-size: 1.4rem;
            cursor: pointer;
            padding: 4px
        }

        /* Hero */
        .mega-hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
            z-index: 1;
            padding-top: 60px
        }
        .hero-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: clamp(80px, 10vh, 140px) clamp(20px, 4vw, 60px) clamp(80px, 10vh, 140px) clamp(20px, 6vw, 90px);
            position: relative
        }
        .hero-left::after {
            content: '';
            position: absolute;
            right: 0;
            top: 15%;
            bottom: 15%;
            width: 1px;
            background: linear-gradient(to bottom, transparent, var(--line), transparent)
        }
        .overline {
            font-family: var(--font-mono);
            font-size: .75rem;
            font-weight: 400;
            color: var(--primary);
            letter-spacing: .2em;
            text-transform: uppercase;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px
        }
        .overline::before {
            content: '';
            width: 28px;
            height: 1px;
            background: var(--primary)
        }
        .hero-h1 {
            font-size: clamp(2.8rem, 6.5vw, 5.8rem);
            line-height: .94;
            margin-bottom: 28px;
            position: relative;
            color: var(--ink-soft)
        }
        .hero-h1 .line {
            display: block;
            overflow: hidden
        }
        .hero-h1 .line span {
            display: inline-block
        }
        .hero-h1 .line:nth-child(2) span {
            background: linear-gradient(90deg, #7c5ce7, #8b6cf6, #f472b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }
        .hero-h1 .line:nth-child(3) span {
            color: var(--muted);
            -webkit-text-fill-color: var(--muted)
        }
        .hero-sub {
            font-size: 1rem;
            color: var(--muted);
            max-width: 460px;
            line-height: 1.8;
            margin-bottom: 40px
        }
        .hero-btns {
            display: flex;
            gap: 12px;
            flex-wrap: wrap
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 30px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, #7c5ce7, #8b6cf6);
            color: #fff;
            font-weight: 700;
            font-size: .9rem;
            font-family: var(--font-body);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all .3s var(--ease);
            box-shadow: 0 4px 20px rgba(124, 92, 231, .3)
        }
        .btn-primary:hover {
            background: linear-gradient(135deg, #8b6cf6, #9b7df8);
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(124, 92, 231, .4)
        }
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 30px;
            border-radius: var(--radius-sm);
            background: transparent;
            border: 1px solid var(--line-bright);
            color: var(--ink);
            font-weight: 600;
            font-size: .9rem;
            font-family: var(--font-body);
            cursor: pointer;
            transition: all .3s var(--ease)
        }
        .btn-ghost:hover {
            border-color: rgba(124, 92, 231, .35);
            background: rgba(124, 92, 231, .04)
        }
        .hero-right {
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center
        }
        .hero-art {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center
        }
        .hero-art-inner {
            position: relative;
            width: 320px;
            height: 320px
        }
        .hero-ring {
            position: absolute;
            border-radius: 50%;
            border: 2px solid transparent;
            animation: ringSpin 12s linear infinite
        }
        .hero-ring:nth-child(1) {
            inset: 0;
            border-top-color: rgba(124, 92, 231, .4);
            border-right-color: rgba(244, 114, 182, .25);
            animation-duration: 10s
        }
        .hero-ring:nth-child(2) {
            inset: 30px;
            border-bottom-color: rgba(139, 108, 246, .35);
            border-left-color: rgba(244, 114, 182, .3);
            animation-duration: 14s;
            animation-direction: reverse
        }
        .hero-ring:nth-child(3) {
            inset: 60px;
            border-top-color: rgba(244, 114, 182, .3);
            border-right-color: rgba(124, 92, 231, .35);
            animation-duration: 18s
        }
        .hero-core {
            position: absolute;
            inset: 75px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(139, 108, 246, .25), rgba(244, 114, 182, .1), transparent 60%);
            animation: corePulse 3s ease-in-out infinite
        }
        .hero-dot {
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #8b6cf6;
            box-shadow: 0 0 16px rgba(139, 108, 246, .6);
            animation: dotOrbit 6s ease-in-out infinite
        }
        .hero-dot:nth-child(5) {
            top: 8px;
            left: 50%;
            animation-delay: 0s;
            background: #f472b6;
            box-shadow: 0 0 16px rgba(244, 114, 182, .6)
        }
        .hero-dot:nth-child(6) {
            bottom: 20px;
            right: 15px;
            animation-delay: -2s
        }
        .hero-dot:nth-child(7) {
            bottom: 40px;
            left: 20px;
            animation-delay: -4s;
            background: #f472b6;
            box-shadow: 0 0 16px rgba(244, 114, 182, .5)
        }
        @keyframes ringSpin {
            to {
                transform: rotate(360deg)
            }
        }
        @keyframes corePulse {
            0%,
            100% {
                transform: scale(1);
                opacity: .7
            }
            50% {
                transform: scale(1.08);
                opacity: 1
            }
        }
        @keyframes dotOrbit {
            0%,
            100% {
                transform: translate(0, 0)
            }
            25% {
                transform: translate(18px, -10px)
            }
            50% {
                transform: translate(-8px, -22px)
            }
            75% {
                transform: translate(-16px, 8px)
            }
        }

        /* 跑马灯 */
        .ticker-strip {
            position: relative;
            z-index: 1;
            overflow: hidden;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            padding: 14px 0;
            background: rgba(124, 92, 231, .02)
        }
        .ticker-track {
            display: flex;
            gap: 50px;
            animation: tickerScroll 30s linear infinite;
            width: max-content
        }
        .ticker-item {
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            font-family: var(--font-mono);
            font-size: .78rem;
            color: var(--muted);
            letter-spacing: .03em
        }
        .ticker-item .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--success)
        }
        @keyframes tickerScroll {
            0% {
                transform: translateX(0)
            }
            100% {
                transform: translateX(-50%)
            }
        }

        /* 实时数据面板 */
        .live-panel {
            position: relative;
            z-index: 1;
            padding: clamp(36px, 5vh, 64px) 0
        }
        .live-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px
        }
        .live-card {
            border-radius: var(--radius);
            border: 1px solid var(--line);
            background: var(--glass);
            padding: 20px 18px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all .35s var(--ease);
            box-shadow: var(--shadow-sm)
        }
        .live-card:hover {
            border-color: var(--line-bright);
            background: var(--glass-hover);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px)
        }
        .live-card .live-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            margin-right: 5px;
            vertical-align: middle;
            animation: pulse 2s ease infinite
        }
        .live-card .live-dot.green {
            background: var(--success);
            box-shadow: 0 0 8px var(--success)
        }
        .live-card .live-dot.purple {
            background: var(--primary-bright);
            box-shadow: 0 0 8px var(--primary-bright)
        }
        .live-card .live-val {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -.02em;
            margin: 6px 0 2px;
            color: var(--ink-soft)
        }
        .live-card .live-val.c1 {
            color: var(--success)
        }
        .live-card .live-val.c2 {
            color: var(--primary)
        }
        .live-card .live-val.c3 {
            color: var(--accent)
        }
        .live-card .live-val.c4 {
            color: var(--accent-warm)
        }
        .live-card .live-label {
            font-size: .72rem;
            color: var(--muted);
            font-family: var(--font-mono);
            letter-spacing: .04em;
            text-transform: uppercase
        }
        .live-card .live-sub {
            font-size: .65rem;
            color: var(--muted-light);
            margin-top: 2px
        }
        @keyframes pulse {
            0%,
            100% {
                opacity: 1
            }
            50% {
                opacity: .35
            }
        }

        /* 通用区块 */
        .section {
            position: relative;
            z-index: 1;
            padding: clamp(60px, 10vh, 120px) 0
        }
        .section-head {
            text-align: center;
            margin-bottom: clamp(36px, 5vw, 56px)
        }
        .section-head .tag {
            display: inline-block;
            font-family: var(--font-mono);
            font-size: .7rem;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--primary);
            padding: 6px 14px;
            border-radius: 4px;
            border: 1px solid rgba(124, 92, 231, .2);
            margin-bottom: 14px;
            background: rgba(124, 92, 231, .03)
        }
        .section-head h2 {
            font-size: clamp(1.8rem, 3.8vw, 2.8rem);
            line-height: 1.15;
            margin-bottom: 10px;
            color: var(--ink-soft)
        }
        .section-head .sub {
            color: var(--muted);
            font-size: .9rem;
            max-width: 520px;
            margin: 0 auto;
            line-height: 1.7
        }

        /* 分屏布局 */
        .split-layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: clamp(36px, 5vw, 80px);
            align-items: center
        }
        .split-layout.reversed {
            direction: rtl
        }
        .split-layout.reversed>* {
            direction: ltr
        }
        .split-visual {
            position: relative
        }
        .monitor-frame {
            position: relative;
            border-radius: 14px;
            border: 1px solid var(--line);
            background: #fff;
            overflow: hidden;
            aspect-ratio: 16/10;
            box-shadow: var(--shadow-md)
        }
        .monitor-frame::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 32px;
            background: #f3eff8;
            border-bottom: 1px solid var(--line);
            z-index: 2
        }
        .monitor-dots {
            position: absolute;
            top: 10px;
            left: 14px;
            z-index: 3;
            display: flex;
            gap: 5px
        }
        .monitor-dots span {
            width: 7px;
            height: 7px;
            border-radius: 50%
        }
        .monitor-dots span:nth-child(1) {
            background: #ff5f57
        }
        .monitor-dots span:nth-child(2) {
            background: #febc2e
        }
        .monitor-dots span:nth-child(3) {
            background: #28c840
        }
        .monitor-status {
            position: absolute;
            top: 9px;
            right: 14px;
            z-index: 3;
            font-family: var(--font-mono);
            font-size: .68rem;
            color: var(--success);
            display: flex;
            align-items: center;
            gap: 5px
        }
        .monitor-status::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--success);
            box-shadow: 0 0 6px var(--success);
            animation: pulse 2s ease infinite
        }
        .monitor-content {
            position: absolute;
            top: 32px;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 16px;
            overflow-y: auto
        }
        .server-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 14px;
            border-radius: 8px;
            background: rgba(124, 92, 231, .02);
            border: 1px solid rgba(124, 92, 231, .05);
            margin-bottom: 8px;
            transition: all .3s var(--ease)
        }
        .server-row:hover {
            background: rgba(244, 114, 182, .04);
            border-color: rgba(244, 114, 182, .12);
            transform: translateX(4px)
        }
        .server-row .flag {
            font-size: 1.2rem;
            flex-shrink: 0
        }
        .server-row .info {
            flex: 1;
            min-width: 0
        }
        .server-row .name {
            font-weight: 600;
            font-size: .82rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: var(--ink-soft)
        }
        .server-row .ping {
            font-size: .68rem;
            color: var(--muted);
            font-family: var(--font-mono)
        }
        .server-row .bar {
            width: 36px;
            height: 3px;
            border-radius: 2px;
            background: rgba(124, 92, 231, .08);
            overflow: hidden;
            flex-shrink: 0
        }
        .server-row .bar-fill {
            height: 100%;
            border-radius: 2px;
            background: linear-gradient(90deg, #7c5ce7, #f472b6)
        }
        .split-text h2 {
            font-size: clamp(1.7rem, 3.5vw, 2.6rem);
            line-height: 1.1;
            margin-bottom: 16px;
            color: var(--ink-soft)
        }
        .split-text .accent {
            background: linear-gradient(135deg, #7c5ce7, #f472b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }
        .split-text p {
            color: var(--muted);
            font-size: .95rem;
            line-height: 1.8;
            margin-bottom: 28px;
            max-width: 440px
        }

        /* Bento */
        .bento {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 14px
        }
        .bento-card {
            border-radius: var(--radius-lg);
            border: 1px solid var(--line);
            background: #fff;
            padding: clamp(22px, 3vw, 36px);
            position: relative;
            overflow: hidden;
            transition: all .4s var(--ease);
            box-shadow: var(--shadow-sm)
        }
        .bento-card:hover {
            border-color: var(--line-bright);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg)
        }
        .bento-card:nth-child(1) {
            grid-column: span 7
        }
        .bento-card:nth-child(2) {
            grid-column: span 5
        }
        .bento-card:nth-child(3) {
            grid-column: span 4
        }
        .bento-card:nth-child(4) {
            grid-column: span 4
        }
        .bento-card:nth-child(5) {
            grid-column: span 4
        }
        .bento-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            font-size: 1.3rem;
            border: 1px solid rgba(124, 92, 231, .1)
        }
        .bento-icon.c1 {
            background: rgba(124, 92, 231, .08)
        }
        .bento-icon.c2 {
            background: rgba(244, 114, 182, .08)
        }
        .bento-icon.c3 {
            background: rgba(52, 211, 153, .08)
        }
        .bento-icon.c4 {
            background: rgba(251, 113, 133, .08)
        }
        .bento-icon.c5 {
            background: rgba(139, 108, 246, .07)
        }
        .bento-card h3 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            font-family: var(--font-display);
            color: var(--ink-soft)
        }
        .bento-card p {
            color: var(--muted);
            font-size: .85rem;
            line-height: 1.7
        }
        .big-num {
            font-family: var(--font-display);
            font-size: clamp(2.4rem, 4.5vw, 4rem);
            font-weight: 800;
            line-height: 1;
            background: linear-gradient(135deg, #7c5ce7, #8b6cf6, #f472b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 6px
        }
        .big-num-label {
            font-size: .88rem;
            color: var(--muted)
        }

        /* 场景卡片 */
        .scene-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px
        }
        .scene-card {
            border-radius: var(--radius);
            border: 1px solid var(--line);
            background: #fff;
            padding: clamp(20px, 2.8vw, 28px);
            transition: all .35s var(--ease);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-sm)
        }
        .scene-card:hover {
            border-color: var(--line-bright);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md)
        }
        .scene-emoji {
            font-size: 2rem;
            margin-bottom: 12px;
            display: block
        }
        .scene-card h3 {
            font-size: .95rem;
            margin-bottom: 6px;
            color: var(--ink-soft)
        }
        .scene-card p {
            font-size: .8rem;
            color: var(--muted);
            line-height: 1.65
        }
        .scene-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-top: 12px
        }
        .scene-tag {
            font-family: var(--font-mono);
            font-size: .63rem;
            padding: 4px 9px;
            border-radius: 3px;
            border: 1px solid rgba(124, 92, 231, .1);
            color: var(--muted);
            letter-spacing: .03em;
            background: rgba(124, 92, 231, .02)
        }

        /* 数据统计 */
        .stat-row {
            display: flex;
            gap: clamp(16px, 3vw, 40px);
            flex-wrap: wrap;
            justify-content: center
        }
        .stat-block {
            text-align: center;
            padding: 20px 28px;
            min-width: 150px
        }
        .stat-block .num {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 800
        }
        .stat-block .num.c1 {
            color: #7c5ce7
        }
        .stat-block .num.c2 {
            color: #f472b6
        }
        .stat-block .num.c3 {
            color: #34d399
        }
        .stat-block .num.c4 {
            color: #fb7185
        }
        .stat-block .label {
            font-size: .8rem;
            color: var(--muted);
            margin-top: 4px;
            font-family: var(--font-mono)
        }

        /* 步骤区 */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            position: relative
        }
        .steps-grid::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 8%;
            right: 8%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--line), transparent);
            pointer-events: none
        }
        .step-item {
            padding: clamp(20px, 3vw, 40px);
            position: relative;
            text-align: center
        }
        .step-item::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 0;
            width: 1px;
            height: 35%;
            transform: translateY(-50%);
            background: var(--line)
        }
        .step-item:last-child::after {
            display: none
        }
        .step-num {
            font-family: var(--font-display);
            font-size: clamp(2.6rem, 5vw, 4.2rem);
            font-weight: 800;
            line-height: 1;
            background: linear-gradient(180deg, rgba(124, 92, 231, .25), rgba(244, 114, 182, .08));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px
        }
        .step-item h3 {
            font-size: 1rem;
            margin-bottom: 8px;
            color: var(--ink-soft)
        }
        .step-item p {
            color: var(--muted);
            font-size: .82rem;
            line-height: 1.65;
            max-width: 240px;
            margin: 0 auto
        }

        /* 速度对比 */
        .compare-table-wrap {
            overflow-x: auto;
            border-radius: var(--radius-lg);
            border: 1px solid var(--line);
            background: #fff;
            padding: clamp(20px, 3vw, 32px);
            box-shadow: var(--shadow-sm)
        }
        .compare-table {
            width: 100%;
            border-collapse: collapse;
            font-size: .84rem;
            min-width: 600px
        }
        .compare-table th {
            text-align: left;
            padding: 12px 16px;
            font-family: var(--font-mono);
            font-size: .7rem;
            letter-spacing: .08em;
            color: var(--muted);
            text-transform: uppercase;
            border-bottom: 1px solid var(--line);
            font-weight: 500
        }
        .compare-table td {
            padding: 14px 16px;
            border-bottom: 1px solid rgba(124, 92, 231, .04);
            color: var(--muted)
        }
        .compare-table tr:last-child td {
            border-bottom: none
        }
        .compare-table .highlight-col {
            color: #7c5ce7;
            font-weight: 700
        }
        .compare-table .check-purple {
            color: #8b6cf6;
            font-weight: 700
        }
        .compare-table .cross {
            color: #f87171
        }

        /* CTA */
        .cta-inner {
            position: relative;
            border-radius: var(--radius-xl);
            border: 1px solid var(--line);
            padding: clamp(50px, 7vw, 80px);
            text-align: center;
            overflow: hidden;
            background: #fff;
            box-shadow: var(--shadow-sm)
        }
        .cta-inner::before {
            content: '';
            position: absolute;
            top: -180px;
            left: 50%;
            width: 500px;
            height: 500px;
            transform: translateX(-50%);
            background: radial-gradient(circle, rgba(124, 92, 231, .05), rgba(244, 114, 182, .03), transparent 55%);
            pointer-events: none
        }
        .cta-inner::after {
            content: '';
            position: absolute;
            bottom: -80px;
            right: -80px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(244, 114, 182, .04), transparent 55%);
            pointer-events: none
        }
        .cta-inner h2 {
            font-size: clamp(1.8rem, 4.5vw, 3rem);
            line-height: 1.1;
            margin-bottom: 14px;
            position: relative;
            z-index: 1;
            color: var(--ink-soft)
        }
        .cta-inner p {
            color: var(--muted);
            font-size: .95rem;
            margin-bottom: 32px;
            max-width: 440px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1
        }
        .cta-inner .hero-btns {
            position: relative;
            z-index: 1;
            justify-content: center
        }

        /* 价格 */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            align-items: stretch
        }
        .price-card {
            border-radius: var(--radius-lg);
            border: 1px solid var(--line);
            background: #fff;
            padding: clamp(26px, 3vw, 38px) clamp(18px, 2.5vw, 28px);
            text-align: center;
            position: relative;
            transition: all .4s var(--ease);
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-sm)
        }
        .price-card.featured {
            border-color: rgba(124, 92, 231, .35);
            background: rgba(124, 92, 231, .025);
            box-shadow: 0 0 40px rgba(124, 92, 231, .06)
        }
        .price-card:hover {
            transform: translateY(-5px);
            border-color: var(--line-bright);
            box-shadow: var(--shadow-lg)
        }
        .price-badge {
            display: inline-block;
            font-family: var(--font-mono);
            font-size: .65rem;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: #fff;
            background: linear-gradient(135deg, #7c5ce7, #8b6cf6);
            padding: 4px 12px;
            border-radius: 16px;
            margin-bottom: 14px;
            font-weight: 700
        }
        .price-card h3 {
            font-size: 1.1rem;
            margin-bottom: 4px;
            color: var(--ink-soft)
        }
        .price-card .price-desc {
            font-size: .76rem;
            color: var(--muted);
            margin-bottom: 16px
        }
        .price-amount {
            font-family: var(--font-display);
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -.03em;
            margin-bottom: 4px;
            color: var(--ink-soft)
        }
        .price-amount .currency {
            font-size: 1rem;
            vertical-align: super;
            margin-right: 2px;
            color: var(--muted)
        }
        .price-amount .period {
            font-size: .78rem;
            color: var(--muted);
            font-weight: 400;
            letter-spacing: 0
        }
        .price-card .price-save {
            font-size: .72rem;
            color: #34d399;
            font-family: var(--font-mono);
            margin-bottom: 16px
        }
        .price-features {
            text-align: left;
            margin-bottom: 20px;
            flex: 1
        }
        .price-features li {
            font-size: .78rem;
            color: var(--muted);
            padding: 5px 0 5px 18px;
            position: relative;
            line-height: 1.5
        }
        .price-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #34d399;
            font-size: .65rem;
            top: 6px;
            font-weight: 700
        }
        .price-btn {
            display: block;
            width: 100%;
            padding: 12px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: .85rem;
            font-family: var(--font-body);
            cursor: pointer;
            border: 1px solid var(--line-bright);
            background: transparent;
            color: var(--ink);
            transition: all .3s var(--ease);
            text-align: center
        }
        .price-btn.featured-btn {
            background: linear-gradient(135deg, #7c5ce7, #8b6cf6);
            color: #fff;
            border-color: transparent
        }
        .price-btn:hover {
            background: rgba(124, 92, 231, .04);
            border-color: rgba(124, 92, 231, .25)
        }
        .price-btn.featured-btn:hover {
            background: linear-gradient(135deg, #8b6cf6, #9b7df8);
            box-shadow: 0 6px 22px rgba(124, 92, 231, .35)
        }

        /* FAQ */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            max-width: 900px;
            margin: 0 auto
        }
        .faq-item {
            border-radius: var(--radius);
            border: 1px solid var(--line);
            background: #fff;
            padding: 20px 22px;
            transition: all .3s var(--ease);
            box-shadow: var(--shadow-sm)
        }
        .faq-item:hover {
            border-color: var(--line-bright);
            box-shadow: var(--shadow-md)
        }
        .faq-item h3 {
            font-size: .9rem;
            margin-bottom: 6px;
            font-family: var(--font-body);
            font-weight: 600;
            letter-spacing: 0;
            color: var(--ink-soft)
        }
        .faq-item p {
            font-size: .8rem;
            color: var(--muted);
            line-height: 1.65
        }

        /* 页脚 */
        .footer {
            position: relative;
            z-index: 1;
            border-top: 1px solid var(--line);
            padding: 50px 0 24px;
            background: #fff
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2.5fr 1fr 1fr 1fr;
            gap: clamp(20px, 3.5vw, 48px);
            margin-bottom: 36px
        }
        .footer-brand p {
            color: var(--muted);
            font-size: .84rem;
            max-width: 260px;
            line-height: 1.7;
            margin-top: 12px
        }
        .footer-col h4 {
            font-family: var(--font-mono);
            font-size: .72rem;
            font-weight: 500;
            color: var(--ink-soft);
            margin-bottom: 16px;
            letter-spacing: .1em;
            text-transform: uppercase
        }
        .footer-col li {
            margin-bottom: 9px
        }
        .footer-col a {
            color: var(--muted);
            font-size: .84rem;
            transition: all .3s var(--ease)
        }
        .footer-col a:hover {
            color: #7c5ce7;
            padding-left: 3px
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid rgba(124, 92, 231, .06);
            font-size: .74rem;
            color: var(--muted);
            font-family: var(--font-mono)
        }

        /* 滚动动画 */
        .reveal {
            opacity: 0;
            transform: translateY(36px);
            transition: all .7s var(--ease)
        }
        .reveal.show {
            opacity: 1;
            transform: translateY(0)
        }
        .reveal-delay-1 {
            transition-delay: .1s
        }
        .reveal-delay-2 {
            transition-delay: .2s
        }
        .reveal-delay-3 {
            transition-delay: .3s
        }
        .reveal-delay-4 {
            transition-delay: .4s
        }
        .reveal-delay-5 {
            transition-delay: .5s
        }

        /* 响应式 */
        @media(max-width:1024px) {
            .mega-hero {
                grid-template-columns: 1fr;
                min-height: auto;
                padding-top: 90px;
                padding-bottom: 40px
            }
            .hero-left::after {
                display: none
            }
            .hero-right {
                height: 360px;
                order: -1
            }
            .split-layout {
                grid-template-columns: 1fr
            }
            .split-layout.reversed {
                direction: ltr
            }
            .bento-card:nth-child(1) {
                grid-column: span 12
            }
            .bento-card:nth-child(2) {
                grid-column: span 12
            }
            .bento-card:nth-child(3) {
                grid-column: span 6
            }
            .bento-card:nth-child(4) {
                grid-column: span 6
            }
            .bento-card:nth-child(5) {
                grid-column: span 12
            }
            .steps-grid {
                grid-template-columns: 1fr
            }
            .steps-grid::before {
                display: none
            }
            .step-item::after {
                display: none
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr
            }
            .live-grid {
                grid-template-columns: repeat(2, 1fr)
            }
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto
            }
            .scene-grid {
                grid-template-columns: 1fr 1fr
            }
            .faq-grid {
                grid-template-columns: 1fr
            }
            .compare-table-wrap {
                padding: 12px
            }
        }
        @media(max-width:768px) {
            .nav-right a:not(.nav-download) {
                display: none
            }
            .mobile-btn {
                display: block
            }
            .bento-card:nth-child(3) {
                grid-column: span 12
            }
            .bento-card:nth-child(4) {
                grid-column: span 12
            }
            .footer-grid {
                grid-template-columns: 1fr
            }
            .footer-bottom {
                flex-direction: column;
                gap: 6px;
                text-align: center
            }
            .live-grid {
                grid-template-columns: 1fr 1fr
            }
            .scene-grid {
                grid-template-columns: 1fr
            }
            .pricing-grid {
                max-width: 100%
            }
            .hero-right {
                height: 280px
            }
            .faq-grid {
                grid-template-columns: 1fr
            }
        }
        @media(max-width:480px) {
            .live-grid {
                grid-template-columns: 1fr
            }
            .stat-row {
                gap: 6px
            }
            .stat-block {
                min-width: 110px;
                padding: 14px 10px
            }
            .hero-right {
                height: 220px
            }
        }