        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }
        :root {
            --bg: #07070a;
            --ink: #e8e6e1;
            --muted: #5a5766;
            --cyan: #00e5ff;
            --violet: #8b5cf6;
            --lime: #a3e635;
            --rose: #fb7185;
            --amber: #fbbf24;
            --glass: rgba(255, 255, 255, .03);
            --line: rgba(255, 255, 255, .06);
            --card-hover: rgba(255, 255, 255, .06)
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
            overflow-x: hidden
        }
        body {
            font-family: 'Space Grotesk', sans-serif;
            background: var(--bg);
            color: var(--ink);
            overflow-x: hidden;
            line-height: 1.6;
            cursor: default;
            -webkit-font-smoothing: antialiased
        }
        ::selection {
            background: var(--cyan);
            color: var(--bg)
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all .3s cubic-bezier(.22, 1, .36, 1)
        }
        ul {
            list-style: none
        }
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 clamp(20px, 4vw, 60px)
        }
        h1,
        h2,
        h3 {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            letter-spacing: -.02em
        }
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background: radial-gradient(ellipse 80% 60% at 10% 90%, rgba(0, 229, 255, .04), transparent), radial-gradient(ellipse 60% 50% at 90% 10%, rgba(139, 92, 246, .04), transparent)
        }
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            backdrop-filter: blur(24px) saturate(1.5);
            -webkit-backdrop-filter: blur(24px) saturate(1.5);
            border-bottom: 1px solid var(--line);
            background: rgba(7, 7, 10, .6)
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px
        }
        .logo {
            font-family: 'Syne', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            letter-spacing: .06em;
            background: linear-gradient(135deg, var(--cyan), var(--violet));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 28px
        }
        .nav-right a {
            font-size: .82rem;
            font-weight: 500;
            color: var(--muted);
            position: relative;
            letter-spacing: .02em
        }
        .nav-right a:hover {
            color: var(--ink)
        }
        .nav-right a.active {
            color: var(--cyan)
        }
        .nav-download {
            padding: 8px 20px;
            border-radius: 6px;
            border: 1px solid rgba(0, 229, 255, .3);
            color: var(--cyan) !important;
            font-weight: 600;
            font-size: .82rem;
            transition: all .3s ease
        }
        .nav-download:hover {
            background: rgba(0, 229, 255, .1);
            box-shadow: 0 0 20px rgba(0, 229, 255, .1)
        }
        .mobile-btn {
            display: none;
            background: none;
            border: none;
            color: var(--ink);
            font-size: 1.4rem;
            cursor: pointer
        }
        .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, 160px) clamp(20px, 4vw, 60px) clamp(80px, 10vh, 160px) clamp(20px, 6vw, 100px);
            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: 'DM Mono', monospace;
            font-size: .78rem;
            font-weight: 400;
            color: var(--cyan);
            letter-spacing: .2em;
            text-transform: uppercase;
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 12px
        }
        .overline::before {
            content: '';
            width: 32px;
            height: 1px;
            background: var(--cyan)
        }
        .hero-h1 {
            font-size: clamp(3rem, 7vw, 6.5rem);
            line-height: .95;
            margin-bottom: 32px;
            position: relative
        }
        .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, var(--cyan), var(--violet));
            -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: 1.05rem;
            color: var(--muted);
            max-width: 420px;
            line-height: 1.8;
            margin-bottom: 48px
        }
        .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap
        }
        .btn-glow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 8px;
            background: var(--cyan);
            color: var(--bg);
            font-weight: 700;
            font-size: .95rem;
            font-family: 'Space Grotesk', sans-serif;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all .3s ease
        }
        .btn-glow::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, var(--cyan), var(--violet));
            border-radius: 10px;
            z-index: -1;
            opacity: 0;
            filter: blur(12px);
            transition: opacity .4s ease
        }
        .btn-glow:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(0, 229, 255, .25)
        }
        .btn-glow:hover::before {
            opacity: 1
        }
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 8px;
            background: transparent;
            border: 1px solid var(--line);
            color: var(--ink);
            font-weight: 600;
            font-size: .95rem;
            font-family: 'Space Grotesk', sans-serif;
            cursor: pointer;
            transition: all .3s ease
        }
        .btn-ghost:hover {
            border-color: rgba(255, 255, 255, .15);
            background: rgba(255, 255, 255, .03)
        }
        .hero-right {
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center
        }
        .hero-art {
            position: relative;
            width: 100%;
            height: 100%
        }
        .hero-art canvas {
            width: 100%;
            height: 100%
        }
        .hero-glow-orb {
            position: absolute;
            width: 500px;
            height: 500px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle, rgba(0, 229, 255, .12), rgba(139, 92, 246, .06), transparent 70%);
            filter: blur(60px);
            animation: orbFloat 6s ease-in-out infinite;
            pointer-events: none
        }
        @keyframes orbFloat {
            0%,
            100% {
                transform: translate(-50%, -50%) scale(1)
            }
            50% {
                transform: translate(-50%, -50%) scale(1.15)
            }
        }
        .ticker-strip {
            position: relative;
            z-index: 1;
            overflow: hidden;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            padding: 16px 0;
            background: rgba(255, 255, 255, .01)
        }
        .ticker-track {
            display: flex;
            gap: 60px;
            animation: tickerScroll 25s linear infinite;
            width: max-content
        }
        .ticker-item {
            display: flex;
            align-items: center;
            gap: 12px;
            white-space: nowrap;
            font-family: 'DM Mono', monospace;
            font-size: .82rem;
            color: var(--muted);
            letter-spacing: .04em
        }
        .ticker-item .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--cyan)
        }
        @keyframes tickerScroll {
            0% {
                transform: translateX(0)
            }
            100% {
                transform: translateX(-50%)
            }
        }
        .diagonal-section {
            position: relative;
            z-index: 1;
            padding: clamp(80px, 12vh, 160px) 0
        }
        .diagonal-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(172deg, transparent 0%, transparent 48%, rgba(255, 255, 255, .015) 48%, rgba(255, 255, 255, .015) 52%, transparent 52%);
            pointer-events: none
        }
        .split-layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: clamp(40px, 6vw, 100px);
            align-items: center
        }
        .split-layout.reversed {
            direction: rtl
        }
        .split-layout.reversed>* {
            direction: ltr
        }
        .split-visual {
            position: relative
        }
        .monitor-frame {
            position: relative;
            border-radius: 16px;
            border: 1px solid var(--line);
            background: var(--glass);
            overflow: hidden;
            aspect-ratio: 16/10
        }
        .monitor-frame::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 36px;
            background: rgba(0, 0, 0, .3);
            border-bottom: 1px solid var(--line);
            z-index: 2
        }
        .monitor-dots {
            position: absolute;
            top: 12px;
            left: 16px;
            z-index: 3;
            display: flex;
            gap: 6px
        }
        .monitor-dots span {
            width: 8px;
            height: 8px;
            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: 10px;
            right: 16px;
            z-index: 3;
            font-family: 'DM Mono', monospace;
            font-size: .72rem;
            color: var(--cyan);
            display: flex;
            align-items: center;
            gap: 6px
        }
        .monitor-status::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--cyan);
            box-shadow: 0 0 8px var(--cyan);
            animation: pulse 2s ease infinite
        }
        @keyframes pulse {
            0%,
            100% {
                opacity: 1
            }
            50% {
                opacity: .4
            }
        }
        .monitor-content {
            position: absolute;
            top: 36px;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 20px
        }
        .server-row {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 16px;
            border-radius: 10px;
            background: rgba(255, 255, 255, .02);
            border: 1px solid rgba(255, 255, 255, .03);
            margin-bottom: 10px;
            transition: all .3s ease;
            transform: translateX(0)
        }
        .server-row:hover {
            background: rgba(0, 229, 255, .04);
            border-color: rgba(0, 229, 255, .1);
            transform: translateX(6px)
        }
        .server-row .flag {
            font-size: 1.3rem
        }
        .server-row .info {
            flex: 1
        }
        .server-row .name {
            font-weight: 600;
            font-size: .85rem
        }
        .server-row .ping {
            font-size: .72rem;
            color: var(--muted);
            font-family: 'DM Mono', monospace
        }
        .server-row .bar {
            width: 40px;
            height: 3px;
            border-radius: 2px;
            background: rgba(255, 255, 255, .06);
            overflow: hidden
        }
        .server-row .bar-fill {
            height: 100%;
            border-radius: 2px;
            background: linear-gradient(90deg, var(--cyan), var(--lime))
        }
        .monitor-glow {
            position: absolute;
            inset: -60px;
            z-index: -1;
            background: radial-gradient(ellipse at center, rgba(0, 229, 255, .06), transparent 60%);
            filter: blur(40px);
            animation: orbFloat 8s ease-in-out infinite
        }
        .split-text h2 {
            font-size: clamp(2rem, 4vw, 3.2rem);
            line-height: 1.1;
            margin-bottom: 20px
        }
        .split-text .accent {
            color: var(--cyan)
        }
        .split-text p {
            color: var(--muted);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 32px;
            max-width: 460px
        }
        .text-tag {
            display: inline-block;
            font-family: 'DM Mono', monospace;
            font-size: .72rem;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: var(--cyan);
            padding: 6px 14px;
            border-radius: 4px;
            border: 1px solid rgba(0, 229, 255, .2);
            margin-bottom: 20px
        }
        .bento-grid {
            position: relative;
            z-index: 1;
            padding: clamp(60px, 10vh, 120px) 0
        }
        .bento-grid .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: clamp(40px, 5vw, 64px);
            flex-wrap: wrap;
            gap: 20px
        }
        .section-head h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            line-height: 1.1
        }
        .section-head .mono {
            font-family: 'DM Mono', monospace;
            font-size: .82rem;
            color: var(--muted)
        }
        .bento {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: auto;
            gap: 16px
        }
        .bento-card {
            border-radius: 16px;
            border: 1px solid var(--line);
            background: var(--glass);
            padding: clamp(24px, 3vw, 40px);
            position: relative;
            overflow: hidden;
            transition: all .4s cubic-bezier(.22, 1, .36, 1)
        }
        .bento-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .03), transparent 50%);
            pointer-events: none;
            opacity: 0;
            transition: opacity .3s ease
        }
        .bento-card:hover {
            border-color: rgba(255, 255, 255, .1);
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, .3)
        }
        .bento-card:hover::before {
            opacity: 1
        }
        .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: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.4rem;
            border: 1px solid rgba(255, 255, 255, .06)
        }
        .bento-icon.c1 {
            background: rgba(0, 229, 255, .08)
        }
        .bento-icon.c2 {
            background: rgba(139, 92, 246, .08)
        }
        .bento-icon.c3 {
            background: rgba(163, 230, 53, .08)
        }
        .bento-icon.c4 {
            background: rgba(251, 113, 133, .08)
        }
        .bento-icon.c5 {
            background: rgba(251, 191, 36, .08)
        }
        .bento-card h3 {
            font-size: 1.15rem;
            margin-bottom: 10px;
            font-family: 'Syne', sans-serif
        }
        .bento-card p {
            color: var(--muted);
            font-size: .9rem;
            line-height: 1.7
        }
        .big-number-card {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            height: 100%
        }
        .big-num {
            font-family: 'Syne', sans-serif;
            font-size: clamp(2.8rem, 5vw, 4.5rem);
            font-weight: 800;
            line-height: 1;
            background: linear-gradient(135deg, var(--cyan), var(--violet));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px
        }
        .big-num-label {
            font-size: .92rem;
            color: var(--muted)
        }
        .marquee-stats {
            position: relative;
            z-index: 1;
            padding: clamp(60px, 8vh, 100px) 0;
            overflow: hidden
        }
        .stat-row {
            display: flex;
            gap: clamp(20px, 3vw, 48px);
            flex-wrap: wrap;
            justify-content: center
        }
        .stat-block {
            text-align: center;
            padding: 24px;
            min-width: 180px
        }
        .stat-block .num {
            font-family: 'Syne', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800
        }
        .stat-block .num.cyan {
            color: var(--cyan)
        }
        .stat-block .num.violet {
            color: var(--violet)
        }
        .stat-block .num.lime {
            color: var(--lime)
        }
        .stat-block .num.rose {
            color: var(--rose)
        }
        .stat-block .label {
            font-size: .85rem;
            color: var(--muted);
            margin-top: 4px;
            font-family: 'DM Mono', monospace
        }
        .steps-section {
            position: relative;
            z-index: 1;
            padding: clamp(80px, 12vh, 160px) 0
        }
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            position: relative
        }
        .steps-grid::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 5%;
            right: 5%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--line), transparent)
        }
        .step-item {
            padding: clamp(24px, 3vw, 48px);
            position: relative;
            text-align: center
        }
        .step-item::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 0;
            width: 1px;
            height: 40%;
            transform: translateY(-50%);
            background: var(--line)
        }
        .step-item:last-child::after {
            display: none
        }
        .step-num {
            font-family: 'Syne', sans-serif;
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 800;
            line-height: 1;
            background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .03));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px
        }
        .step-item h3 {
            font-size: 1.1rem;
            margin-bottom: 10px
        }
        .step-item p {
            color: var(--muted);
            font-size: .88rem;
            line-height: 1.7;
            max-width: 260px;
            margin: 0 auto
        }
        .cta-panel {
            position: relative;
            z-index: 1;
            padding: clamp(80px, 10vh, 140px) 0
        }
        .cta-inner {
            position: relative;
            border-radius: 24px;
            border: 1px solid var(--line);
            padding: clamp(60px, 8vw, 100px);
            text-align: center;
            overflow: hidden;
            background: var(--glass)
        }
        .cta-inner::before {
            content: '';
            position: absolute;
            top: -200px;
            left: 50%;
            width: 600px;
            height: 600px;
            transform: translateX(-50%);
            background: radial-gradient(circle, rgba(0, 229, 255, .07), rgba(139, 92, 246, .04), transparent 60%);
            pointer-events: none
        }
        .cta-inner::after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(139, 92, 246, .06), transparent 60%);
            pointer-events: none
        }
        .cta-inner h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            line-height: 1.1;
            margin-bottom: 16px;
            position: relative;
            z-index: 1
        }
        .cta-inner p {
            color: var(--muted);
            font-size: 1.05rem;
            margin-bottom: 40px;
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1
        }
        .cta-inner .hero-btns {
            position: relative;
            z-index: 1;
            justify-content: center
        }
        .footer {
            position: relative;
            z-index: 1;
            border-top: 1px solid var(--line);
            padding: 60px 0 28px
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2.5fr 1fr 1fr 1fr;
            gap: clamp(24px, 4vw, 60px);
            margin-bottom: 48px
        }
        .footer-brand p {
            color: var(--muted);
            font-size: .88rem;
            max-width: 280px;
            line-height: 1.7;
            margin-top: 14px
        }
        .footer-col h4 {
            font-family: 'DM Mono', monospace;
            font-size: .75rem;
            font-weight: 500;
            color: var(--ink);
            margin-bottom: 18px;
            letter-spacing: .1em;
            text-transform: uppercase
        }
        .footer-col li {
            margin-bottom: 10px
        }
        .footer-col a {
            color: var(--muted);
            font-size: .88rem;
            transition: all .3s ease
        }
        .footer-col a:hover {
            color: var(--cyan);
            padding-left: 4px
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, .04);
            font-size: .78rem;
            color: var(--muted);
            font-family: 'DM Mono', monospace
        }
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all .8s cubic-bezier(.22, 1, .36, 1)
        }
        .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
        }

        /* 新增：实时网络数据面板 */
        .live-panel {
            position: relative;
            z-index: 1;
            padding: clamp(40px, 6vh, 80px) 0
        }
        .live-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px
        }
        .live-card {
            border-radius: 14px;
            border: 1px solid var(--line);
            background: var(--glass);
            padding: 22px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all .35s ease
        }
        .live-card:hover {
            border-color: rgba(255, 255, 255, .12);
            background: var(--card-hover)
        }
        .live-card .live-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            margin-right: 6px;
            vertical-align: middle;
            animation: pulse 1.8s ease infinite
        }
        .live-card .live-dot.green {
            background: var(--lime);
            box-shadow: 0 0 10px var(--lime)
        }
        .live-card .live-dot.cyan {
            background: var(--cyan);
            box-shadow: 0 0 10px var(--cyan)
        }
        .live-card .live-val {
            font-family: 'Syne', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -.02em;
            margin: 8px 0 2px
        }
        .live-card .live-val.c1 {
            color: var(--lime)
        }
        .live-card .live-val.c2 {
            color: var(--cyan)
        }
        .live-card .live-val.c3 {
            color: var(--violet)
        }
        .live-card .live-val.c4 {
            color: var(--amber)
        }
        .live-card .live-label {
            font-size: .75rem;
            color: var(--muted);
            font-family: 'DM Mono', monospace;
            letter-spacing: .04em;
            text-transform: uppercase
        }
        .live-card .live-sub {
            font-size: .68rem;
            color: var(--muted);
            margin-top: 2px;
            opacity: .7
        }

        /* 新增：价格板块 */
        .pricing-section {
            position: relative;
            z-index: 1;
            padding: clamp(60px, 10vh, 120px) 0
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            align-items: stretch
        }
        .price-card {
            border-radius: 18px;
            border: 1px solid var(--line);
            background: var(--glass);
            padding: clamp(28px, 3.5vw, 44px) clamp(20px, 2.5vw, 32px);
            text-align: center;
            position: relative;
            transition: all .4s cubic-bezier(.22, 1, .36, 1);
            display: flex;
            flex-direction: column
        }
        .price-card.featured {
            border-color: rgba(0, 229, 255, .25);
            background: rgba(0, 229, 255, .03);
            box-shadow: 0 0 40px rgba(0, 229, 255, .06)
        }
        .price-card:hover {
            transform: translateY(-6px);
            border-color: rgba(255, 255, 255, .15);
            box-shadow: 0 24px 60px rgba(0, 0, 0, .35)
        }
        .price-badge {
            display: inline-block;
            font-family: 'DM Mono', monospace;
            font-size: .68rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--bg);
            background: var(--cyan);
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 16px;
            font-weight: 600
        }
        .price-card h3 {
            font-size: 1.2rem;
            margin-bottom: 6px
        }
        .price-card .price-desc {
            font-size: .8rem;
            color: var(--muted);
            margin-bottom: 20px
        }
        .price-amount {
            font-family: 'Syne', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            letter-spacing: -.03em;
            margin-bottom: 4px
        }
        .price-amount .currency {
            font-size: 1.2rem;
            vertical-align: super;
            margin-right: 2px;
            color: var(--muted)
        }
        .price-amount .period {
            font-size: .85rem;
            color: var(--muted);
            font-weight: 400;
            letter-spacing: 0
        }
        .price-card .price-save {
            font-size: .75rem;
            color: var(--lime);
            font-family: 'DM Mono', monospace;
            margin-bottom: 20px
        }
        .price-features {
            text-align: left;
            margin-bottom: 24px;
            flex: 1
        }
        .price-features li {
            font-size: .82rem;
            color: var(--muted);
            padding: 6px 0;
            padding-left: 20px;
            position: relative;
            line-height: 1.5
        }
        .price-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--lime);
            font-size: .7rem;
            top: 7px
        }
        .price-btn {
            display: block;
            width: 100%;
            padding: 13px;
            border-radius: 8px;
            font-weight: 700;
            font-size: .9rem;
            font-family: 'Space Grotesk', sans-serif;
            cursor: pointer;
            border: 1px solid var(--line);
            background: transparent;
            color: var(--ink);
            transition: all .3s ease;
            text-align: center
        }
        .price-btn.featured-btn {
            background: var(--cyan);
            color: var(--bg);
            border-color: transparent
        }
        .price-btn:hover {
            background: rgba(255, 255, 255, .04);
            border-color: rgba(255, 255, 255, .2)
        }
        .price-btn.featured-btn:hover {
            background: #00d4f0;
            box-shadow: 0 8px 28px rgba(0, 229, 255, .3)
        }

        /* 新增：场景卡片网格 */
        .scene-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px
        }
        .scene-card {
            border-radius: 14px;
            border: 1px solid var(--line);
            background: var(--glass);
            padding: clamp(22px, 3vw, 32px);
            transition: all .35s ease;
            position: relative;
            overflow: hidden
        }
        .scene-card:hover {
            border-color: rgba(255, 255, 255, .12);
            transform: translateY(-3px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, .25)
        }
        .scene-emoji {
            font-size: 2.2rem;
            margin-bottom: 14px;
            display: block
        }
        .scene-card h3 {
            font-size: 1rem;
            margin-bottom: 8px
        }
        .scene-card p {
            font-size: .82rem;
            color: var(--muted);
            line-height: 1.7
        }
        .scene-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 14px
        }
        .scene-tag {
            font-family: 'DM Mono', monospace;
            font-size: .66rem;
            padding: 4px 10px;
            border-radius: 4px;
            border: 1px solid rgba(255, 255, 255, .08);
            color: var(--muted);
            letter-spacing: .03em
        }

        @media(max-width:1024px) {
            .mega-hero {
                grid-template-columns: 1fr;
                min-height: auto;
                padding-top: 100px;
                padding-bottom: 60px
            }
            .hero-left::after {
                display: none
            }
            .hero-right {
                height: 400px;
                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: 420px;
                margin: 0 auto
            }
            .scene-grid {
                grid-template-columns: 1fr 1fr
            }
        }
        @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: 8px;
                text-align: center
            }
            .live-grid {
                grid-template-columns: 1fr 1fr
            }
            .scene-grid {
                grid-template-columns: 1fr
            }
            .pricing-grid {
                max-width: 100%
            }
            .hero-right {
                height: 300px
            }
        }
        @media(max-width:480px) {
            .live-grid {
                grid-template-columns: 1fr
            }
            .stat-row {
                gap: 8px
            }
            .stat-block {
                min-width: 130px;
                padding: 16px
            }
        }