        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f5f7fa;
            color: #1a1a2e;
            line-height: 1.6;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 头部导航（与首页一致） */
        header {
            background: #0f0f1a;
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid #2a2a3e;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .logo {
            font-size: 26px;
            font-weight: 700;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo svg {
            width: 32px;
            height: 32px;
            color: #6c5ce7;
            flex-shrink: 0;
        }
        .logo span {
            color: #6c5ce7;
        }
        .logo small {
            font-size: 14px;
            font-weight: 400;
            color: #a0a0b8;
            margin-left: 8px;
            letter-spacing: 0.5px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 28px;
            flex-wrap: wrap;
        }
        nav a {
            font-size: 15px;
            color: #c8c8e0;
            transition: color 0.2s;
            position: relative;
        }
        nav a:hover {
            color: #fff;
        }
        nav a.active {
            color: #6c5ce7;
            font-weight: 600;
        }
        .nav-download {
            background: #6c5ce7;
            color: #fff !important;
            padding: 8px 22px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            transition: background 0.2s;
        }
        .nav-download:hover {
            background: #5a4bd1;
            color: #fff !important;
        }
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }
        .nav-toggle span {
            display: block;
            width: 26px;
            height: 2px;
            background: #c8c8e0;
            border-radius: 2px;
            transition: 0.2s;
        }

        /* 通用板块 */
        .section-title {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #1a1a2e;
        }
        .section-sub {
            text-align: center;
            color: #666688;
            max-width: 600px;
            margin: 0 auto 48px;
            font-size: 17px;
        }
        .highlight {
            color: #6c5ce7;
        }

        /* 探索 Hero */
        .hero {
            padding: 70px 0 60px;
            background: linear-gradient(145deg, #0f0f1a 0%, #1a1a30 100%);
            color: #fff;
            border-bottom: 1px solid #2a2a3e;
            text-align: center;
        }
        .hero h1 {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 18px;
            color: #b0b0ca;
            max-width: 680px;
            margin: 0 auto 28px;
        }
        .btn-primary {
            background: #6c5ce7;
            color: #fff;
            padding: 14px 36px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            border: none;
            cursor: pointer;
            transition: background 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }
        .btn-primary:hover {
            background: #5a4bd1;
        }

        /* 技术剖析区 */
        .tech-deep {
            padding: 70px 0 50px;
            background: #fff;
        }
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 40px;
        }
        .tech-item {
            background: #f8f9fc;
            border-radius: 20px;
            padding: 32px;
            border: 1px solid #eaeaef;
        }
        .tech-item h3 {
            font-size: 22px;
            margin-bottom: 12px;
            color: #1a1a2e;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .tech-item h3 .icon {
            font-size: 28px;
        }
        .tech-item p {
            color: #666688;
            font-size: 15px;
            line-height: 1.7;
        }

        /* 实践场景 */
        .practices {
            padding: 60px 0 70px;
            background: #f5f7fa;
        }
        .practice-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .practice-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px;
            border: 1px solid #eaeaef;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .practice-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(108, 92, 231, 0.08);
        }
        .practice-card .tag {
            display: inline-block;
            background: #6c5ce7;
            color: #fff;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .practice-card h4 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #1a1a2e;
        }
        .practice-card p {
            font-size: 14px;
            color: #666688;
            line-height: 1.6;
        }

        /* 指南速览 */
        .guide-preview {
            padding: 70px 0 60px;
            background: #fff;
        }
        .guide-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 32px;
        }
        .guide-item {
            display: flex;
            align-items: center;
            gap: 18px;
            background: #f8f9fc;
            border-radius: 16px;
            padding: 20px 24px;
            border: 1px solid #eaeaef;
            transition: background 0.2s;
        }
        .guide-item:hover {
            background: #f0f0f8;
        }
        .guide-item .num {
            width: 36px;
            height: 36px;
            background: #6c5ce7;
            color: #fff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
        }
        .guide-item .text strong {
            display: block;
            font-size: 16px;
            margin-bottom: 4px;
        }
        .guide-item .text span {
            font-size: 14px;
            color: #8888aa;
        }

        /* CTA */
        .cta {
            padding: 60px 0 70px;
            background: #0f0f1a;
            color: #fff;
            text-align: center;
        }
        .cta h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .cta p {
            color: #b0b0ca;
            font-size: 17px;
            max-width: 500px;
            margin: 0 auto 28px;
        }

        /* 页脚（与首页一致） */
        footer {
            background: #0a0a14;
            color: #8888aa;
            padding: 40px 0 30px;
            border-top: 1px solid #1a1a2e;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
        }
        .footer-brand .logo {
            font-size: 22px;
            margin-bottom: 10px;
        }
        .footer-brand p {
            font-size: 14px;
            max-width: 260px;
            line-height: 1.7;
        }
        .footer-col h4 {
            color: #e0e0f0;
            font-size: 16px;
            margin-bottom: 14px;
            font-weight: 600;
        }
        .footer-col a {
            display: block;
            font-size: 14px;
            color: #8888aa;
            margin-bottom: 8px;
            transition: color 0.2s;
        }
        .footer-col a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid #1a1a2e;
            padding-top: 20px;
            margin-top: 30px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 13px;
        }

        /* 响应式 */
        @media (max-width: 992px) {
            .tech-grid {
                grid-template-columns: 1fr;
            }
            .practice-cards {
                grid-template-columns: 1fr 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 14px;
                padding: 16px 0 8px;
                border-top: 1px solid #2a2a3e;
                margin-top: 12px;
            }
            nav.open {
                display: flex;
            }
            .nav-toggle {
                display: flex;
            }
            .hero h1 {
                font-size: 30px;
            }
            .practice-cards {
                grid-template-columns: 1fr;
            }
            .guide-list {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .section-title {
                font-size: 26px;
            }
        }
        @media (max-width: 480px) {
            .hero {
                padding: 40px 0 40px;
            }
            .hero h1 {
                font-size: 26px;
            }
            .btn-primary {
                padding: 12px 24px;
                font-size: 14px;
            }
            .container {
                padding: 0 16px;
            }
        }