        :root {
            --bg: #fafbfd;
            --bg-soft: #f5f7fb;
            --bg-section: #eef1f8;
            --surface: #ffffff;
            --border: #dde3ed;
            --border-light: #e8ecf4;
            --primary: #4F46E5;
            --primary-hover: #4338CA;
            --primary-soft: rgba(79, 70, 229, 0.09);
            --primary-glow: rgba(79, 70, 229, 0.2);
            --mint: #06B6D4;
            --mint-soft: rgba(6, 182, 212, 0.09);
            --coral: #8B5CF6;
            --coral-soft: rgba(139, 92, 246, 0.09);
            --amber: #F59E0B;
            --amber-soft: rgba(245, 158, 11, 0.12);
            --text: #0f172a;
            --text-secondary: #475569;
            --text-muted: #7c8aa0;
            --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
            --shadow-md: 0 6px 20px rgba(15, 23, 42, 0.06), 0 1px 4px rgba(15, 23, 42, 0.04);
            --shadow-lg: 0 14px 44px rgba(15, 23, 42, 0.08), 0 2px 10px rgba(15, 23, 42, 0.04);
            --shadow-xl: 0 20px 60px rgba(79, 70, 229, 0.14), 0 4px 16px rgba(15, 23, 42, 0.06);
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --font-display: 'Plus Jakarta Sans', sans-serif;
            --font-body: 'DM Sans', sans-serif;
        }
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-body);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        ul {
            list-style: none;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        /* Header */
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(250, 251, 253, 0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-light);
        }
        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }
        .logo {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.03em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.2s ease;
        }
        .logo:hover {
            color: var(--primary-hover);
        }
        .logo-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--mint);
            animation: pulse-dot 2s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(2);
                opacity: 0.4;
            }
        }
        .site-nav ul {
            display: flex;
            gap: 0.2rem;
        }
        .site-nav a {
            font-family: var(--font-display);
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--text-secondary);
            padding: 0.5rem 1rem;
            border-radius: 10px;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .site-nav a:hover {
            color: var(--primary);
            background: var(--primary-soft);
        }
        .site-nav a[aria-current="page"] {
            color: var(--primary);
            background: var(--primary-soft);
            font-weight: 600;
        }
        /* Hero */
        .hero {
            padding: 5rem 0 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -12%;
            left: 50%;
            transform: translateX(-50%);
            width: 960px;
            height: 960px;
            background: radial-gradient(ellipse at 38% 42%, rgba(79, 70, 229, 0.11) 0%, transparent 48%),
                radial-gradient(ellipse at 58% 56%, rgba(6, 182, 212, 0.08) 0%, transparent 44%),
                radial-gradient(ellipse at 70% 30%, rgba(139, 92, 246, 0.06) 0%, transparent 40%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(3.6rem, 7.5vw, 6rem);
            font-weight: 800;
            line-height: 1.06;
            letter-spacing: -0.04em;
            color: var(--text);
            margin-bottom: 0.6rem;
            opacity: 0;
            animation: fadeUp 0.6s ease 0.1s forwards;
        }
        .hero h1 .gradient-text {
            background: linear-gradient(135deg, var(--primary) 0%, var(--coral) 50%, var(--mint) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-tagline {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: 0.3em;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeUp 0.6s ease 0.2s forwards;
        }
        .hero-description {
            font-size: 1.08rem;
            color: var(--text-secondary);
            max-width: 560px;
            margin: 0 auto 2.5rem;
            line-height: 1.85;
            opacity: 0;
            animation: fadeUp 0.6s ease 0.3s forwards;
        }
        .hero-actions {
            display: flex;
            gap: 0.75rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeUp 0.6s ease 0.4s forwards;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.6rem;
            border-radius: 12px;
            font-family: var(--font-display);
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.25s ease;
            letter-spacing: -0.01em;
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 2px 14px var(--primary-glow);
        }
        .btn-primary:hover {
            background: var(--primary-hover);
            box-shadow: 0 8px 28px rgba(79, 70, 229, 0.35);
            transform: translateY(-2px);
        }
        .btn-secondary {
            background: var(--surface);
            color: var(--text);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
        }
        .btn-secondary:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .btn-outline-white {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.6);
        }
        .btn-outline-white:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #fff;
            transform: translateY(-2px);
        }
        .btn-white {
            background: #fff;
            color: var(--primary);
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
            position: relative;
            z-index: 1;
        }
        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.13);
        }
        .btn-sm {
            font-size: 0.82rem;
            padding: 0.55rem 1.2rem;
        }
        .btn-sub {
            display: block;
            font-size: 0.68rem;
            font-weight: 400;
            opacity: 0.7;
            letter-spacing: 0.02em;
            margin-top: 0.1rem;
        }
        /* Hero Visual */
        .hero-visual {
            margin-top: 3.5rem;
            position: relative;
            z-index: 1;
            opacity: 0;
            animation: fadeUp 0.8s ease 0.5s forwards;
        }
        .hero-browser {
            max-width: 820px;
            margin: 0 auto;
            background: var(--bg-soft);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .browser-bar {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.9rem 1.25rem;
            background: var(--surface);
            border-bottom: 1px solid var(--border-light);
        }
        .browser-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }
        .browser-dot:nth-child(1) {
            background: #f07068;
        }
        .browser-dot:nth-child(2) {
            background: #F59E0B;
        }
        .browser-dot:nth-child(3) {
            background: #06B6D4;
        }
        .browser-url {
            flex: 1;
            margin-left: 0.75rem;
            padding: 0.35rem 0.85rem;
            background: var(--bg-section);
            border-radius: 8px;
            font-size: 0.75rem;
            color: var(--text-muted);
            font-family: 'DM Mono', monospace;
        }
        .browser-body {
            padding: 2rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            min-height: 220px;
        }
        .browser-card {
            background: var(--surface);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: 1.25rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .browser-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        .browser-card-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.85rem;
            font-weight: 700;
            font-size: 0.85rem;
        }
        .browser-card-icon.indigo {
            background: var(--primary-soft);
            color: var(--primary);
        }
        .browser-card-icon.cyan {
            background: var(--mint-soft);
            color: #0891b2;
        }
        .browser-card-icon.violet {
            background: var(--coral-soft);
            color: var(--coral);
        }
        .browser-card h4 {
            font-family: var(--font-display);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.35rem;
            color: var(--text);
        }
        .browser-card p {
            font-size: 0.75rem;
            color: var(--text-muted);
            line-height: 1.5;
        }
        /* Stats */
        .stats-section {
            padding: 3.5rem 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        .stat-card {
            text-align: center;
            padding: 2rem 1.5rem;
            background: var(--bg-soft);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            transition: all 0.3s ease;
        }
        .stat-card:hover {
            background: var(--surface);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .stat-value {
            font-family: var(--font-display);
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 0.35rem;
        }
        .stat-card:nth-child(1) .stat-value {
            color: var(--primary);
        }
        .stat-card:nth-child(2) .stat-value {
            color: var(--mint);
        }
        .stat-card:nth-child(3) .stat-value {
            color: var(--coral);
        }
        .stat-label {
            font-size: 0.82rem;
            color: var(--text-muted);
            font-weight: 500;
        }
        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .section-tag {
            display: inline-flex;
            align-items: center;
            padding: 0.3rem 0.9rem;
            background: var(--primary-soft);
            border-radius: 100px;
            font-family: var(--font-display);
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--primary);
            letter-spacing: 0.04em;
            margin-bottom: 1rem;
        }
        .section-header h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 2.7rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.2;
            color: var(--text);
            margin-bottom: 0.75rem;
        }
        .section-header p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            max-width: 500px;
            margin: 0 auto;
        }
        /* Features Grid - 6 cards */
        .features {
            padding: 5rem 0 4rem;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }
        .feature-card {
            position: relative;
            padding: 1.75rem;
            background: var(--surface);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            transition: all 0.35s ease;
            overflow: hidden;
        }
        .feature-card:hover {
            border-color: var(--border);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.1rem;
            font-size: 1.3rem;
        }
        .feature-card:nth-child(1) .feature-icon {
            background: var(--primary-soft);
            color: var(--primary);
        }
        .feature-card:nth-child(2) .feature-icon {
            background: var(--mint-soft);
            color: #0891b2;
        }
        .feature-card:nth-child(3) .feature-icon {
            background: var(--amber-soft);
            color: #b45309;
        }
        .feature-card:nth-child(4) .feature-icon {
            background: var(--coral-soft);
            color: var(--coral);
        }
        .feature-card:nth-child(5) .feature-icon {
            background: rgba(34, 197, 94, 0.1);
            color: #16a34a;
        }
        .feature-card:nth-child(6) .feature-icon {
            background: rgba(236, 72, 153, 0.09);
            color: #db2777;
        }
        .feature-card h3 {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text);
            letter-spacing: -0.01em;
        }
        .feature-card p {
            color: var(--text-secondary);
            font-size: 0.85rem;
            line-height: 1.7;
        }
        .feature-tag {
            display: inline-block;
            margin-top: 0.85rem;
            padding: 0.2rem 0.65rem;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 500;
            font-family: var(--font-display);
            letter-spacing: 0.02em;
        }
        .feature-card:nth-child(1) .feature-tag {
            background: var(--primary-soft);
            color: var(--primary);
        }
        .feature-card:nth-child(2) .feature-tag {
            background: var(--mint-soft);
            color: #0891b2;
        }
        .feature-card:nth-child(3) .feature-tag {
            background: var(--amber-soft);
            color: #b45309;
        }
        .feature-card:nth-child(4) .feature-tag {
            background: var(--coral-soft);
            color: var(--coral);
        }
        .feature-card:nth-child(5) .feature-tag {
            background: rgba(34, 197, 94, 0.1);
            color: #16a34a;
        }
        .feature-card:nth-child(6) .feature-tag {
            background: rgba(236, 72, 153, 0.09);
            color: #db2777;
        }
        /* SEO Content - Mihomo内核介绍 */
        .seo-content {
            padding: 4rem 0 3rem;
        }
        .seo-content .section-header {
            margin-bottom: 2.5rem;
        }
        .seo-prose {
            max-width: 840px;
            margin: 0 auto;
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 2;
        }
        .seo-prose h3 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
            margin: 2.5rem 0 1rem;
            letter-spacing: -0.01em;
        }
        .seo-prose h3:first-child {
            margin-top: 0;
        }
        .seo-prose p {
            margin-bottom: 1.25rem;
        }
        .seo-prose strong {
            color: var(--text);
            font-weight: 600;
        }
        .seo-highlight {
            background: var(--bg-section);
            border-left: 3px solid var(--primary);
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            padding: 1.25rem 1.5rem;
            margin: 2rem 0;
            font-family: var(--font-display);
            font-weight: 600;
            color: var(--text);
            font-size: 0.95rem;
            letter-spacing: -0.01em;
        }
        .seo-grid-inline {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .seo-grid-inline .seo-mini-card {
            background: var(--bg-soft);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: 1.1rem 1.25rem;
            font-size: 0.88rem;
            transition: all 0.25s ease;
        }
        .seo-grid-inline .seo-mini-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-sm);
            background: var(--surface);
        }
        .seo-grid-inline .seo-mini-card strong {
            display: block;
            margin-bottom: 0.3rem;
            font-family: var(--font-display);
            font-size: 0.9rem;
            color: var(--text);
        }
        /* Device Download */
        .device-download-section {
            padding: 2rem 0 4.5rem;
        }
        .device-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
            max-width: 960px;
            margin: 0 auto;
        }
        .device-card {
            text-align: center;
            padding: 2rem 1.25rem;
            background: var(--surface);
            border: 2px solid var(--border-light);
            border-radius: var(--radius-lg);
            transition: all 0.35s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .device-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary);
            transform: scaleX(0);
            transition: transform 0.35s ease;
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        }
        .device-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }
        .device-card:hover::after {
            transform: scaleX(1);
        }
        .device-card .dev-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            transition: transform 0.3s ease;
        }
        .device-card:hover .dev-icon {
            transform: scale(1.12);
        }
        .device-card:nth-child(1) .dev-icon {
            background: var(--primary-soft);
            color: var(--primary);
        }
        .device-card:nth-child(2) .dev-icon {
            background: var(--mint-soft);
            color: #0891b2;
        }
        .device-card:nth-child(3) .dev-icon {
            background: var(--amber-soft);
            color: #b45309;
        }
        .device-card:nth-child(4) .dev-icon {
            background: var(--coral-soft);
            color: var(--coral);
        }
        .device-card h4 {
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
            color: var(--text);
            letter-spacing: -0.01em;
        }
        .device-card p {
            font-size: 0.78rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 0.75rem;
        }
        .device-link {
            font-family: var(--font-display);
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            transition: gap 0.2s ease;
        }
        .device-card:hover .device-link {
            gap: 0.55rem;
        }
        /* 热门配置推荐 */
        .config-spotlight {
            padding: 2rem 0 4.5rem;
        }
        .config-spotlight-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        .config-spot-card {
            text-align: center;
            padding: 1.5rem 1rem;
            background: var(--surface);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .config-spot-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            background: var(--bg-soft);
        }
        .config-spot-card .spot-emoji {
            font-size: 2rem;
            margin-bottom: 0.6rem;
            display: block;
        }
        .config-spot-card h4 {
            font-family: var(--font-display);
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.3rem;
            letter-spacing: -0.01em;
        }
        .config-spot-card p {
            font-size: 0.72rem;
            color: var(--text-muted);
            line-height: 1.5;
        }
        .config-spot-card .spot-link {
            display: inline-block;
            margin-top: 0.5rem;
            font-family: var(--font-display);
            font-size: 0.73rem;
            font-weight: 600;
            color: var(--primary);
            transition: all 0.2s ease;
        }
        .config-spot-card:hover .spot-link {
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        /* Quickstart */
        .quickstart-section {
            padding: 2rem 0 4.5rem;
        }
        .quickstart-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
            max-width: 900px;
            margin: 0 auto;
        }
        .quickstart-card {
            text-align: center;
            padding: 2rem 1.5rem;
            background: var(--surface);
            border: 2px dashed var(--border);
            border-radius: var(--radius-lg);
            transition: all 0.35s ease;
            cursor: pointer;
        }
        .quickstart-card:hover {
            border-color: var(--primary);
            border-style: solid;
            background: var(--bg-soft);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .quickstart-card .qs-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        .quickstart-card:nth-child(1) .qs-icon {
            background: var(--primary-soft);
            color: var(--primary);
        }
        .quickstart-card:nth-child(2) .qs-icon {
            background: var(--mint-soft);
            color: #0891b2;
        }
        .quickstart-card:nth-child(3) .qs-icon {
            background: var(--amber-soft);
            color: #b45309;
        }
        .quickstart-card h4 {
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
            color: var(--text);
            letter-spacing: -0.01em;
        }
        .quickstart-card p {
            font-size: 0.82rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        .quickstart-link {
            font-family: var(--font-display);
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            transition: gap 0.2s ease;
        }
        .quickstart-card:hover .quickstart-link {
            gap: 0.55rem;
        }
        /* FAQ */
        .faq-section {
            padding: 3rem 0 4.5rem;
        }
        .faq-list {
            max-width: 780px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }
        .faq-item {
            background: var(--surface);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: 1.2rem 1.5rem;
            transition: all 0.25s ease;
        }
        .faq-item:hover {
            border-color: var(--border);
            box-shadow: var(--shadow-sm);
        }
        .faq-item h4 {
            font-family: var(--font-display);
            font-size: 0.93rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.45rem;
            letter-spacing: -0.01em;
            cursor: default;
        }
        .faq-item p {
            font-size: 0.84rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }
        .faq-more {
            text-align: center;
            margin-top: 1.5rem;
        }
        .faq-more a {
            font-family: var(--font-display);
            font-weight: 600;
            color: var(--primary);
            font-size: 0.9rem;
            transition: all 0.2s ease;
        }
        .faq-more a:hover {
            color: var(--primary-hover);
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        /* CTA */
        .cta-section {
            padding: 2rem 0 5rem;
        }
        .cta-card {
            position: relative;
            padding: 4rem 3rem;
            background: linear-gradient(135deg, var(--primary) 0%, #6366f1 40%, var(--coral) 70%, var(--mint) 100%);
            border-radius: var(--radius-xl);
            text-align: center;
            overflow: hidden;
            color: #fff;
        }
        .cta-card::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.07);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-card::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-card h2 {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 0.75rem;
            position: relative;
            z-index: 1;
        }
        .cta-card p {
            font-size: 1.05rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            max-width: 460px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }
        /* Footer */
        footer {
            padding: 2.5rem 0;
            border-top: 1px solid var(--border-light);
            background: var(--bg-soft);
        }
        footer .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-left {
            display: flex;
            align-items: center;
            gap: 1.75rem;
            flex-wrap: wrap;
        }
        .footer-logo {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--primary);
        }
        .footer-copy {
            font-size: 0.78rem;
            color: var(--text-muted);
        }
        .footer-links {
            display: flex;
            gap: 1.75rem;
            flex-wrap: wrap;
        }
        .footer-links a {
            font-size: 0.82rem;
            color: var(--text-muted);
            font-weight: 500;
            transition: color 0.2s ease;
        }
        .footer-links a:hover {
            color: var(--primary);
        }
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Responsive */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .config-spotlight-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .device-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 500px;
            }
        }
        @media (max-width: 768px) {
            .logo {
                font-size: 1.2rem;
            }
            .site-nav a {
                font-size: 0.78rem;
                padding: 0.4rem 0.65rem;
            }
            .hero {
                padding: 3.5rem 0 2.5rem;
            }
            .hero-browser {
                border-radius: var(--radius-lg);
            }
            .browser-body {
                grid-template-columns: 1fr;
                padding: 1.25rem;
                min-height: auto;
            }
            .stats-grid {
                gap: 1rem;
            }
            .stat-value {
                font-size: 2rem;
            }
            .features-grid {
                grid-template-columns: 1fr;
                max-width: 440px;
                margin: 0 auto;
            }
            .device-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.85rem;
            }
            .config-spotlight-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 440px;
            }
            .quickstart-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
            .cta-card {
                padding: 3rem 1.5rem;
            }
            .seo-grid-inline {
                grid-template-columns: 1fr;
            }
            footer .container {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            .footer-left {
                flex-direction: column;
                gap: 0.4rem;
            }
            .footer-links {
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 1.1rem;
            }
            header .container {
                flex-direction: column;
                height: auto;
                padding-top: 0.7rem;
                padding-bottom: 0.7rem;
                gap: 0.4rem;
            }
            .site-nav a {
                font-size: 0.74rem;
                padding: 0.3rem 0.5rem;
            }
            .hero {
                padding: 2.8rem 0 2rem;
            }
            .hero h1 {
                font-size: 2.4rem;
            }
            .hero-tagline {
                letter-spacing: 0.15em;
                font-size: 0.9rem;
            }
            .hero-actions {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 100%;
                justify-content: center;
                max-width: 260px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                max-width: 280px;
                margin: 0 auto;
            }
            .device-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.7rem;
            }
            .device-card {
                padding: 1.4rem 0.8rem;
            }
            .feature-card {
                padding: 1.4rem;
            }
            .config-spotlight-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.7rem;
            }
            .cta-card h2 {
                font-size: 1.6rem;
            }
            .seo-prose {
                font-size: 0.86rem;
            }
            .quickstart-grid {
                grid-template-columns: 1fr;
            }
            .faq-item {
                padding: 1rem;
            }
        }