        /* ==================== CSS 变量与全局重置 ==================== */
        :root {
            --accent: #6c5ce7;
            --accent-glow: #a29bfe;
            --accent-deep: #4a3db5;
            --surface: #ffffff;
            --surface-alt: #f9fafb;
            --card-bg: #f8f7ff;
            --text-primary: #1a1a2e;
            --text-secondary: #52526b;
            --text-muted: #7c7c96;
            --border: #e8e8f0;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 20px 50px rgba(108, 92, 231, 0.12);
            --radius-sm: 10px;
            --radius: 16px;
            --radius-lg: 24px;
            --font-mono: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Noto Sans SC', system-ui, sans-serif;
            color: var(--text-primary);
            background: var(--surface);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ==================== 头部导航 ==================== */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.7rem clamp(1.5rem, 5vw, 6rem);
            background: rgba(255, 255, 255, 0.82);
            backdrop-filter: blur(16px) saturate(140%);
            -webkit-backdrop-filter: blur(16px) saturate(140%);
            border-bottom: 1px solid rgba(108, 92, 231, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow var(--transition);
        }
        header.scrolled {
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            transition: transform var(--transition);
            flex-shrink: 0;
        }
        .logo-wrap:hover {
            transform: scale(1.04);
        }
        .logo-wrap img {
            height: 38px;
            width: auto;
            border-radius: 8px;
        }
        .logo-wrap .logo-text {
            font-weight: 800;
            font-size: 1.35rem;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, var(--accent) 0%, #e056a0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        nav {
            display: flex;
            gap: 1.8rem;
            align-items: center;
        }
        nav a {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 0.9rem;
            position: relative;
            padding: 6px 2px;
            transition: color var(--transition);
            white-space: nowrap;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2.5px;
            background: var(--accent);
            border-radius: 2px;
            transition: all var(--transition);
            transform: translateX(-50%);
        }
        nav a:hover,
        nav a.active {
            color: var(--accent);
        }
        nav a:hover::after,
        nav a.active::after {
            width: 80%;
        }

        /* 移动端菜单按钮 */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            color: var(--text-primary);
            font-size: 1.5rem;
            line-height: 1;
        }

        /* ==================== Hero 区域 ==================== */
        .hero {
            padding: 5rem clamp(1.5rem, 5vw, 6rem) 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(ellipse 80% 60% at 50% 0%, rgba(108, 92, 231, 0.05) 0%, transparent 60%),
                radial-gradient(ellipse 40% 40% at 85% 100%, rgba(224, 86, 160, 0.04) 0%, transparent 60%),
                radial-gradient(ellipse 30% 30% at 15% 80%, rgba(108, 92, 231, 0.03) 0%, transparent 60%);
        }

        /* 背景装饰粒子 */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image:
                radial-gradient(2px 2px at 20% 30%, var(--accent-glow) 50%, transparent 100%),
                radial-gradient(2px 2px at 70% 55%, #e056a0 50%, transparent 100%),
                radial-gradient(1.5px 1.5px at 45% 20%, var(--accent) 50%, transparent 100%),
                radial-gradient(2.5px 2.5px at 80% 70%, var(--accent-glow) 50%, transparent 100%),
                radial-gradient(1px 1px at 10% 65%, #e056a0 50%, transparent 100%),
                radial-gradient(1.5px 1.5px at 60% 85%, var(--accent) 50%, transparent 100%);
            opacity: 0.5;
            animation: particleDrift 20s linear infinite;
        }
        @keyframes particleDrift {
            0%,
            100% {
                transform: translate(0, 0);
            }
            25% {
                transform: translate(8px, -6px);
            }
            50% {
                transform: translate(-4px, 10px);
            }
            75% {
                transform: translate(-10px, -2px);
            }
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(160, 155, 240, 0.08));
            color: var(--accent-deep);
            padding: 8px 20px;
            border-radius: 99px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            margin-bottom: 1.8rem;
            border: 1px solid rgba(108, 92, 231, 0.15);
            animation: fadeInUp 0.7s ease-out;
            position: relative;
            z-index: 1;
        }
        .hero-tag .pulse-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #10b981;
            animation: pulse 2s ease-in-out infinite;
            display: inline-block;
        }
        @keyframes pulse {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
            }
        }

        .hero h1 {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            letter-spacing: -0.04em;
            line-height: 1.12;
            margin-bottom: 1.5rem;
            font-weight: 800;
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.9s ease-out;
            color: var(--text-primary);
        }
        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--accent) 0%, #e056a0 60%, #f0932b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 720px;
            margin: 0 auto 2.8rem;
            animation: fadeInUp 1.1s ease-out;
            position: relative;
            z-index: 1;
            line-height: 1.7;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cta-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1.3s ease-out;
            position: relative;
            z-index: 1;
        }
        .btn {
            padding: 13px 30px;
            border-radius: 99px;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 9px;
            cursor: pointer;
            letter-spacing: 0.01em;
        }
        .btn-primary {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 8px 28px rgba(108, 92, 231, 0.35);
            border: none;
        }
        .btn-primary:hover {
            background: var(--accent-deep);
            transform: translateY(-3px);
            box-shadow: 0 14px 36px rgba(108, 92, 231, 0.45);
        }
        .btn-secondary {
            background: var(--surface);
            color: var(--text-primary);
            border: 1.5px solid var(--border);
        }
        .btn-secondary:hover {
            background: #f5f3ff;
            border-color: var(--accent-glow);
            transform: translateY(-2px);
        }

        /* Hero 仪表板预览 - 纯CSS创意展示 */
        .hero-dashboard {
            margin-top: 4rem;
            animation: fadeInUp 1.5s ease-out;
            position: relative;
            z-index: 1;
            max-width: 960px;
            margin-inline: auto;
        }
        .dashboard-mock {
            background: #1e1e2e;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid #2d2d44;
            box-shadow: var(--shadow-lg), 0 0 0 1px rgba(108, 92, 231, 0.1);
        }
        .dashboard-header-bar {
            background: #2a2a3d;
            padding: 12px 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid #33334d;
        }
        .dashboard-dot {
            width: 11px;
            height: 11px;
            border-radius: 50%;
            display: inline-block;
        }
        .dashboard-dot.red {
            background: #ff5f56;
        }
        .dashboard-dot.yellow {
            background: #ffbd2e;
        }
        .dashboard-dot.green {
            background: #27c93f;
        }
        .dashboard-title-bar {
            flex: 1;
            text-align: center;
            font-size: 0.78rem;
            color: #8888a0;
            font-family: var(--font-mono);
            letter-spacing: 0.04em;
        }
        .dashboard-body {
            padding: 28px 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: stretch;
            min-height: 260px;
        }
        .dashboard-stat {
            flex: 1;
            min-width: 130px;
            background: #252538;
            border-radius: var(--radius-sm);
            padding: 18px 16px;
            text-align: center;
            border: 1px solid #2e2e45;
            transition: all var(--transition);
        }
        .dashboard-stat:hover {
            border-color: var(--accent-glow);
            box-shadow: 0 0 20px rgba(108, 92, 231, 0.15);
            transform: translateY(-3px);
        }
        .dashboard-stat .stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: #e0e0f0;
            font-family: var(--font-mono);
            letter-spacing: -0.02em;
        }
        .dashboard-stat .stat-value.accent {
            color: var(--accent-glow);
        }
        .dashboard-stat .stat-label {
            font-size: 0.75rem;
            color: #8888a0;
            margin-top: 4px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            font-weight: 600;
        }
        .dashboard-graph {
            flex: 2;
            min-width: 240px;
            background: #252538;
            border-radius: var(--radius-sm);
            padding: 18px 16px;
            border: 1px solid #2e2e45;
            display: flex;
            align-items: flex-end;
            gap: 8px;
            position: relative;
            overflow: hidden;
        }
        .graph-bar {
            flex: 1;
            border-radius: 4px 4px 0 0;
            background: linear-gradient(180deg, var(--accent-glow), rgba(108, 92, 231, 0.3));
            animation: barBreathe 3s ease-in-out infinite;
            min-height: 20px;
            transition: all var(--transition);
        }
        .graph-bar:nth-child(1) {
            height: 65%;
            animation-delay: 0s;
        }
        .graph-bar:nth-child(2) {
            height: 88%;
            animation-delay: 0.2s;
        }
        .graph-bar:nth-child(3) {
            height: 45%;
            animation-delay: 0.4s;
        }
        .graph-bar:nth-child(4) {
            height: 92%;
            animation-delay: 0.6s;
        }
        .graph-bar:nth-child(5) {
            height: 58%;
            animation-delay: 0.8s;
        }
        .graph-bar:nth-child(6) {
            height: 76%;
            animation-delay: 1s;
        }
        .graph-bar:nth-child(7) {
            height: 40%;
            animation-delay: 1.2s;
        }
        .graph-bar:nth-child(8) {
            height: 82%;
            animation-delay: 1.4s;
        }
        @keyframes barBreathe {
            0%,
            100% {
                opacity: 0.8;
            }
            50% {
                opacity: 1;
            }
        }

        /* 视频展示区 */
        .video-wrapper {
            margin-top: 3rem;
            max-width: 960px;
            margin-inline: auto;
            aspect-ratio: 16/9;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 3px solid #fff;
            box-shadow: var(--shadow-md);
            background: #0f172a;
            animation: fadeInUp 1.7s ease-out;
            position: relative;
            z-index: 1;
        }
        .video-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        .video-wrapper .video-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            color: #fff;
            font-size: 1.1rem;
            gap: 10px;
            opacity: 0.7;
        }

        /* ==================== 内容区块通用 ==================== */
        .content-section {
            padding: 5rem clamp(1.5rem, 5vw, 6rem);
            max-width: 1200px;
            margin: 0 auto;
        }
        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }
        .section-header h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            letter-spacing: -0.03em;
            margin-bottom: 0.8rem;
            font-weight: 800;
        }
        .section-header .section-sub {
            color: var(--text-muted);
            font-size: 1.05rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .section-divider {
            width: 50px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
            margin: 1rem auto 0;
            opacity: 0.6;
        }

        /* 三列卡片网格 */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.8rem;
        }
        .card {
            padding: 2.2rem 1.8rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background: var(--card-bg);
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
            cursor: default;
        }
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), #e056a0);
            transform: scaleX(0);
            transition: transform var(--transition);
            border-radius: 0 0 2px 2px;
        }
        .card:hover::before {
            transform: scaleX(1);
        }
        .card:hover {
            transform: translateY(-6px);
            background: #fff;
            box-shadow: var(--shadow-lg);
            border-color: rgba(108, 92, 231, 0.25);
        }
        .card .card-icon {
            font-size: 2.4rem;
            color: var(--accent);
            margin-bottom: 1.2rem;
            display: block;
            transition: transform var(--transition);
        }
        .card:hover .card-icon {
            transform: scale(1.12);
        }
        .card h3 {
            margin-bottom: 0.7rem;
            font-size: 1.25rem;
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        .card p {
            color: var(--text-secondary);
            font-size: 0.93rem;
            line-height: 1.65;
        }

        /* 深色历史/品牌面板 */
        .brand-panel {
            background: #1a1a2e;
            color: #e2e2f0;
            padding: 3.5rem clamp(2rem, 5vw, 4rem);
            border-radius: var(--radius-lg);
            margin: 3.5rem 0;
            position: relative;
            overflow: hidden;
        }
        .brand-panel::after {
            content: 'CLASHX';
            position: absolute;
            top: -10px;
            right: -20px;
            font-size: 7rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.025);
            pointer-events: none;
            letter-spacing: 0.15em;
            line-height: 1;
        }
        .brand-panel h2 {
            color: #fff;
            margin-bottom: 1.2rem;
            font-size: 2rem;
            letter-spacing: -0.03em;
            position: relative;
            z-index: 1;
        }
        .brand-panel p {
            color: #b0b0c8;
            font-size: 1.05rem;
            max-width: 750px;
            position: relative;
            z-index: 1;
            line-height: 1.75;
        }
        .brand-panel .brand-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 2rem;
            position: relative;
            z-index: 1;
        }
        .brand-highlights .highlight-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #d0d0e8;
            font-weight: 600;
            font-size: 0.95rem;
        }
        .brand-highlights .highlight-item i {
            color: var(--accent-glow);
            font-size: 1.3rem;
        }

        /* 双列内容区 */
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .info-block {
            padding: 1.8rem;
            border-left: 3px solid var(--accent);
            background: var(--surface-alt);
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            transition: all var(--transition);
        }
        .info-block:hover {
            background: #f5f3ff;
            border-left-color: #e056a0;
            box-shadow: var(--shadow-sm);
        }
        .info-block h4 {
            margin-bottom: 0.6rem;
            font-size: 1.1rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .info-block h4 i {
            color: var(--accent);
            font-size: 1rem;
        }
        .info-block p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.65;
        }

        /* 特性标签云 */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-top: 2.5rem;
        }
        .tag-cloud .tag {
            padding: 8px 18px;
            border-radius: 99px;
            background: var(--surface-alt);
            border: 1px solid var(--border);
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-secondary);
            transition: all var(--transition);
            text-decoration: none;
            cursor: pointer;
        }
        .tag-cloud .tag:hover {
            background: #f5f3ff;
            border-color: var(--accent-glow);
            color: var(--accent);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        /* ==================== 页脚 ==================== */
        footer {
            background: #111122;
            color: #a0a0b8;
            padding: 4rem clamp(1.5rem, 5vw, 6rem) 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-brand h4 {
            color: #fff;
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
            letter-spacing: -0.02em;
        }
        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.65;
            opacity: 0.8;
        }
        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-social a {
            color: #a0a0b8;
            transition: color var(--transition);
            text-decoration: none;
        }
        .footer-social a:hover {
            color: var(--accent-glow);
        }
        .footer-links h4 {
            color: #fff;
            margin-bottom: 1rem;
            font-size: 0.95rem;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }
        .footer-links a {
            display: block;
            color: #a0a0b8;
            text-decoration: none;
            margin-bottom: 0.65rem;
            font-size: 0.9rem;
            transition: color var(--transition);
            position: relative;
            padding-left: 14px;
        }
        .footer-links a::before {
            content: '→';
            position: absolute;
            left: 0;
            opacity: 0;
            transition: all var(--transition);
            color: var(--accent-glow);
        }
        .footer-links a:hover {
            color: #fff;
            padding-left: 18px;
        }
        .footer-links a:hover::before {
            opacity: 1;
        }
        .footer-bottom {
            border-top: 1px solid #1e1e38;
            margin-top: 3rem;
            padding-top: 1.8rem;
            text-align: center;
            font-size: 0.82rem;
            max-width: 1200px;
            margin-inline: auto;
            opacity: 0.7;
            line-height: 1.7;
        }

        /* ==================== 响应式设计 ==================== */
        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
            .dashboard-body {
                flex-direction: column;
            }
            .dashboard-graph {
                min-height: 150px;
            }
        }

        @media (max-width: 768px) {
            header {
                flex-wrap: wrap;
                padding: 0.8rem 1.2rem;
                gap: 0.6rem;
            }
            nav {
                gap: 0.8rem;
                flex-wrap: wrap;
                justify-content: center;
                width: 100%;
                order: 3;
                padding-top: 0.3rem;
            }
            nav a {
                font-size: 0.82rem;
                padding: 4px 6px;
            }
            .menu-toggle {
                display: block;
                order: 2;
            }
            .logo-wrap {
                order: 1;
            }
            .hero {
                padding: 3rem 1.2rem 2.5rem;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero-subtitle {
                font-size: 1rem;
            }
            .grid-3 {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .grid-2 {
                grid-template-columns: 1fr;
            }
            .brand-panel {
                padding: 2rem 1.5rem;
            }
            .brand-panel::after {
                font-size: 3.5rem;
                top: 0;
                right: -5px;
            }
            .brand-panel h2 {
                font-size: 1.5rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .cta-group {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 100%;
                justify-content: center;
                max-width: 300px;
            }
            .dashboard-body {
                padding: 16px 10px;
                gap: 8px;
            }
            .dashboard-stat .stat-value {
                font-size: 1.4rem;
            }
            .dashboard-graph {
                min-height: 100px;
            }
            .video-wrapper {
                margin-top: 2rem;
                border-radius: var(--radius);
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero-tag {
                font-size: 0.75rem;
                padding: 6px 14px;
            }
            nav {
                gap: 0.4rem;
            }
            nav a {
                font-size: 0.76rem;
                gap: 0.3rem;
            }
            .card {
                padding: 1.5rem 1.2rem;
            }
            .dashboard-stat {
                padding: 12px 10px;
            }
            .dashboard-stat .stat-value {
                font-size: 1.2rem;
            }
            .section-header h2 {
                font-size: 1.5rem;
            }
        }

        /* 打印样式 */
        @media print {
            header,
            footer,
            .video-wrapper,
            .cta-group,
            .hero-dashboard {
                display: none;
            }
            body {
                font-size: 14px;
                color: #000;
                background: #fff;
            }
            .hero {
                padding: 1rem 0;
                background: none;
            }
            .hero h1 {
                font-size: 1.8rem;
                color: #000;
            }
        }