        :root {
            --bg: #0e0e12;
            --bg-elevated: #16161c;
            --bg-card: #1c1c24;
            --bg-card-hover: #22222c;
            --border: rgba(255, 255, 255, 0.08);
            --border-strong: rgba(255, 255, 255, 0.14);
            --gold: #c9a84c;
            --gold-light: #e2c87a;
            --gold-soft: rgba(201, 168, 76, 0.12);
            --gold-glow: rgba(201, 168, 76, 0.06);
            --cream: #f0ead6;
            --cream-muted: #c8c2ae;
            --text: #ece8de;
            --text-secondary: #9e9a8f;
            --text-muted: #6a6660;
            --accent-warm: #d4735a;
            --accent-warm-soft: rgba(212, 115, 90, 0.12);
            --accent-teal: #5a9e8f;
            --accent-teal-soft: rgba(90, 158, 143, 0.12);
            --font-display: 'Instrument Serif', Georgia, serif;
            --font-body: 'Source Serif 4', Georgia, serif;
            --font-mono: 'DM Mono', 'Courier New', monospace;
        }

        *,
        *::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.75;
            overflow-x: hidden;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
        }
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 0;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        ul {
            list-style: none;
        }

        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 2.5rem;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(14, 14, 18, 0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
        }
        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
        }
        .logo {
            font-family: var(--font-display);
            font-size: 1.55rem;
            color: var(--cream);
            letter-spacing: -0.01em;
        }
        .logo em {
            color: var(--gold);
            font-style: italic;
        }
        .site-nav ul {
            display: flex;
            gap: 0.35rem;
        }
        .site-nav a {
            font-family: var(--font-mono);
            font-size: 0.78rem;
            color: var(--text-muted);
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: all 0.2s ease;
            letter-spacing: 0.02em;
        }
        .site-nav a:hover {
            color: var(--cream);
            background: rgba(255, 255, 255, 0.04);
        }
        .site-nav a[aria-current="page"] {
            color: var(--gold);
            background: var(--gold-soft);
        }

        main {
            position: relative;
            z-index: 1;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.75rem;
            border-radius: 6px;
            font-family: var(--font-mono);
            font-size: 0.82rem;
            font-weight: 500;
            cursor: pointer;
            border: none;
            transition: all 0.25s ease;
            letter-spacing: 0.03em;
            background: transparent;
            color: var(--cream-muted);
            border: 1px solid var(--border-strong);
        }
        .btn:hover {
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-1px);
        }
        .btn-primary {
            background: var(--gold);
            color: var(--bg);
            border: none;
        }
        .btn-primary:hover {
            background: var(--gold-light);
            box-shadow: 0 8px 30px rgba(201, 168, 76, 0.2);
        }

        /* 页面头部 */
        .page-hero {
            padding: 5rem 0 3rem;
            text-align: center;
            position: relative;
        }
        .page-hero h1 {
            font-family: var(--font-display);
            font-size: clamp(3rem, 6vw, 4.5rem);
            font-weight: 400;
            color: var(--cream);
            letter-spacing: -0.03em;
            margin-bottom: 1rem;
        }
        .page-hero h1 em {
            font-style: italic;
            color: var(--gold);
        }
        .page-hero .sub {
            color: var(--text-secondary);
            font-size: 1.15rem;
            max-width: 680px;
            margin: 0 auto;
            font-style: italic;
        }

        /* 区块通用 */
        .section {
            padding: 5rem 0;
            border-top: 1px solid var(--border);
        }
        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }
        .section-header h2 {
            font-family: var(--font-display);
            font-size: 2.6rem;
            font-weight: 400;
            color: var(--cream);
            letter-spacing: -0.02em;
        }
        .section-header h2 em {
            color: var(--gold);
            font-style: italic;
        }
        .section-header p {
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0.8rem auto 0;
            font-size: 1rem;
        }

        /* Mihomo 介绍 */
        .mihomo-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }
        .mihomo-text p {
            color: var(--text-secondary);
            margin-bottom: 1.2rem;
            line-height: 1.9;
        }
        .mihomo-text strong {
            color: var(--cream);
            font-weight: 500;
        }
        .mihomo-visual {
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .protocol-badge {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            padding: 0.7rem 1rem;
            background: var(--bg-card);
            border-radius: 8px;
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--text-secondary);
            transition: all 0.3s;
        }
        .protocol-badge:hover {
            background: var(--bg-card-hover);
            color: var(--cream);
        }
        .protocol-badge .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* 核心能力卡片 */
        .capability-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }
        .cap-card {
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.35s ease;
            position: relative;
        }
        .cap-card:hover {
            border-color: var(--border-strong);
            background: var(--bg-card-hover);
            transform: translateY(-4px);
        }
        .cap-card .cap-icon {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            display: block;
            color: var(--gold);
        }
        .cap-card h4 {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 400;
            color: var(--cream);
            margin-bottom: 0.5rem;
        }
        .cap-card p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* YAML 示例区 */
        .yaml-block {
            background: var(--bg-elevated);
            border: 1px solid var(--border-strong);
            border-radius: 14px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
        }
        .yaml-code {
            padding: 2rem;
            font-family: var(--font-mono);
            font-size: 0.78rem;
            line-height: 1.8;
            color: var(--text-secondary);
            background: #0d0d12;
            overflow-x: auto;
            white-space: pre;
            border-right: 1px solid var(--border);
        }
        .yaml-code .key {
            color: var(--gold);
        }
        .yaml-code .val {
            color: var(--accent-teal);
        }
        .yaml-code .comment {
            color: var(--text-muted);
            font-style: italic;
        }
        .yaml-explain {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 1.2rem;
        }
        .yaml-explain h3 {
            font-family: var(--font-display);
            font-size: 1.6rem;
            color: var(--cream);
            margin-bottom: 0.5rem;
        }
        .yaml-explain .explain-item {
            display: flex;
            align-items: baseline;
            gap: 0.8rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
            border-left: 2px solid var(--border);
            padding-left: 1rem;
            transition: border-color 0.2s;
        }
        .yaml-explain .explain-item:hover {
            border-left-color: var(--gold);
        }
        .yaml-explain .explain-item strong {
            font-family: var(--font-mono);
            color: var(--gold);
            min-width: 80px;
        }

        /* 创意下载导航 */
        .download-nav-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }
        .dl-card {
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .dl-card:hover {
            border-color: var(--gold);
            background: var(--bg-card-hover);
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.4);
        }
        .dl-card .dl-emoji {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .dl-card h4 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            color: var(--cream);
            margin-bottom: 0.5rem;
        }
        .dl-card p {
            font-size: 0.82rem;
            color: var(--text-secondary);
            margin-bottom: 1.2rem;
        }
        .dl-card .btn-sm {
            display: inline-block;
            padding: 0.45rem 1.2rem;
            font-size: 0.68rem;
            background: transparent;
            border: 1px solid var(--border-strong);
            color: var(--cream-muted);
            border-radius: 5px;
            font-family: var(--font-mono);
            transition: all 0.25s;
        }
        .dl-card:hover .btn-sm {
            border-color: var(--gold);
            color: var(--gold);
        }

        footer {
            border-top: 1px solid var(--border);
            padding: 3rem 0;
            position: relative;
            z-index: 1;
        }
        footer .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .footer-left {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.15rem;
            color: var(--cream);
        }
        .footer-logo em {
            color: var(--gold);
            font-style: italic;
        }
        .footer-copy {
            font-family: var(--font-mono);
            font-size: 0.72rem;
            color: var(--text-muted);
        }
        .footer-links {
            display: flex;
            gap: 2rem;
        }
        .footer-links a {
            font-family: var(--font-mono);
            font-size: 0.76rem;
            color: var(--text-muted);
            transition: color 0.2s;
        }
        .footer-links a:hover {
            color: var(--gold);
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .section { animation: fadeUp 0.6s ease forwards; opacity: 0; }
        .section:nth-child(1) { animation-delay: 0.05s; }

        @media (max-width: 900px) {
            .mihomo-intro { grid-template-columns: 1fr; }
            .capability-grid { grid-template-columns: 1fr 1fr; }
            .yaml-block { grid-template-columns: 1fr; }
            .yaml-code { border-right: none; border-bottom: 1px solid var(--border); }
            .download-nav-grid { grid-template-columns: 1fr 1fr; }
            footer .container { flex-direction: column; gap: 1.5rem; text-align: center; }
            .footer-left { flex-direction: column; gap: 0.5rem; }
        }
        @media (max-width: 600px) {
            .container { padding: 0 1.25rem; }
            header .container { flex-direction: column; height: auto; padding: 0.75rem; gap: 0.5rem; }
            .capability-grid { grid-template-columns: 1fr; }
            .download-nav-grid { grid-template-columns: 1fr; }
        }