 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #fafcff;
            color: #0a1e2f;
            line-height: 1.5;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        header {
            background: rgba(255,255,255,0.94);
            backdrop-filter: blur(12px);
            box-shadow: 0 2px 12px rgba(0,0,0,0.02);
            position: sticky;
            top: 0;
            z-index: 50;
            border-bottom: 1px solid #e2eaf2;
        }
        .header-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 14px 0;
        }
        .logo-area h1 {
            font-size: 1.8rem;
            font-weight: 750;
            background: linear-gradient(145deg, #0f2b4b, #2563eb);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.4px;
        }
        .logo-area p {
            font-size: 0.75rem;
            color: #54708f;
            margin-top: 4px;
        }
        .nav-links {
            display: flex;
            gap: 1.8rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 530;
            color: #1e2f44;
            transition: color 0.15s;
            font-size: 0.95rem;
        }
        .nav-links a:hover, .nav-links a.active {
            color: #2563eb;
        }

        /* 页面标题 */
        .kernel-hero {
            text-align: center;
            margin: 56px 0 36px;
        }
        .kernel-hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #0a1c2f, #1e4bd2);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
        }
        .sub-evolution {
            font-size: 1.3rem;
            color: #2e5a8c;
            margin-top: 8px;
        }

        /* 时间线演化 */
        .timeline {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 60px 0;
            background: white;
            border-radius: 48px;
            padding: 36px 28px;
            border: 1px solid #e2ecf9;
        }
        .timeline-node {
            flex: 1;
            min-width: 140px;
            text-align: center;
            padding: 16px 8px;
        }
        .node-year {
            background: #1e3b63;
            color: white;
            padding: 8px 0;
            border-radius: 60px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .node-name {
            font-size: 1.5rem;
            font-weight: 750;
            margin-bottom: 8px;
        }
        .node-desc {
            color: #3e5f82;
            font-size: 0.9rem;
        }
        .arrow-symbol {
            font-size: 2.5rem;
            color: #3b82f6;
            align-self: center;
        }

        /* 架构对比卡片 */
        .compare-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 50px 0;
        }
        .compare-card {
            background: white;
            border-radius: 40px;
            padding: 36px 32px;
            box-shadow: 0 25px 35px -14px rgba(0,35,70,0.06);
            border: 1px solid #eaf0fa;
        }
        .card-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 30px;
        }
        .card-header h2 {
            font-size: 2rem;
            font-weight: 750;
        }
        .clash-badge {
            background: #94a3b8;
            color: white;
            padding: 6px 20px;
            border-radius: 40px;
            font-weight: 600;
        }
        .mihomo-badge {
            background: #2563eb;
            color: white;
            padding: 6px 20px;
            border-radius: 40px;
            font-weight: 600;
        }
        .feature-list {
            list-style: none;
        }
        .feature-list li {
            margin-bottom: 20px;
            display: flex;
            gap: 12px;
            align-items: baseline;
        }
        .check-blue {
            color: #2563eb;
            font-weight: bold;
        }
        .check-gray {
            color: #64748b;
        }

        /* 一句话总结卡片 */
        .summary-box {
            background: linear-gradient(145deg, #0f2b4b, #1e3a5f);
            border-radius: 60px;
            padding: 48px 48px;
            margin: 50px 0;
            text-align: center;
            color: white;
        }
        .summary-box h3 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 16px;
        }
        .engine-quote {
            font-size: 1.8rem;
            font-weight: 500;
            opacity: 0.9;
        }

        /* 号召下载 */
        .cta-kernel {
            background: white;
            border-radius: 60px;
            padding: 48px 40px;
            margin: 60px 0;
            text-align: center;
            border: 1px solid #d4e2f5;
        }
        .btn-download-engine {
            background: #0f2b4b;
            color: white;
            padding: 18px 54px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.3rem;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
            transition: 0.2s;
            cursor: pointer;
            border: none;
        }

        footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 40px 0 24px;
            margin-top: 40px;
            border-top: 1px solid #1e293b;
        }
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 32px;
        }
        .footer-copyright {
            text-align: center;
            padding-top: 32px;
            font-size: 0.85rem;
            border-top: 1px solid #1e293b;
            margin-top: 24px;
        }

        @media (max-width: 800px) {
            .compare-grid { grid-template-columns: 1fr; }
            .timeline { flex-direction: column; }
            .arrow-symbol { transform: rotate(90deg); }
            .kernel-hero h1 { font-size: 2.2rem; }
        }