        :root {
            --bg: #2E3035;
            --surface: #1E1F22;
            --border: #1f2229;
            --accent: #9E93DC;
            --accent2: #8179d5;
            --text: #e8e9f0;
            --muted: #6b6f82;
            --online: #3ecf8e;
            --mono: 'Space Mono', monospace;
            --sans: 'DM Sans', sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg);
            color: var(--text);
            font-family: var(--sans);
            font-weight: 400;
            line-height: 1.6;
            min-height: 100vh;
            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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9999;
            opacity: 0.35;
        }

        /* Glow blobs */
        .blobs {
            position: fixed;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }

        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.12;
        }

        .blob-1 {
            width: 600px;
            height: 600px;
            background: var(--accent);
            top: -200px;
            left: -150px;
        }

        .blob-2 {
            width: 500px;
            height: 500px;
            background: var(--accent2);
            bottom: -100px;
            right: -100px;
        }

        /* Layout */
        .wrap {
            position: relative;
            z-index: 1;
            max-width: 1080px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Nav */
        nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--surface);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
        }

        .wordmark {
            font-family: var(--mono);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            text-decoration: none;
            letter-spacing: -0.03em;
        }

        .wordmark span {
            color: var(--accent);
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.4;
            }
        }

        /* Hero */
        .hero {
            padding: 100px 0 80px;
            text-align: center;
        }

        .hero-badge {
            display: inline-block;
            font-family: var(--mono);
            font-size: 0.68rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent);
            background: rgba(124, 106, 247, 0.1);
            border: 1px solid rgba(124, 106, 247, 0.25);
            border-radius: 4px;
            padding: 5px 12px;
            margin-bottom: 28px;
        }

        h1 {
            font-family: var(--mono);
            font-size: clamp(2.4rem, 6vw, 4.2rem);
            font-weight: 700;
            letter-spacing: -0.04em;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        h1 .grad {
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-sub {
            font-size: 1.1rem;
            color: var(--muted);
            max-width: 480px;
            margin: 0 auto 40px;
            font-weight: 300;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--mono);
            font-size: 0.82rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 6px;
            padding: 12px 24px;
            transition: transform 0.15s, box-shadow 0.15s;
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        .btn-primary {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 0 28px rgba(124, 106, 247, 0.35);
        }

        .btn-primary:hover {
            box-shadow: 0 0 40px rgba(124, 106, 247, 0.55);
        }

        .btn-ghost {
            background: var(--accent2);
            color: var(--text);
        }

        .btn-ghost:hover {
            color: var(--text);
            border-color: var(--muted);
            ;
            box-shadow: 0 0 40px rgba(124, 106, 247, 0.55);
        }

        .hero-cta {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Stats bar */
        .stats-bar {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            border-radius: 10px;
            overflow: hidden;
            margin: 60px 0;
        }

        .stat-cell {
            background: var(--surface);
            padding: 24px 20px;
            text-align: center;
        }

        .stat-val {
            font-family: var(--mono);
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--text);
            display: block;
        }

        .stat-val.accent {
            color: var(--accent);
        }

        .stat-label {
            font-size: 0.72rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-top: 4px;
            display: block;
        }


        h2 {
            font-family: var(--mono);
            font-size: clamp(1.4rem, 3vw, 2rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            margin-bottom: 40px;
        }

        .commands {
            display: grid;
            gap: 12px;
        }

        .cmd-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 20px 24px;
            display: flex;
            align-items: flex-start;
            gap: 18px;
            transition: border-color 0.2s, transform 0.2s;
        }

        .cmd-card:hover {
            border-color: rgba(124, 106, 247, 0.4);
            transform: translateX(4px);
        }

        .cmd-icon {
            width: 36px;
            height: 36px;
            border-radius: 6px;
            background: rgba(124, 106, 247, 0.12);
            border: 1px solid rgba(124, 106, 247, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .cmd-name {
            font-family: var(--mono);
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 4px;
        }

        .cmd-desc {
            font-size: 0.9rem;
            color: var(--muted);
        }

        /* Health detail */
        .health-section {
            margin-top: 80px;
        }

        .health-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 12px;
        }

        .health-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 20px;
        }

        .health-key {
            font-family: var(--mono);
            font-size: 0.65rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 8px;
        }

        .health-val {
            font-family: var(--mono);
            font-size: 1.2rem;
            color: var(--text);
        }

        .health-val.green {
            color: var(--online);
        }

        .health-val.red {
            color: #f56565;
        }

        /* Raw JSON collapse */
        details {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 8px;
            margin-top: 16px;
            overflow: hidden;
        }

        summary {
            font-family: var(--mono);
            font-size: 0.78rem;
            color: var(--muted);
            padding: 14px 20px;
            cursor: pointer;
            user-select: none;
        }

        summary:hover {
            color: var(--text);
        }

        pre {
            font-family: var(--mono);
            font-size: 0.75rem;
            color: #a0a8c0;
            padding: 0 20px 20px;
            overflow-x: auto;
            white-space: pre-wrap;
            word-break: break-all;
        }

        /* Footer */
        footer {
            margin-top: 100px;
            border-top: 1px solid var(--border);
            padding: 32px 0;
            text-align: center;
            font-family: var(--mono);
            font-size: 0.7rem;
            color: var(--muted);
            background-color: var(--surface);
        }

        footer a {
            color: var(--muted);
            text-decoration: none;
        }

        footer a:hover {
            color: var(--text);
        }

        /* Responsive */
        @media (max-width: 600px) {
            .hero {
                padding: 60px 0 50px;
            }

            .stats-bar {
                grid-template-columns: 1fr 1fr;
            }
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }

        .nav-links a {
            font-family: var(--mono);
            font-size: 0.75rem;
            color: var(--muted);
            text-decoration: none;
            transition: color 0.15s;
        }

        .nav-links a:hover {
            color: var(--text);
        }

        .nav-btn {
            font-size: 0.72rem !important;
            padding: 8px 16px !important;
            box-shadow: 0 0 18px rgba(124, 106, 247, 0.3);
        }

        /* Hamburger toggle -- hidden on desktop */
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }

        .nav-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--muted);
            border-radius: 2px;
            transition: transform 0.2s, opacity 0.2s, background 0.15s;
        }

        .nav-toggle:hover span {
            background: var(--text);
        }

        /* Animate hamburger to X when open */
        .nav-toggle[aria-expanded="true"] span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-toggle[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle[aria-expanded="true"] span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Mobile */
        @media (max-width: 680px) {
            .nav-toggle {
                display: flex;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
                background: rgba(13, 14, 17, 0.97);
                backdrop-filter: blur(16px);
                border-bottom: 1px solid var(--border);
                padding: 12px 0;
                z-index: 99;
            }

            .nav-links.open {
                display: flex;
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                display: block;
                padding: 12px 24px;
                font-size: 0.85rem;
            }

            .nav-btn {
                margin: 8px 24px 4px !important;
                display: inline-flex !important;
            }
        }

        .legal-wrap {
            max-width: 720px;
            margin: 80px auto 100px;
        }

        .legal-wrap h2 {
            font-size: 1.1rem;
            margin: 40px 0 12px;
            color: var(--text);
        }

        .legal-wrap h2:first-of-type {
            margin-top: 32px;
        }

        .legal-wrap p,
        .legal-wrap li {
            color: var(--text);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 12px;
        }

        .legal-wrap ul {
            padding-left: 20px;
            margin-bottom: 12px;
        }

        .legal-wrap li {
            margin-bottom: 6px;
        }

        .legal-meta {
            font-family: var(--mono);
            font-size: 0.7rem;
            color: var(--muted);
            margin-bottom: 40px;
            padding-bottom: 28px;
            border-bottom: 1px solid var(--border);
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: var(--mono);
            font-size: 0.75rem;
            color: var(--muted);
            text-decoration: none;
            margin-bottom: 28px;
            transition: color 0.15s;
        }

        .back-link:hover {
            color: var(--text);
        }

        .policy-nav {
            display: flex;
            gap: 16px;
            margin-bottom: 12px;
        }

        .policy-nav a {
            font-family: var(--mono);
            font-size: 0.72rem;
            text-decoration: none;
            padding: 6px 14px;
            border-radius: 4px;
            border: 1px solid var(--border);
            color: var(--muted);
            transition: color 0.15s, border-color 0.15s;
        }

        .policy-nav a:hover {
            color: var(--text);
            border-color: var(--muted);
        }

        .policy-nav a.active {
            color: var(--accent);
            border-color: var(--accent);
            background: rgba(124, 106, 247, 0.08);
        }

        .highlight-box {
            background: rgba(62, 207, 142, 0.06);
            border: 1px solid rgba(62, 207, 142, 0.2);
            border-radius: 8px;
            padding: 18px 22px;
            margin: 24px 0;
        }

        .highlight-box p {
            color: #68d391 !important;
            margin: 0;
            font-size: 0.9rem !important;
        }

        /* Issue page extras */
        .issue-wrap {
            max-width: 620px;
            margin: 80px auto 100px;
        }

        .form-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 36px 40px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        label {
            display: block;
            font-family: var(--mono);
            font-size: 0.7rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 8px;
        }

        input[type="text"],
        select,
        textarea {
            width: 100%;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 6px;
            color: var(--text);
            font-family: var(--sans);
            font-size: 0.95rem;
            padding: 11px 14px;
            transition: border-color 0.15s, box-shadow 0.15s;
            outline: none;
            appearance: none;
            -webkit-appearance: none;
        }

        input[type="text"]:focus,
        select:focus,
        textarea:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(124, 106, 247, 0.15);
        }

        select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6f82' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 36px;
            cursor: pointer;
        }

        select option {
            background: var(--surface);
        }

        textarea {
            resize: vertical;
            min-height: 110px;
            line-height: 1.6;
        }

        .char-count {
            font-family: var(--mono);
            font-size: 0.65rem;
            color: var(--muted);
            text-align: right;
            margin-top: 5px;
        }

        .char-count.warn {
            color: #f6ad55;
        }

        .char-count.over {
            color: #f56565;
        }

        /* Honeypot -- hidden from humans */
        .hp-field {
            display: none !important;
        }

        .submit-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 8px;
        }

        .submit-note {
            font-size: 0.8rem;
            color: var(--muted);
        }

        .btn-submit {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--mono);
            font-size: 0.82rem;
            font-weight: 700;
            color: #fff;
            background: var(--accent);
            border: none;
            border-radius: 6px;
            padding: 12px 24px;
            cursor: pointer;
            box-shadow: 0 0 24px rgba(124, 106, 247, 0.3);
            transition: transform 0.15s, box-shadow 0.15s;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 36px rgba(124, 106, 247, 0.5);
        }

        .btn-submit:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .alert {
            border-radius: 6px;
            padding: 14px 18px;
            font-size: 0.9rem;
            margin-bottom: 24px;
            border: 1px solid;
        }

        .alert-error {
            background: rgba(245, 101, 101, 0.08);
            border-color: rgba(245, 101, 101, 0.35);
            color: #fc8181;
        }

        .alert-success {
            background: rgba(62, 207, 142, 0.08);
            border-color: rgba(62, 207, 142, 0.35);
            color: #68d391;
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: var(--mono);
            font-size: 0.75rem;
            color: var(--muted);
            text-decoration: none;
            margin-bottom: 28px;
            transition: color 0.15s;
        }

        .back-link:hover {
            color: var(--text);
        }

        @media (max-width: 600px) {
            .form-card {
                padding: 24px 20px;
            }

            .issue-wrap {
                margin-top: 40px;
            }

            .submit-row {
                flex-direction: column;
                align-items: flex-start;
            }
        }