        *, *::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);
            --green: #00a854;
            --yellow: #e6a700;
            --red: #e53e3e;
            --purple: #7c3aed;
            --blue: #3b82f6;
        }
        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;
        }

        /* Version Summary Cards */
        .summary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .summary-card {
            background: var(--card);
            padding: 1.8rem;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            text-align: center;
            transition: all var(--transition);
        }
        .summary-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .summary-value {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
        }
        .summary-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-top: 0.3rem;
        }

        /* Timeline */
        .timeline {
            position: relative;
            max-width: 850px;
            margin: 0 auto;
            padding: 2rem 0;
        }
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 3px;
            background: linear-gradient(to bottom, var(--accent), var(--primary), var(--accent));
            transform: translateX(-50%);
            border-radius: 3px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
            width: 50%;
            padding-right: 2.5rem;
        }
        .timeline-item:nth-child(even) {
            left: 50%;
            padding-right: 0;
            padding-left: 2.5rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            top: 1.2rem;
            right: -8px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--accent);
            border: 3px solid #fff;
            box-shadow: 0 0 0 4px rgba(0, 201, 167, 0.3);
            z-index: 1;
        }
        .timeline-item:nth-child(even)::before {
            right: auto;
            left: -8px;
        }
        .timeline-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 2rem;
            border: 1px solid var(--border);
            transition: all var(--transition);
            box-shadow: var(--shadow);
        }
        .timeline-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .version-badge {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 0.8rem;
        }
        .version-badge.latest {
            background: var(--accent);
            color: #fff;
        }
        .version-badge.beta {
            background: var(--yellow);
        }
        .version-date {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }
        .timeline-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }
        .changelog-list {
            list-style: none;
            padding: 0;
        }
        .changelog-list li {
            padding: 0.3rem 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        .tag {
            display: inline-block;
            padding: 0.1rem 0.6rem;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 0.3rem;
        }
        .tag-new {
            background: rgba(0, 168, 84, 0.12);
            color: var(--green);
        }
        .tag-optimize {
            background: rgba(59, 130, 246, 0.12);
            color: var(--blue);
        }
        .tag-fix {
            background: rgba(230, 167, 0, 0.12);
            color: var(--yellow);
        }

        /* Feature Highlights */
        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        .highlight-card {
            background: var(--card);
            padding: 2rem 1.8rem;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            transition: all var(--transition);
            text-align: center;
        }
        .highlight-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(15, 76, 129, 0.2);
        }
        .highlight-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .highlight-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .highlight-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .highlight-version {
            display: inline-block;
            margin-top: 0.8rem;
            background: rgba(15, 76, 129, 0.06);
            color: var(--primary);
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
        }

        /* Update Frequency */
        .frequency-banner {
            background: linear-gradient(135deg, #f0f7fb 0%, #e8f4f0 100%);
            border-radius: var(--radius);
            padding: 3rem 2rem;
            margin: 3rem 0;
            text-align: center;
        }
        .frequency-banner h2 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        .frequency-bars {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 2rem;
        }
        .freq-item {
            background: #fff;
            padding: 1.5rem;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow);
            text-align: center;
            min-width: 140px;
            transition: all var(--transition);
        }
        .freq-item:hover {
            transform: translateY(-4px);
        }
        .freq-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
        }
        .freq-label {
            font-size: 0.85rem;
            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;
            }
            .timeline::before {
                left: 16px;
            }
            .timeline-item {
                width: 100%;
                left: 0 !important;
                padding-left: 2.5rem !important;
                padding-right: 0 !important;
            }
            .timeline-item::before {
                left: 8px !important;
                right: auto !important;
            }
        }
        @media (max-width: 600px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
            .faq-section {
                padding: 1.5rem;
            }
        }