
        :root {
            --zmq67-primary: #0052D9;
            --zmq67-secondary: #7A5CFF;
            --zmq67-accent: #00F2FE;
            --zmq67-dark: #06113C;
            --zmq67-light: #F5F7FB;
            --zmq67-text: #1D1D1F;
            --zmq67-text-muted: #666666;
            --zmq67-white: #ffffff;
            --zmq67-radius: 20px;
            --zmq67-container-width: 1100px;
            --zmq67-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

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

        body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            background-color: var(--zmq67-white);
            color: var(--zmq67-text);
            line-height: 1.6;
            overflow-x: hidden;
            word-break: break-word;
        }

        /* 布局基础 */
        .zmq67-container {
            max-width: var(--zmq67-container-width);
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        .zmq67-flex {
            display: flex;
            flex-wrap: wrap;
        }

        .zmq67-flex-item {
            min-width: 0;
        }

        /* 导航栏 */
        .zmq67-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: var(--zmq67-transition);
        }

        .zmq67-nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 72px;
            flex-wrap: wrap;
        }

        .zmq67-logo {
            flex-shrink: 0;
            display: flex;
            align-items: center;
        }

        .zmq67-logo img {
            height: 32px;
            width: auto;
        }

        .zmq67-nav-menu {
            display: flex;
            list-style: none;
            gap: 20px;
            flex-wrap: wrap;
        }

        .zmq67-nav-link {
            text-decoration: none;
            color: var(--zmq67-text);
            font-size: 15px;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 8px;
            transition: var(--zmq67-transition);
        }

        .zmq67-nav-link:hover {
            color: var(--zmq67-primary);
            background: rgba(0, 82, 217, 0.05);
        }

        .zmq67-nav-link.zmq67-active {
            color: var(--zmq67-primary);
            background: rgba(0, 82, 217, 0.1);
        }

        /* Hero 区块 - 独特非对称布局 */
        .zmq67-hero {
            padding-top: 160px;
            padding-bottom: 96px;
            background: radial-gradient(circle at 90% 10%, rgba(122, 92, 255, 0.1) 0%, transparent 40%),
                        radial-gradient(circle at 10% 90%, rgba(0, 82, 217, 0.05) 0%, transparent 40%);
            position: relative;
            overflow: hidden;
        }

        .zmq67-hero-content {
            max-width: 700px;
            position: relative;
            z-index: 2;
        }

        .zmq67-hero-badge {
            display: inline-block;
            padding: 6px 16px;
            background: linear-gradient(90deg, var(--zmq67-primary), var(--zmq67-secondary));
            color: white;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
            box-shadow: 0 10px 20px rgba(0, 82, 217, 0.2);
        }

        .zmq67-hero-title {
            font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 24px;
            background: linear-gradient(135deg, var(--zmq67-dark) 30%, var(--zmq67-primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            word-break: keep-all;
        }

        .zmq67-hero-subtitle {
            font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
            color: var(--zmq67-text-muted);
            margin-bottom: 40px;
            max-width: 600px;
        }

        .zmq67-hero-visual {
            position: absolute;
            right: -10%;
            top: 15%;
            width: 50%;
            height: 70%;
            background: linear-gradient(135deg, rgba(0, 82, 217, 0.1), rgba(122, 92, 255, 0.1));
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 70%;
            filter: blur(60px);
            z-index: 1;
            animation: zmq67-morph 15s ease-in-out infinite;
        }

        @keyframes zmq67-morph {
            0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 70%; }
            50% { border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%; }
            100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 70%; }
        }

        /* 核心矩阵区 */
        .zmq67-section-title {
            text-align: center;
            margin-bottom: 64px;
        }

        .zmq67-section-title h2 {
            font-size: clamp(2rem, 3vw, 2.8rem);
            font-weight: 700;
            margin-bottom: 16px;
        }

        .zmq67-matrix-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
            gap: 32px;
        }

        .zmq67-matrix-card {
            background: var(--zmq67-white);
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: var(--zmq67-radius);
            padding: 40px;
            transition: var(--zmq67-transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .zmq67-matrix-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
            border-color: var(--zmq67-primary);
        }

        .zmq67-card-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 24px;
        }

        .zmq67-matrix-card:nth-child(1) .zmq67-card-icon { background: rgba(0, 82, 217, 0.1); color: var(--zmq67-primary); }
        .zmq67-matrix-card:nth-child(2) .zmq67-card-icon { background: rgba(10, 185, 121, 0.1); color: #0AB979; }
        .zmq67-matrix-card:nth-child(3) .zmq67-card-icon { background: rgba(255, 130, 0, 0.1); color: #FF8200; }
        .zmq67-matrix-card:nth-child(4) .zmq67-card-icon { background: rgba(240, 60, 60, 0.1); color: #F03C3C; }

        .zmq67-card-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .zmq67-capability-list {
            list-style: none;
            margin-bottom: 24px;
        }

        .zmq67-capability-item {
            padding-left: 24px;
            position: relative;
            margin-bottom: 12px;
            font-size: 15px;
            color: var(--zmq67-text-muted);
        }

        .zmq67-capability-item::before {
            content: '✦';
            position: absolute;
            left: 0;
            color: var(--zmq67-primary);
        }

        .zmq67-tech-highlight {
            margin-top: auto;
            padding-top: 20px;
            border-top: 1px dashed rgba(0, 0, 0, 0.1);
            font-size: 13px;
            font-weight: 600;
            color: var(--zmq67-primary);
        }

        /* 动态区块 */
        .zmq67-dynamic-section {
            padding: 96px 0;
            background-color: var(--zmq67-light);
            border-radius: 60px 60px 0 0;
        }

        /* 按钮样式 */
        .zmq67-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--zmq67-transition);
            cursor: pointer;
            border: none;
        }

        .zmq67-btn-primary {
            background: var(--zmq67-primary);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 82, 217, 0.3);
        }

        .zmq67-btn-primary:hover {
            background: #0045B8;
            transform: scale(1.02);
            box-shadow: 0 12px 25px rgba(0, 82, 217, 0.4);
        }

        /* 页脚 */
        .zmq67-footer {
            background: var(--zmq67-dark);
            color: rgba(255, 255, 255, 0.8);
            padding: 80px 0 40px;
        }

        .zmq67-footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 48px;
            margin-bottom: 64px;
        }

        .zmq67-footer-brand h3 {
            color: white;
            font-size: 20px;
            margin-bottom: 16px;
        }

        .zmq67-footer-links h4 {
            color: white;
            font-size: 16px;
            margin-bottom: 24px;
        }

        .zmq67-footer-links ul {
            list-style: none;
        }

        .zmq67-footer-links li {
            margin-bottom: 12px;
        }

        .zmq67-footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: var(--zmq67-transition);
        }

        .zmq67-footer-links a:hover {
            color: var(--zmq67-accent);
        }

        .zmq67-footer-bottom {
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 14px;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .zmq67-matrix-grid {
                grid-template-columns: 1fr;
            }
            .zmq67-hero-content {
                text-align: center;
                margin: 0 auto;
            }
            .zmq67-hero-visual {
                display: none;
            }
            .zmq67-nav-menu {
                display: none; /* 简化移动端，实际开发中应有汉堡菜单 */
            }
        }
    