        * {
            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;
        }

        /* 英雄区 */
        .hero-alternative {
            padding: 60px 0 50px;
            background: #ffffff;
            overflow: hidden;
        }
        .hero-split {
            display: flex;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
        }
        .hero-text {
            flex: 1.2;
            min-width: 300px;
        }
        .badge-new {
            background: #e6f7f5;
            color: #0f6e6a;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.82rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 22px;
            letter-spacing: 0.01em;
        }
        .hero-text h1 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.18;
            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: 18px;
        }
        .hero-text .hero-subtitle {
            font-size: 1.15rem;
            color: #3e5a6c;
            margin-bottom: 30px;
            max-width: 540px;
            line-height: 1.55;
        }
        .hero-stats {
            flex: 0.85;
            min-width: 280px;
            background: #f7fafc;
            border-radius: 40px;
            padding: 36px 30px;
            box-shadow: 0 20px 35px -15px rgba(0, 0, 0, 0.05);
            border: 1px solid #eef2f9;
        }
        .stat-item {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 24px;
        }
        .stat-item:last-child {
            margin-bottom: 0;
        }
        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #186d6a;
            min-width: 60px;
        }
        .stat-label {
            font-size: 0.95rem;
            color: #4a5f6b;
            font-weight: 500;
        }

        /* 设备卡片入口 */
        .device-cards-section {
            padding: 10px 0 50px;
            background: #ffffff;
        }
        .device-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }
        .device-card {
            background: #fafcfd;
            border: 1px solid #e8eef3;
            border-radius: 24px;
            padding: 26px 22px;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }
        .device-card:hover {
            transform: translateY(-5px);
            border-color: #b8d8d4;
            box-shadow: 0 16px 32px -12px rgba(15, 110, 106, 0.12);
            background: #ffffff;
        }
        .device-card .card-icon {
            font-size: 2.2rem;
            line-height: 1;
        }
        .device-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1a3c4a;
        }
        .device-card p {
            font-size: 0.88rem;
            color: #5c7380;
            line-height: 1.4;
        }
        .device-card .card-arrow {
            font-size: 0.85rem;
            color: #1f7b8c;
            font-weight: 600;
            margin-top: auto;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .device-card.card-highlight {
            background: linear-gradient(135deg, #f0faf8 0%, #e6f4f1 100%);
            border-color: #c0dfd9;
        }

        /* 特性卡片 */
        .features-modern {
            padding: 70px 0;
            background: #f9fbfd;
        }
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-header h2 {
            font-size: 2.1rem;
            font-weight: 700;
            color: #1a3c4a;
            letter-spacing: -0.02em;
        }
        .section-header .section-subtitle {
            color: #5c7380;
            font-size: 1rem;
            margin-top: 8px;
        }
        .feature-cards-alt {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 32px;
        }
        .feature-alt {
            background: white;
            border-radius: 28px;
            padding: 30px 26px;
            transition: all 0.25s;
            border: 1px solid #e9edf2;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
        }
        .feature-alt:hover {
            transform: translateY(-6px);
            border-color: #cce6e4;
            box-shadow: 0 18px 28px -14px rgba(0, 0, 0, 0.08);
        }
        .feature-emoji {
            font-size: 2.5rem;
            margin-bottom: 16px;
            line-height: 1;
        }
        .feature-alt h3 {
            font-size: 1.35rem;
            margin-bottom: 10px;
            color: #1a3c4a;
        }
        .feature-alt p {
            color: #4a5f6b;
            font-size: 0.93rem;
            line-height: 1.5;
        }

        /* 什么是Shadowrocket */
        .about-section {
            padding: 70px 0;
            background: #ffffff;
        }
        .about-content {
            max-width: 900px;
            margin: 0 auto;
        }
        .about-content h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1a3c4a;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }
        .about-content p {
            font-size: 1.02rem;
            color: #3e5a6c;
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .about-content .highlight-box {
            background: #f6faf9;
            border-left: 4px solid #1f7b8c;
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
            font-weight: 500;
            color: #1a4d55;
        }

        /* 场景卡片 */
        .scenarios-section {
            padding: 70px 0;
            background: #f9fbfd;
        }
        .scenarios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 28px;
        }
        .scenario-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 28px 24px;
            border: 1px solid #e8eef3;
            transition: all 0.25s;
        }
        .scenario-card:hover {
            border-color: #c0dfd9;
            box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.06);
            transform: translateY(-3px);
        }
        .scenario-card .sc-icon {
            font-size: 2.3rem;
            margin-bottom: 12px;
        }
        .scenario-card h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a3c4a;
            margin-bottom: 8px;
        }
        .scenario-card p {
            font-size: 0.9rem;
            color: #5c7380;
            line-height: 1.55;
        }

        /* 探索导航 */
        .explore-nav-section {
            padding: 60px 0;
            background: #ffffff;
        }
        .explore-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
        }
        .explore-link-card {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 18px;
            background: #fafcfd;
            border: 1px solid #e8eef3;
            border-radius: 16px;
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            transition: all 0.2s;
            font-size: 0.93rem;
        }
        .explore-link-card:hover {
            border-color: #1f7b8c;
            background: #f6fbfa;
            color: #1f7b8c;
            transform: translateX(4px);
        }
        .explore-link-card .exp-arrow {
            color: #1f7b8c;
            font-weight: 700;
            flex-shrink: 0;
        }

        /* 隐私卡片 */
        .privacy-card {
            background: #1f2f3a;
            color: white;
            border-radius: 40px;
            margin: 50px 0;
            padding: 44px 46px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
        }
        .privacy-text h3 {
            font-size: 1.7rem;
            margin-bottom: 10px;
            font-weight: 700;
        }
        .privacy-text p {
            color: #c5d4dc;
            font-size: 0.95rem;
            max-width: 500px;
            line-height: 1.5;
        }
        .privacy-badge {
            background: rgba(47, 141, 126, 0.25);
            border-radius: 60px;
            padding: 10px 26px;
            font-weight: 500;
            font-size: 0.9rem;
            white-space: nowrap;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        /* 页脚 */
        .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) {
            .hero-split {
                flex-direction: column;
            }
            .hero-text h1 {
                font-size: 2.3rem;
            }
            .container {
                padding: 0 20px;
            }
            .privacy-card {
                flex-direction: column;
                text-align: center;
                gap: 18px;
                padding: 32px 24px;
            }
            .device-cards-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .device-card {
                padding: 20px 16px;
            }
            .device-card h4 {
                font-size: 0.95rem;
            }
            .device-card p {
                font-size: 0.8rem;
            }
            .nav-links-new {
                gap: 14px;
            }
            .nav-links-new a {
                font-size: 0.85rem;
            }
            .brand-name {
                font-size: 1.3rem;
            }
            .brand-name span {
                display: none;
            }
            .feature-cards-alt {
                grid-template-columns: 1fr;
            }
            .scenarios-grid {
                grid-template-columns: 1fr 1fr;
            }
            .explore-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .device-cards-grid {
                grid-template-columns: 1fr;
            }
            .scenarios-grid {
                grid-template-columns: 1fr;
            }
            .explore-grid {
                grid-template-columns: 1fr;
            }
            .hero-text h1 {
                font-size: 1.9rem;
            }
            .stat-number {
                font-size: 1.5rem;
                min-width: 44px;
            }
            .header-flex {
                gap: 12px;
            }
        }