        :root {
            --bg-warm: #fdf8f2;
            --bg-card: #fffdf9;
            --bg-cream: #faf5ed;
            --text-deep: #2c221c;
            --text-mid: #5c4a38;
            --text-light: #7d6b56;
            --accent-amber: #c87d2c;
            --accent-deep: #9e5f1d;
            --accent-glow: #e8a44c;
            --link-teal: #2d7d6c;
            --link-teal-hover: #1e5c4e;
            --header-bg: #1f1a14;
            --header-text: #e8dcc8;
            --border-subtle: #e8ddd0;
            --shadow-card: 0 8px 22px -10px rgba(80, 40, 10, 0.10);
            --shadow-hover: 0 18px 32px -12px rgba(80, 40, 10, 0.18);
            --gradient-hero: radial-gradient(circle at 50% 30%, rgba(200, 125, 44, 0.10) 0%, transparent 70%),
                radial-gradient(circle at 20% 60%, rgba(45, 125, 108, 0.06) 0%, transparent 60%);
            --radius-lg: 1.8rem;
            --radius-md: 1.2rem;
            --radius-sm: 0.7rem;
            --font-stack: system-ui, -apple-system, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-stack);
            background: var(--bg-warm);
            color: var(--text-deep);
            line-height: 1.65;
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            max-width: 1260px;
            margin: 0 auto;
            padding: 0 1.8rem;
        }

        /* Header */
        .site-header {
            background: var(--header-bg);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 16px rgba(0, 0, 0, 0.25);
        }

        .navbar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0.85rem 0;
            gap: 1rem;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: linear-gradient(135deg, #e8a44c 0%, #c87d2c 60%, #a05c18 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.1rem;
            color: #fff;
            letter-spacing: -0.5px;
            flex-shrink: 0;
        }

        .logo-text {
            font-size: 1.55rem;
            font-weight: 700;
            color: #e8dcc8;
            letter-spacing: -0.3px;
            white-space: nowrap;
        }

        .logo-badge {
            font-size: 0.65rem;
            background: rgba(232, 164, 76, 0.2);
            padding: 0.18rem 0.55rem;
            border-radius: 20px;
            color: #e8a44c;
            font-weight: 600;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            gap: 1.6rem;
            list-style: none;
            flex-wrap: wrap;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #c4b89a;
            transition: color var(--transition-fast);
            font-size: 0.95rem;
            white-space: nowrap;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #e8a44c;
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: #e8a44c;
            border-radius: 1px;
        }

        /* Hero */
        .hero {
            padding: 4.5rem 0 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: var(--bg-cream);
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 520px;
            height: 520px;
            background: var(--gradient-hero);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }
        .hero>* {
            position: relative;
            z-index: 1;
        }
        .hero h1 {
            font-size: 3.3rem;
            font-weight: 800;
            background: linear-gradient(125deg, #3d2814 0%, #7a4e24 50%, #2d5c4e 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 0.9rem;
            letter-spacing: -0.02em;
            line-height: 1.25;
        }
        .hero-tagline {
            font-size: 1.25rem;
            color: #5c4a38;
            max-width: 680px;
            margin: 0 auto 1rem;
            font-weight: 460;
        }
        .hero-desc {
            font-size: 0.98rem;
            color: #6b5a45;
            max-width: 600px;
            margin: 0 auto 1.8rem;
        }
        .hero-meta {
            display: flex;
            justify-content: center;
            gap: 1.6rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
            font-size: 0.88rem;
            color: #7d6b56;
        }
        .hero-meta span {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            background: rgba(255, 253, 249, 0.75);
            padding: 0.4rem 1rem;
            border-radius: 22px;
            font-weight: 500;
            border: 1px solid var(--border-subtle);
        }
        .btn-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-primary {
            background: var(--accent-amber);
            color: #fff;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: all var(--transition-smooth);
            box-shadow: 0 3px 10px rgba(160, 92, 24, 0.25);
            border: none;
            cursor: pointer;
            display: inline-block;
            font-size: 0.98rem;
        }
        .btn-primary:hover {
            background: var(--accent-deep);
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(160, 92, 24, 0.35);
        }
        .btn-secondary {
            background: transparent;
            color: #5c3a1e;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            border: 1.5px solid #c8a278;
            transition: all var(--transition-smooth);
            font-size: 0.98rem;
        }
        .btn-secondary:hover {
            background: rgba(200, 125, 44, 0.08);
            border-color: var(--accent-amber);
            transform: translateY(-2px);
            color: #3d2814;
        }

        /* Section titles */
        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #3d2814;
            letter-spacing: -0.01em;
        }
        .section-subtitle {
            text-align: center;
            color: #6b5a45;
            font-size: 0.98rem;
            margin-bottom: 2.5rem;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Why Section */
        .why-section {
            padding: 3.5rem 0 3rem;
        }
        .why-content {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 2.5rem 2rem;
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-card);
            max-width: 880px;
            margin: 0 auto;
        }
        .why-content p {
            color: #4d3a28;
            font-size: 1rem;
            margin-bottom: 0.9rem;
            line-height: 1.7;
        }
        .why-content p:last-child {
            margin-bottom: 0;
        }
        .why-content h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #3d2814;
            margin-bottom: 1rem;
            text-align: center;
        }
        .chip-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: 1.5rem;
            justify-content: center;
        }
        .chip {
            background: #fdf2e3;
            color: #7a4e24;
            padding: 0.4rem 1rem;
            border-radius: 22px;
            font-size: 0.84rem;
            font-weight: 500;
            white-space: nowrap;
            border: 1px solid #f0dbb8;
        }
        .chip.highlight {
            background: #fce4c4;
            color: #5c3410;
            font-weight: 600;
            border-color: #e8a44c;
        }

        /* Download Cards */
        .download-section {
            padding: 2.5rem 0 4rem;
        }
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 1.8rem;
        }
        .download-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 2rem 1.6rem;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            border: 1px solid var(--border-subtle);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .download-card::after {
            content: '';
            position: absolute;
            top: -35px;
            right: -35px;
            width: 110px;
            height: 110px;
            border-radius: 50%;
            opacity: 0.05;
            pointer-events: none;
            transition: all var(--transition-smooth);
        }
        .download-card.win::after {
            background: #c87d2c;
        }
        .download-card.mac::after {
            background: #2d7d6c;
        }
        .download-card.android::after {
            background: #7c5c3a;
        }
        .download-card.ios::after {
            background: #5c4a6e;
        }
        .download-card:hover {
            transform: translateY(-7px);
            background: #fffdf7;
            box-shadow: var(--shadow-hover);
            border-color: #dcc8a8;
        }
        .download-card:hover::after {
            opacity: 0.09;
            width: 150px;
            height: 150px;
            top: -55px;
            right: -55px;
        }
        .card-badge {
            display: inline-block;
            padding: 0.3rem 0.9rem;
            border-radius: 18px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }
        .win .card-badge {
            background: #fef4e5;
            color: #b8701e;
        }
        .mac .card-badge {
            background: #e8f5f0;
            color: #1e6b56;
        }
        .android .card-badge {
            background: #faf5ed;
            color: #7c5c3a;
        }
        .ios .card-badge {
            background: #f6f2fa;
            color: #5c4a6e;
        }
        .card-icon {
            font-size: 2.8rem;
            margin-bottom: 0.6rem;
        }
        .download-card h3 {
            font-size: 1.4rem;
            margin-bottom: 0.4rem;
            font-weight: 700;
            color: #3d2814;
        }
        .card-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.35rem;
            justify-content: center;
            margin: 0.7rem 0 1rem;
        }
        .card-chips span {
            background: #faf5ed;
            color: #6b5a45;
            padding: 0.22rem 0.65rem;
            border-radius: 14px;
            font-size: 0.76rem;
            font-weight: 500;
            border: 1px solid #f0e6d6;
        }
        .download-card .btn-primary {
            display: block;
            margin: 0.3rem 0;
            text-align: center;
            font-size: 0.9rem;
            padding: 0.7rem 1.5rem;
        }
        .btn-text-link {
            display: inline-block;
            margin-top: 0.5rem;
            font-size: 0.82rem;
            color: #8b7358;
            text-decoration: none;
            font-weight: 500;
            transition: color var(--transition-fast);
        }
        .btn-text-link:hover {
            color: var(--accent-amber);
            text-decoration: underline;
        }

        /* Config Path */
        .config-path {
            padding: 3rem 0;
        }
        .path-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            max-width: 800px;
            margin: 0 auto;
        }
        .path-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 1.3rem 1.2rem;
            text-decoration: none;
            color: var(--text-deep);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-weight: 500;
            font-size: 0.93rem;
        }
        .path-card:hover {
            background: #fffdf7;
            transform: translateX(5px);
            box-shadow: var(--shadow-card);
            border-color: #dcc8a8;
        }
        .path-num {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #fdf2e3;
            color: #7a4e24;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        /* Features */
        .features {
            padding: 3rem 0 3.5rem;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
        }
        .feature-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 1.8rem 1.4rem;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            border: 1px solid var(--border-subtle);
            text-align: center;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            background: #fffdf7;
            box-shadow: var(--shadow-hover);
        }
        .feature-icon {
            font-size: 2.6rem;
            margin-bottom: 0.8rem;
        }
        .feature-card h3 {
            font-size: 1.35rem;
            margin-bottom: 0.6rem;
            font-weight: 700;
            color: #3d2814;
        }
        .feature-card p {
            color: #5c4a38;
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .feature-card ul {
            list-style: none;
            text-align: left;
            margin-top: 0.8rem;
            color: #5c4a38;
            font-size: 0.86rem;
            line-height: 1.8;
        }
        .feature-card ul li::before {
            content: '▸ ';
            color: var(--accent-amber);
            font-weight: 600;
        }

        /* SEO Section */
        .seo-section {
            padding: 3rem 0;
        }
        .seo-content {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 2.5rem 2rem;
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-card);
            max-width: 880px;
            margin: 0 auto;
        }
        .seo-content h2 {
            color: #3d2814;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            text-align: center;
        }
        .seo-content h3 {
            color: #4d3a28;
            font-size: 1.15rem;
            margin: 1.3rem 0 0.6rem;
            font-weight: 600;
        }
        .seo-content p {
            color: #4d3a28;
            font-size: 0.96rem;
            margin-bottom: 0.8rem;
            line-height: 1.7;
        }
        .seo-content ul {
            list-style: none;
            margin: 0.8rem 0;
            padding-left: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0.4rem 1rem;
        }
        .seo-content ul li {
            color: #5c4a38;
            font-size: 0.9rem;
            padding: 0.3rem 0;
        }
        .seo-content ul li::before {
            content: '✓ ';
            color: #2d7d6c;
            font-weight: 700;
        }

        /* Internal Links */
        .internal-links-section {
            padding: 2rem 0 4rem;
        }
        .internal-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
            gap: 0.9rem;
            max-width: 850px;
            margin: 0 auto;
        }
        .internal-link-card {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 0.9rem 1.2rem;
            text-decoration: none;
            color: #4d3a28;
            font-weight: 500;
            transition: all var(--transition-fast);
            border: 1px solid var(--border-subtle);
            font-size: 0.9rem;
        }
        .internal-link-card:hover {
            background: #fffdf7;
            transform: translateX(4px);
            box-shadow: 0 5px 14px -5px rgba(80, 40, 10, 0.12);
            color: var(--accent-amber);
            border-color: #dcc8a8;
        }
        .link-arrow {
            margin-left: auto;
            color: var(--accent-amber);
            font-weight: 700;
            font-size: 1rem;
            transition: transform var(--transition-fast);
        }
        .internal-link-card:hover .link-arrow {
            transform: translateX(4px);
        }

        /* Info Banner */
        .info-banner {
            background: linear-gradient(105deg, #fdf4e5 0%, #fef9f0 40%, #f6f2ea 100%);
            border-radius: var(--radius-lg);
            padding: 2.2rem 1.5rem;
            margin: 1rem auto 3rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            max-width: 780px;
            border: 1px solid #f0dbb8;
        }
        .info-banner p {
            margin: 0;
            width: 100%;
            color: #5c3a1e;
            font-weight: 500;
        }
        .info-banner strong {
            color: #7a4e24;
        }

        /* Trust Strip */
        .trust-strip {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            padding: 1.8rem 0;
            font-size: 0.88rem;
            color: #7d6b56;
            text-align: center;
        }
        .trust-strip .trust-item {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            font-weight: 500;
        }
        .trust-strip .trust-icon {
            font-size: 1.2rem;
        }

        /* Footer */
        .site-footer {
            background: #1f1a14;
            color: #c4b89a;
            padding: 2.5rem 0;
            margin-top: 1.5rem;
            border-top: 1px solid #3d3224;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: center;
        }
        .copyright {
            font-size: 0.82rem;
            color: #9e8d74;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
        }
        .footer-links a {
            color: #c4b89a;
            text-decoration: none;
            font-size: 0.85rem;
            transition: color var(--transition-fast);
            white-space: nowrap;
        }
        .footer-links a:hover {
            color: #e8a44c;
        }

        /* Skip link */
        .skip-link {
            position: absolute;
            top: -100px;
            left: 1rem;
            background: var(--accent-amber);
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 0 0 8px 8px;
            z-index: 200;
            transition: top 0.3s;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
        }
        .skip-link:focus {
            top: 0;
        }

        /* Responsive */
        @media (max-width: 720px) {
            .container {
                padding: 0 1.1rem;
            }
            .navbar {
                flex-direction: column;
                gap: 0.6rem;
            }
            .nav-links {
                gap: 0.9rem;
                font-size: 0.85rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero-tagline {
                font-size: 1rem;
            }
            .btn-group {
                gap: 0.7rem;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .hero-meta {
                gap: 0.6rem;
                font-size: 0.78rem;
            }
            .download-card {
                padding: 1.4rem 1rem;
            }
            .seo-content ul {
                grid-template-columns: 1fr;
            }
            .trust-strip {
                gap: 0.8rem;
                font-size: 0.78rem;
            }
            .path-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 420px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .download-card h3 {
                font-size: 1.2rem;
            }
            .btn-primary,
            .btn-secondary {
                padding: 0.65rem 1.3rem;
                font-size: 0.85rem;
            }
            .path-grid {
                grid-template-columns: 1fr;
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            .footer-links {
                justify-content: center;
                gap: 0.8rem;
            }
        }