        :root {
            --bg-deep: #070a12;
            --bg-surface: #0d1117;
            --bg-card: #131922;
            --bg-card-hover: #1a2232;
            --accent: #3b82f6;
            --accent-glow: #60a5fa;
            --accent-subtle: rgba(59, 130, 246, 0.08);
            --text-primary: #e8edf5;
            --text-secondary: #8b97ad;
            --text-muted: #4a5568;
            --border: rgba(255, 255, 255, 0.06);
            --border-accent: rgba(59, 130, 246, 0.25);
            --radius: 12px;
            --radius-lg: 20px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Mono', monospace;
            background: var(--bg-deep);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }

        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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9999;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Syne', sans-serif;
            line-height: 1.2;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(7, 10, 18, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }

        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }

        .logo {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 1.2rem;
            letter-spacing: -0.02em;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 30px;
            height: 30px;
            background: var(--accent);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
        }

        .logo-icon svg {
            width: 16px;
            height: 16px;
            fill: white;
        }

        nav {
            flex-shrink: 0;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 6px;
        }

        nav a {
            display: block;
            padding: 8px 20px;
            font-size: 0.8rem;
            font-weight: 400;
            color: var(--text-secondary);
            border-radius: 8px;
            transition: color 0.2s ease, background 0.2s ease;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        nav a:hover,
        nav a[aria-current="page"] {
            color: var(--text-primary);
            background: var(--accent-subtle);
        }

        nav a[aria-current="page"] {
            color: var(--accent-glow);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            cursor: pointer;
            padding: 8px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 30px;
            font-family: 'DM Mono', monospace;
            font-size: 0.8rem;
            font-weight: 500;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            transition: all 0.25s ease;
            letter-spacing: 0.03em;
        }

        .btn-primary {
            background: var(--accent);
            color: white;
            box-shadow: 0 4px 24px rgba(59, 130, 246, 0.3), 0 0 0 1px rgba(59, 130, 246, 0.5);
        }

        .btn-primary:hover {
            background: var(--accent-glow);
            box-shadow: 0 4px 32px rgba(59, 130, 246, 0.45), 0 0 0 1px rgba(96, 165, 250, 0.7);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-secondary);
            border: 1px solid var(--border);
            box-shadow: none;
        }

        .btn-secondary:hover {
            color: var(--text-primary);
            border-color: var(--text-muted);
            background: rgba(255, 255, 255, 0.03);
            transform: translateY(-2px);
        }

        .page-hero {
            position: relative;
            padding: 60px 0 80px;
            text-align: center;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -120px;
            left: 50%;
            transform: translateX(-50%);
            width: 700px;
            height: 500px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 65%);
            pointer-events: none;
        }

        .page-hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse at center top, black 20%, transparent 65%);
            -webkit-mask-image: radial-gradient(ellipse at center top, black 20%, transparent 65%);
            pointer-events: none;
        }

        .page-hero .container {
            position: relative;
            z-index: 2;
        }

        .page-hero h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 14px;
            opacity: 0;
            animation: fadeUp 0.6s ease 0.2s forwards;
        }

        .page-hero h1 span {
            background: linear-gradient(135deg, var(--accent-glow), #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-hero p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            max-width: 520px;
            margin: 0 auto;
            line-height: 1.8;
            opacity: 0;
            animation: fadeUp 0.6s ease 0.35s forwards;
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-tag {
            display: inline-block;
            font-size: 0.68rem;
            font-weight: 500;
            color: var(--accent-glow);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 16px;
            padding: 4px 14px;
            background: var(--accent-subtle);
            border-radius: 100px;
            border: 1px solid var(--border-accent);
        }

        .section-header h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 12px;
        }

        .section-header p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            max-width: 480px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .faq-filter {
            padding: 0 0 40px;
        }

        .faq-filter .container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .filter-btn {
            padding: 8px 20px;
            font-family: 'DM Mono', monospace;
            font-size: 0.74rem;
            font-weight: 400;
            color: var(--text-secondary);
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 100px;
            cursor: pointer;
            transition: all 0.25s ease;
            letter-spacing: 0.02em;
        }

        .filter-btn:hover {
            color: var(--text-primary);
            border-color: var(--text-muted);
        }

        .filter-btn.active {
            color: var(--text-primary);
            background: var(--accent-subtle);
            border-color: var(--border-accent);
        }

        .faq-list {
            padding: 0 0 100px;
        }

        .faq-list .container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-category {
            margin-bottom: 48px;
        }

        .faq-category-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
            opacity: 0;
            transform: translateY(16px);
        }

        .faq-category-header.visible {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.5s ease;
        }

        .faq-category-icon {
            width: 36px;
            height: 36px;
            background: var(--accent-subtle);
            border: 1px solid var(--border-accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .faq-category-icon svg {
            width: 18px;
            height: 18px;
            stroke: var(--accent-glow);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .faq-category-header h2 {
            font-size: 1.15rem;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 12px;
            overflow: hidden;
            opacity: 0;
            transform: translateY(16px);
        }

        .faq-item.visible {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.5s ease;
        }

        .faq-item.active {
            border-color: var(--border-accent);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 22px 28px;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            transition: background 0.25s ease;
        }

        .faq-question:hover {
            background: rgba(255, 255, 255, 0.02);
        }

        .faq-question h3 {
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            color: var(--text-primary);
            flex: 1;
        }

        .faq-toggle {
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent-subtle);
            border: 1px solid var(--border-accent);
            border-radius: 8px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .faq-toggle svg {
            width: 14px;
            height: 14px;
            stroke: var(--accent-glow);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            background: var(--accent);
            border-color: var(--accent);
        }

        .faq-item.active .faq-toggle svg {
            stroke: white;
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 400px;
        }

        .faq-answer-inner {
            padding: 0 28px 24px;
        }

        .faq-answer p {
            font-size: 0.82rem;
            color: var(--text-secondary);
            line-height: 1.85;
            padding-top: 18px;
            border-top: 1px solid var(--border);
        }

        .faq-answer code {
            background: var(--bg-deep);
            border: 1px solid var(--border);
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.74rem;
            color: var(--accent-glow);
        }

        .faq-answer a {
            color: var(--accent-glow);
            transition: opacity 0.2s ease;
        }

        .faq-answer a:hover {
            opacity: 0.8;
        }

        .faq-stats {
            padding: 0 0 80px;
        }

        .faq-stats .container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px 24px;
            text-align: center;
            opacity: 0;
            transform: translateY(16px);
        }

        .stat-card.visible {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.5s ease;
        }

        .stat-card strong {
            display: block;
            font-family: 'Syne', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--accent-glow);
            margin-bottom: 4px;
        }

        .stat-card span {
            font-size: 0.74rem;
            color: var(--text-secondary);
        }

        .contact-section {
            padding: 0 0 100px;
        }

        .contact-box {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 56px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
        }

        .contact-box.visible {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s ease;
        }

        .contact-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            opacity: 0.5;
        }

        .contact-box::after {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
            pointer-events: none;
        }

        .contact-content {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .contact-content h2 {
            font-size: 1.4rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 10px;
        }

        .contact-content p {
            font-size: 0.84rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .contact-actions {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .cta-section {
            padding: 80px 0 100px;
            text-align: center;
            position: relative;
        }

        .cta-box {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 64px 40px;
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            opacity: 0.6;
        }

        .cta-box::after {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 400px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
            pointer-events: none;
        }

        .cta-box h2 {
            font-size: clamp(1.5rem, 2.8vw, 2.2rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 14px;
            position: relative;
            z-index: 1;
        }

        .cta-box>p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            max-width: 440px;
            margin: 0 auto 32px;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .cta-actions {
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        footer {
            border-top: 1px solid var(--border);
            padding: 40px 0;
        }

        footer .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        footer .logo {
            font-size: 1rem;
        }

        footer nav a {
            font-size: 0.76rem;
            padding: 6px 14px;
        }

        footer p.copyright {
            font-size: 0.7rem;
            color: var(--text-muted);
            width: 100%;
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            nav {
                display: none;
                position: absolute;
                top: 64px;
                left: 0;
                right: 0;
                background: rgba(7, 10, 18, 0.96);
                backdrop-filter: blur(20px);
                border-bottom: 1px solid var(--border);
                padding: 12px 24px;
            }
            nav.open {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 2px;
            }
            nav a {
                padding: 12px 16px;
            }
            .faq-question {
                padding: 18px 20px;
            }
            .faq-answer-inner {
                padding: 0 20px 20px;
            }
            .faq-stats .container {
                grid-template-columns: 1fr;
            }
            .contact-box {
                flex-direction: column;
                text-align: center;
                padding: 40px 24px;
            }
            .contact-actions {
                flex-direction: column;
                width: 100%;
            }
            .contact-actions .btn {
                width: 100%;
                justify-content: center;
            }
            .cta-box {
                padding: 44px 20px;
            }
            footer .container {
                flex-direction: column;
                text-align: center;
            }
            footer nav ul {
                flex-direction: row;
                justify-content: center;
                flex-wrap: wrap;
            }
        }