        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        :root {
            --primary: #0f4c81;
            --primary-dark: #0a3559;
            --accent: #00c9a7;
            --accent-hover: #00b394;
            --bg: #f6fafd;
            --card: #ffffff;
            --text: #1a2b3c;
            --text-secondary: #4d6277;
            --border: #e8eef5;
            --shadow: 0 8px 30px rgba(15, 76, 129, 0.08);
            --shadow-hover: 0 16px 48px rgba(15, 76, 129, 0.16);
            --radius: 18px;
            --radius-sm: 12px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        body {
            font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.75;
            color: var(--text);
            background-color: var(--bg);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a { color: inherit; text-decoration: none; transition: color var(--transition); }
        img { max-width: 100%; display: block; }

        .header {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
            transition: box-shadow var(--transition);
        }
        .header.scrolled { box-shadow: 0 4px 32px rgba(15, 76, 129, 0.1); }
        .nav-container {
            max-width: 1360px;
            margin: 0 auto;
            padding: 0.6rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .logo-link {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.5px;
            white-space: nowrap;
        }
        .logo-icon { width: 40px; height: 40px; flex-shrink: 0; }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
            list-style: none;
        }
        .nav-links a {
            padding: 0.5rem 1rem;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-secondary);
            border-radius: 30px;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .nav-links a:hover, .nav-links a.active {
            color: var(--primary);
            background: rgba(15, 76, 129, 0.06);
        }
        .nav-links a.active {
            font-weight: 700;
            background: rgba(15, 76, 129, 0.1);
        }
        .nav-cta {
            background: var(--accent);
            color: #fff !important;
            padding: 0.55rem 1.4rem !important;
            border-radius: 30px !important;
            font-weight: 700 !important;
            box-shadow: 0 4px 16px rgba(0, 201, 167, 0.35);
        }
        .nav-cta:hover {
            background: var(--accent-hover) !important;
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(0, 201, 167, 0.45);
        }

        .hero {
            position: relative;
            background: linear-gradient(160deg, #081c34 0%, #0f4c81 45%, #0a3d6b 100%);
            color: #fff;
            padding: 5rem 2rem 5.5rem;
            text-align: center;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(ellipse at 30% 20%, rgba(0, 201, 167, 0.12) 0%, transparent 55%),
                radial-gradient(ellipse at 70% 80%, rgba(15, 76, 129, 0.4) 0%, transparent 50%);
            animation: heroGlow 12s ease-in-out infinite alternate;
            pointer-events: none;
        }
        @keyframes heroGlow {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(3%, -3%) rotate(3deg); }
        }
        .hero-content { position: relative; z-index: 1; max-width: 950px; margin: 0 auto; }
        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            padding: 0.4rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 2rem;
            color: rgba(255,255,255,0.85);
        }
        .hero-badge span { color: var(--accent); font-weight: 700; }
        .hero h1 {
            font-size: clamp(2.2rem, 5vw, 3.2rem);
            line-height: 1.2;
            margin-bottom: 1.5rem;
            font-weight: 800;
            letter-spacing: -1px;
        }
        .hero h1 .highlight {
            background: linear-gradient(135deg, #00e5c0, #00c9a7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.88;
            max-width: 750px;
            margin: 0 auto 2.5rem;
            line-height: 1.9;
        }
        .btn-primary {
            display: inline-block;
            background: var(--accent);
            color: #fff;
            padding: 0.9rem 2.4rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.05rem;
            box-shadow: 0 8px 24px rgba(0, 201, 167, 0.4);
            transition: all var(--transition);
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0, 201, 167, 0.55);
        }
        .btn-secondary {
            display: inline-block;
            background: rgba(255,255,255,0.08);
            color: #fff;
            padding: 0.9rem 2.4rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.05rem;
            border: 1px solid rgba(255,255,255,0.25);
            transition: all var(--transition);
        }
        .btn-secondary:hover {
            background: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.4);
            transform: translateY(-3px);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3.5rem 2rem;
        }
        .section-title {
            text-align: center;
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            margin-bottom: 0.8rem;
            color: var(--text);
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        .section-subtitle {
            text-align: center;
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 680px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        /* Knowledge Cards */
        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        .knowledge-card {
            background: var(--card);
            padding: 2.2rem 1.8rem;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            transition: all var(--transition);
        }
        .knowledge-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: rgba(15,76,129,0.15); }
        .knowledge-icon { font-size: 2.2rem; margin-bottom: 1rem; }
        .knowledge-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 0.8rem; }
        .knowledge-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; }

        /* Analogy section */
        .analogy-box {
            background: linear-gradient(135deg, #f0f7fb 0%, #e8f4f0 100%);
            border-radius: var(--radius);
            padding: 3rem 2rem;
            margin: 3rem 0;
            text-align: center;
        }
        .analogy-box h3 { font-size: 1.5rem; font-weight: 800; color: var(--primary); margin-bottom: 1rem; }
        .analogy-box p { font-size: 1.05rem; color: var(--text-secondary); max-width: 800px; margin: 0 auto; line-height: 1.9; }
        .analogy-steps {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }
        .analogy-step {
            background: #fff;
            border-radius: var(--radius-sm);
            padding: 1.5rem;
            text-align: center;
            min-width: 180px;
            flex: 1;
            box-shadow: var(--shadow);
        }
        .analogy-step .step-emoji { font-size: 2rem; margin-bottom: 0.5rem; }
        .analogy-step h4 { font-weight: 700; margin-bottom: 0.4rem; }
        .analogy-step p { font-size: 0.85rem; color: var(--text-secondary); }

        /* Comparison Table */
        .comparison-wrapper {
            overflow-x: auto;
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 2rem 0;
        }
        .comparison-table { width: 100%; border-collapse: collapse; min-width: 700px; }
        .comparison-table th, .comparison-table td {
            text-align: left;
            padding: 1.2rem 1.5rem;
            border-bottom: 1px solid var(--border);
            font-size: 0.95rem;
        }
        .comparison-table thead th {
            background: #f0f7fb;
            font-weight: 700;
            color: var(--primary);
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .comparison-table tbody tr:last-child td { border-bottom: none; }
        .comparison-table tbody tr:hover { background: #fafdff; }
        .badge-yes { color: #00a854; font-weight: 700; }
        .badge-no { color: #e53e3e; font-weight: 700; }
        .badge-partial { color: #dd6b20; font-weight: 600; }

        /* Knowledge Timeline */
        .timeline-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        .timeline-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 2rem;
            border: 1px solid var(--border);
            position: relative;
            transition: all var(--transition);
        }
        .timeline-card:hover { box-shadow: var(--shadow); }
        .timeline-badge {
            display: inline-block;
            background: rgba(15, 76, 129, 0.08);
            color: var(--primary);
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .timeline-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
        .timeline-card p { font-size: 0.92rem; color: var(--text-secondary); }

        /* FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 0.5rem 2rem;
        }
        .faq-item {
            border-bottom: 1px solid var(--border);
            padding: 1.2rem 0;
            cursor: pointer;
        }
        .faq-item:last-child { border-bottom: none; }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--text);
            gap: 1rem;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding-top 0.3s ease-out;
            color: var(--text-secondary);
            font-size: 0.95rem;
            padding-top: 0;
        }
        .faq-item.active .faq-answer { max-height: 600px; padding-top: 1rem; }
        .faq-icon { transition: transform 0.3s; font-size: 1.2rem; color: var(--accent); flex-shrink: 0; }
        .faq-item.active .faq-icon { transform: rotate(180deg); }

        /* CTA */
        .cta-inline {
            background: linear-gradient(135deg, #081c34 0%, #0f4c81 100%);
            border-radius: var(--radius);
            padding: 2.5rem 2rem;
            text-align: center;
            color: #fff;
            margin: 3rem 0;
        }
        .cta-inline h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.8rem; }
        .cta-inline p { opacity: 0.85; max-width: 600px; margin: 0 auto 1.5rem; }

        footer {
            background: #081c34;
            color: #a0b8cc;
            padding: 4rem 2rem 2rem;
            font-size: 0.9rem;
            margin-top: 4rem;
        }
        .footer-content {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2.5rem;
        }
        .footer-col h5 { color: #fff; font-size: 1rem; margin-bottom: 1.2rem; font-weight: 700; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 0.6rem; }
        .footer-col a { color: #a0b8cc; transition: color var(--transition); }
        .footer-col a:hover { color: #fff; }
        .footer-bottom {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.7;
            font-size: 0.85rem;
        }

        @media (max-width: 900px) {
            .nav-container { flex-direction: column; align-items: center; }
            .nav-links { justify-content: center; }
            .footer-content { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 600px) {
            .footer-content { grid-template-columns: 1fr; }
        }