        :root {
            --bg: #0d0a0c;
            --bg-elevated: #1a1016;
            --bg-card: #1f141a;
            --bg-card-hover: #291a22;
            --border: rgba(255, 180, 200, 0.06);
            --border-strong: rgba(255, 180, 200, 0.12);
            --rose: #e87890;
            --rose-light: #f0a0b8;
            --rose-soft: rgba(232, 120, 144, 0.13);
            --rose-glow: rgba(232, 120, 144, 0.07);
            --warm: #e8a878;
            --warm-soft: rgba(232, 168, 120, 0.12);
            --mauve: #c48eb8;
            --mauve-soft: rgba(196, 142, 184, 0.12);
            --text: #ece4e8;
            --text-secondary: #b8a8b0;
            --text-muted: #7d6e76;
            --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
            --font-body: 'Source Serif 4', Georgia, 'Times New Roman', serif;
            --font-mono: 'DM Mono', 'Courier New', monospace;
            --font-sans: system-ui, -apple-system, 'Segoe UI', sans-serif;
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-text-size-adjust: 100%;
        }
        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;
            -moz-osx-font-smoothing: grayscale;
        }
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background:
                radial-gradient(ellipse at 68% 18%, rgba(232, 120, 144, 0.05) 0%, transparent 55%),
                radial-gradient(ellipse at 22% 55%, rgba(196, 142, 184, 0.04) 0%, transparent 50%),
                radial-gradient(ellipse at 58% 82%, rgba(232, 168, 120, 0.035) 0%, transparent 45%);
            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;
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 1rem;
            z-index: 200;
            background: var(--rose);
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 0 0 6px 6px;
            font-family: var(--font-sans);
            font-size: 0.85rem;
            transition: top 0.3s;
        }
        .skip-link:focus {
            top: 0;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(13, 10, 12, 0.9);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            border-bottom: 1px solid var(--border);
        }
        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 66px;
            gap: 1rem;
        }
        .logo {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 0.55rem;
            text-decoration: none;
        }
        .logo-img {
            height: 2.2rem;
            width: auto;
            display: block;
            flex-shrink: 0;
        }
        .logo-text {
            display: flex;
            align-items: baseline;
        }
        .logo-text .brand {
            font-family: var(--font-display);
            font-size: 1.45rem;
            color: var(--text);
            letter-spacing: -0.01em;
            line-height: 1;
        }
        .logo-text .brand::after {
            content: '.';
            color: var(--rose);
            font-style: italic;
            margin-left: 1px;
        }
        .logo:hover .logo-text .brand {
            color: var(--rose-light);
            transition: color 0.25s ease;
        }
        .logo:hover .logo-img {
            opacity: 0.9;
            transition: opacity 0.25s ease;
        }
        .site-nav ul {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .site-nav a {
            font-family: var(--font-mono);
            font-size: 0.74rem;
            color: var(--text-muted);
            padding: 0.4rem 0.85rem;
            border-radius: 6px;
            transition: all 0.22s ease;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .site-nav a:hover {
            color: var(--text);
            background: rgba(255, 180, 200, 0.04);
        }
        .site-nav a[aria-current="page"] {
            color: var(--rose);
            background: var(--rose-soft);
        }
        main {
            position: relative;
            z-index: 1;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.5rem;
            border-radius: 6px;
            font-family: var(--font-mono);
            font-size: 0.78rem;
            font-weight: 500;
            cursor: pointer;
            border: none;
            transition: all 0.25s ease;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }
        .btn-primary {
            background: var(--rose);
            color: #fff;
        }
        .btn-primary:hover {
            background: var(--rose-light);
            transform: translateY(-1px);
            box-shadow: 0 8px 28px rgba(232, 120, 144, 0.3);
        }
        .btn-outline {
            background: transparent;
            color: var(--text-secondary);
            border: 1px solid var(--border-strong);
        }
        .btn-outline:hover {
            border-color: var(--rose);
            color: var(--rose);
            transform: translateY(-1px);
        }
        .btn-sm {
            padding: 0.4rem 0.95rem;
            font-size: 0.66rem;
            letter-spacing: 0.04em;
        }

        .section-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: end;
            margin-bottom: 3.5rem;
        }
        .section-header h2 {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 3.8vw, 3rem);
            font-weight: 400;
            line-height: 1.1;
            color: var(--text);
            letter-spacing: -0.02em;
        }
        .section-header h2 em {
            font-style: italic;
            color: var(--rose);
        }
        .section-header p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 380px;
        }

        .page-hero {
            padding: 5rem 0 3rem;
            text-align: center;
        }
        .page-hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.8rem, 5.5vw, 4.5rem);
            font-weight: 400;
            line-height: 1.05;
            letter-spacing: -0.02em;
            color: var(--text);
            margin-bottom: 1rem;
        }
        .page-hero h1 em {
            font-style: italic;
            color: var(--rose);
        }
        .page-hero .support-tags {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: 1.5rem;
            font-family: var(--font-mono);
            font-size: 0.72rem;
            color: var(--text-muted);
        }
        .support-tags span {
            background: var(--bg-card);
            padding: 0.3rem 0.9rem;
            border-radius: 20px;
            border: 1px solid var(--border);
            letter-spacing: 0.02em;
        }

        .download-platform {
            padding: 3rem 0 2rem;
        }
        .platform-card {
            background: var(--bg-elevated);
            border: 1px solid var(--border-strong);
            border-radius: 14px;
            padding: 2.8rem 2.2rem;
            display: grid;
            grid-template-columns: 1.2fr 0.9fr;
            gap: 2rem;
            align-items: center;
            margin-bottom: 2rem;
            transition: border-color 0.3s;
        }
        .platform-card:hover {
            border-color: var(--rose);
        }
        .platform-card.win {
            border-left: 4px solid var(--rose);
        }
        .platform-card.mac {
            border-left: 4px solid var(--mauve);
        }
        .platform-info h3 {
            font-family: var(--font-display);
            font-size: 1.9rem;
            font-weight: 400;
            color: var(--text);
            margin-bottom: 0.6rem;
            letter-spacing: -0.01em;
        }
        .platform-info .compat {
            font-family: var(--font-mono);
            font-size: 0.66rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }
        .compat span {
            background: var(--bg-card);
            padding: 0.25rem 0.65rem;
            border-radius: 4px;
            letter-spacing: 0.03em;
        }
        .platform-actions {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            align-items: flex-end;
        }
        .platform-actions .btn {
            min-width: 200px;
            justify-content: center;
        }

        .beginner-zone {
            padding: 2rem 0 4rem;
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: 14px;
            margin-bottom: 4rem;
            position: relative;
            overflow: hidden;
        }
        .beginner-zone::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 70% 30%, rgba(232,120,144,0.04) 0%, transparent 60%);
            pointer-events: none;
        }
        .beginner-inner {
            padding: 2.5rem 2.2rem;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }
        .beginner-text h3 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 400;
            color: var(--text);
            margin-bottom: 0.8rem;
        }
        .beginner-text ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
            margin-bottom: 1.4rem;
        }
        .beginner-text li {
            font-family: var(--font-mono);
            font-size: 0.76rem;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .beginner-text li::before {
            content: '▹';
            color: var(--rose);
            font-weight: bold;
        }
        .beginner-actions {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 1rem;
        }

        .seo-longform {
            padding: 4rem 0;
            border-top: 1px solid var(--border);
        }
        .seo-longform .content-col {
            max-width: 800px;
            margin: 0 auto;
            font-size: 0.93rem;
            color: var(--text-secondary);
            line-height: 2;
        }
        .seo-longform h2 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 400;
            color: var(--text);
            margin: 2.2rem 0 1rem;
            letter-spacing: -0.01em;
        }
        .seo-longform h2:first-child {
            margin-top: 0;
        }
        .seo-longform h2 em {
            font-style: italic;
            color: var(--rose);
        }
        .seo-longform strong {
            color: var(--text);
        }
        .seo-longform .highlight {
            color: var(--rose);
            font-weight: 500;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin: 1.8rem 0;
        }
        .feature-item {
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1.2rem;
        }
        .feature-item h4 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 400;
            color: var(--text);
            margin-bottom: 0.3rem;
        }
        .feature-item p {
            font-size: 0.82rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .verify-info {
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 1.4rem;
            margin: 2rem 0;
            font-family: var(--font-mono);
            font-size: 0.72rem;
            color: var(--text-muted);
        }
        .verify-info strong {
            color: var(--text);
        }

        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;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-left {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.05rem;
            color: var(--text);
        }
        .footer-logo em {
            color: var(--rose);
            font-style: italic;
        }
        .footer-copy {
            font-family: var(--font-mono);
            font-size: 0.68rem;
            color: var(--text-muted);
        }
        .footer-links {
            display: flex;
            gap: 1.6rem;
            flex-wrap: wrap;
        }
        .footer-links a {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            color: var(--text-muted);
            transition: color 0.2s ease;
        }
        .footer-links a:hover {
            color: var(--rose);
        }

        @media (max-width: 900px) {
            .section-header {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }
            .platform-card {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .platform-actions {
                align-items: center;
            }
            .beginner-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .beginner-actions {
                align-items: center;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 600px) {
            .container {
                padding: 0 1rem;
            }
            header .container {
                flex-direction: column;
                height: auto;
                padding-top: 0.6rem;
                padding-bottom: 0.6rem;
                gap: 0.3rem;
            }
            .site-nav a {
                font-size: 0.65rem;
                padding: 0.28rem 0.45rem;
            }
            .page-hero h1 {
                font-size: 2rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
            .platform-card {
                padding: 1.5rem;
            }
            footer .container {
                flex-direction: column;
                text-align: center;
            }
            .footer-left {
                flex-direction: column;
                gap: 0.3rem;
            }
            .footer-links {
                justify-content: center;
                gap: 1rem;
            }
        }