        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
            background: #fefefe;
            color: #11181c;
            line-height: 1.45;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* 导航 */
        .site-header {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: box-shadow 0.3s ease;
        }
        .site-header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .header-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            flex-wrap: wrap;
            gap: 20px;
        }
        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            flex-shrink: 0;
        }
        .brand-logo-img {
            width: 38px;
            height: 38px;
            object-fit: contain;
            border-radius: 8px;
            flex-shrink: 0;
        }
        .brand-name {
            font-size: 1.55rem;
            font-weight: 700;
            letter-spacing: -0.4px;
            color: #0c4e6e;
            white-space: nowrap;
        }
        .brand-name span {
            font-weight: 400;
            color: #5a7d8c;
            font-size: 0.85rem;
            letter-spacing: 0;
            margin-left: 2px;
        }
        .nav-links-new {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links-new a {
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            color: #2c3e50;
            transition: color 0.2s, transform 0.15s;
            position: relative;
            white-space: nowrap;
        }
        .nav-links-new a:hover,
        .nav-links-new a.active {
            color: #1f7b8c;
        }
        .nav-links-new a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #1f7b8c;
            border-radius: 2px;
            transition: width 0.25s ease;
        }
        .nav-links-new a:hover::after,
        .nav-links-new a.active::after {
            width: 100%;
        }
        .btn-ghost {
            border: 1px solid #cbd5e1;
            padding: 7px 20px;
            border-radius: 100px;
            background: transparent;
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            color: #2c3e50;
            white-space: nowrap;
        }
        .btn-ghost:hover {
            border-color: #1f7b8c;
            color: #1f7b8c;
            background: #f0faf9;
        }

        /* 页面标题 */
        .page-hero {
            padding: 50px 0 30px;
            text-align: center;
            background: #ffffff;
        }
        .page-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.025em;
            background: linear-gradient(135deg, #134e6f 0%, #1e6b5e 60%, #2a7f6e 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 10px;
        }
        .page-hero .lead {
            font-size: 1.1rem;
            color: #3e5a6c;
            max-width: 700px;
            margin: 0 auto 20px;
            line-height: 1.55;
        }
        .badge-new {
            background: #e6f7f5;
            color: #0f6e6a;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.82rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 18px;
        }
        .pulse-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #0f6e6a;
            border-radius: 50%;
            animation: softPulse 2s infinite;
            margin-right: 6px;
            vertical-align: middle;
        }
        @keyframes softPulse {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }

        /* 核心论述区 */
        .argument-section {
            padding: 40px 0;
            background: #f9fbfd;
        }
        .argument-content {
            max-width: 860px;
            margin: 0 auto;
        }
        .argument-content h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #1a3c4a;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }
        .argument-content p {
            font-size: 1rem;
            color: #3e5a6c;
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .quote-box {
            background: #ffffff;
            border-left: 5px solid #0f6e6a;
            padding: 20px 24px;
            border-radius: 0 16px 16px 0;
            margin: 24px 0;
            font-size: 1.05rem;
            font-weight: 600;
            color: #1a4d55;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        }
        .versus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        .versus-card {
            background: #fff;
            border-radius: 20px;
            padding: 22px 20px;
            border: 1px solid #e8eef3;
            transition: all 0.2s;
        }
        .versus-card.bad {
            border-left: 4px solid #d4a0a0;
        }
        .versus-card.good {
            border-left: 4px solid #0f6e6a;
            background: #fafdfc;
        }
        .versus-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #1a3c4a;
        }
        .versus-card ul {
            list-style: none;
            padding: 0;
        }
        .versus-card ul li {
            font-size: 0.88rem;
            color: #5c7380;
            padding: 4px 0;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .versus-card ul li::before {
            content: '✗';
            color: #c06060;
            font-weight: 700;
        }
        .versus-card.good ul li::before {
            content: '✓';
            color: #0f6e6a;
            font-weight: 700;
        }

        /* Shadowrocket优势详解 */
        .advantage-section {
            padding: 50px 0;
            background: #ffffff;
        }
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        .section-title h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1a3c4a;
            letter-spacing: -0.02em;
        }
        .section-title .subtitle {
            color: #5c7380;
            font-size: 1rem;
            margin-top: 6px;
        }
        .adv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 22px;
        }
        .adv-card {
            background: #fafcfd;
            border: 1px solid #e8eef3;
            border-radius: 22px;
            padding: 24px 20px;
            transition: all 0.25s;
            text-align: center;
        }
        .adv-card:hover {
            border-color: #cce6e4;
            transform: translateY(-4px);
            box-shadow: 0 12px 24px -10px rgba(0,0,0,0.06);
        }
        .adv-icon {
            font-size: 2.3rem;
            margin-bottom: 12px;
        }
        .adv-card h4 {
            font-size: 1.15rem;
            font-weight: 700;
            color: #1a3c4a;
            margin-bottom: 6px;
        }
        .adv-card p {
            font-size: 0.88rem;
            color: #5c7380;
            line-height: 1.5;
        }

        /* 下载入口区 */
        .cta-section {
            padding: 40px 0 50px;
            background: #f9fbfd;
        }
        .cta-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .cta-card {
            background: #fff;
            border-radius: 22px;
            padding: 24px 26px;
            border: 1px solid #e8eef3;
            flex: 1 1 220px;
            max-width: 320px;
            text-decoration: none;
            color: inherit;
            transition: all 0.25s;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .cta-card:hover {
            border-color: #0f6e6a;
            background: #fafdfc;
            transform: translateY(-3px);
            box-shadow: 0 12px 24px -10px rgba(15,110,106,0.08);
        }
        .cta-card h4 {
            font-size: 1.15rem;
            font-weight: 700;
            color: #1a3c4a;
        }
        .cta-card p {
            font-size: 0.88rem;
            color: #5c7380;
            line-height: 1.4;
        }
        .cta-arrow {
            color: #0f6e6a;
            font-weight: 700;
            font-size: 0.95rem;
        }

        /* 页脚 */
        .footer-alt {
            background: #f1f5f9;
            border-top: none;
            padding: 44px 0 32px;
            font-size: 0.9rem;
            color: #5c7380;
        }
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 32px;
        }
        .footer-col h5 {
            font-weight: 700;
            color: #1a3c4a;
            margin-bottom: 10px;
            font-size: 0.95rem;
        }
        .footer-col a {
            display: block;
            color: #5c7380;
            text-decoration: none;
            margin-bottom: 6px;
            transition: color 0.2s;
            font-size: 0.88rem;
        }
        .footer-col a:hover {
            color: #1f7b8c;
        }
        .footer-bottom {
            text-align: center;
            margin-top: 28px;
            padding-top: 20px;
            border-top: 1px solid #dde4ea;
            font-size: 0.82rem;
            color: #8a9ba7;
        }

        @media (max-width: 780px) {
            .page-hero h1 {
                font-size: 2rem;
            }
            .container {
                padding: 0 20px;
            }
            .nav-links-new {
                gap: 14px;
            }
            .nav-links-new a {
                font-size: 0.85rem;
            }
            .brand-name span {
                display: none;
            }
            .brand-name {
                font-size: 1.3rem;
            }
            .argument-content h2 {
                font-size: 1.5rem;
            }
            .versus-grid {
                grid-template-columns: 1fr;
            }
            .adv-grid {
                grid-template-columns: 1fr 1fr;
            }
            .cta-grid {
                flex-direction: column;
                align-items: stretch;
            }
            .cta-card {
                max-width: none;
            }
        }
        @media (max-width: 480px) {
            .adv-grid {
                grid-template-columns: 1fr;
            }
            .page-hero h1 {
                font-size: 1.7rem;
            }
            .header-flex {
                gap: 12px;
            }
        }