    :root {
        --bg: #0b0f1a;
        --panel: rgba(255, 255, 255, .06);
        --panel2: rgba(255, 255, 255, .04);
        --text: rgba(255, 255, 255, .92);
        --muted: rgba(255, 255, 255, .70);
        --faint: rgba(255, 255, 255, .50);
        --border: rgba(255, 255, 255, .12);
        --accent: #7c4dff;
        --red: #E53935;
        --accent2: #00d4ff;
        --shadow: 0 20px 60px rgba(0, 0, 0, .45);
        --radius: 18px;
        --max: 1100px;
        --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
        --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    }

    @media (prefers-color-scheme: light) {
        :root {
            --bg: #f7f8fc;
            --panel: rgba(0, 0, 0, .04);
            --panel2: rgba(0, 0, 0, .03);
            --text: rgba(0, 0, 0, .88);
            --muted: rgba(0, 0, 0, .66);
            --faint: rgba(0, 0, 0, .50);
            --border: rgba(0, 0, 0, .10);
            --shadow: 0 24px 70px rgba(0, 0, 0, .14);
        }
    }

    * {
        box-sizing: border-box;
    }

    html,
    body {
        min-height: 100%;
    }

    body {
        margin: 0;
        font-family: var(--sans);
        color: var(--text);
        background: radial-gradient(1200px 600px at 20% 10%, rgba(124, 77, 255, .35), transparent 60%),
            radial-gradient(1200px 600px at 80% 0%, rgba(0, 212, 255, .25), transparent 60%),
            radial-gradient(800px 600px at 50% 90%, rgba(124, 77, 255, .18), transparent 55%),
            var(--bg);
        background-repeat: no-repeat;
        background-size: cover;
        line-height: 1.5;
    }

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

    a:hover {
        text-decoration: underline;
    }

    .wrap {
        max-width: var(--max);
        margin: 0 auto;
        padding: 28px 20px 90px;
    }

    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 14px 0 6px;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 210px;
        flex-shrink: 1;
    }

    @media (max-width: 800px) {
        .brand {
            min-width: 0;
            gap: 8px;
        }
    }

    .logo {
        width: 34px;
        height: 34px;
    }

    .logo img {
        width: 100%;
        height: 100%;
    }

    .brand b {
        font-family: var(--mono);
        letter-spacing: .2px;
    }

    .nav {
        display: flex;
        align-items: center;
        gap: 16px;
        color: var(--muted);
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    @media (max-width: 800px) {
        .nav {
            flex-wrap: nowrap;
            gap: 8px;
        }
    }

    .nav a {
        padding: 8px 10px;
        border-radius: 10px;
    }

    @media (max-width: 800px) {
        .nav a {
            padding: 6px 8px;
            font-size: 14px;
        }
    }

    .nav a:hover {
        background: var(--panel2);
        text-decoration: none;
        color: var(--text);
    }

    .hero::before {
        content: "";
        position: absolute;
        inset: -2px;
        background: radial-gradient(900px 220px at 30% 10%, rgba(124, 77, 255, .30), transparent 60%),
            radial-gradient(900px 220px at 70% 0%, rgba(0, 212, 255, .20), transparent 60%);
        pointer-events: none;
        filter: blur(0px);
        opacity: .9;
    }

    .hero {
        overflow: hidden;
    }

    .hero-inner {
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 34px;
        align-items: start;
    }

    @media (max-width: 920px) {
        .hero-inner {
            grid-template-columns: 1fr;
        }
    }

    .kicker {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--muted);
        border: 1px solid var(--border);
        background: rgba(255, 255, 255, .04);
        padding: 7px 12px;
        border-radius: 999px;
        font-size: 13px;
    }

    .pill-dot {
        width: 9px;
        height: 9px;
        border-radius: 99px;
        background: linear-gradient(135deg, var(--accent), var(--accent2));
        box-shadow: 0 0 0 3px rgba(124, 77, 255, .18);
    }

    .pop-callout {
        position: absolute;
        top: -10px;
        right: 0;
        transform: rotate(-15deg) scale(.75);
        z-index: 10;
        animation: pop 0.6s ease-out;
        transition: all 0.4s ease-in-out;
    }

    @media (max-width: 800px) {
        .pop-callout {
            position: static;
            transform: rotate(-8deg) scale(1);
            display: block;
            margin: 0 auto 5px;
            width: fit-content;
        }
    }

    @keyframes pop {
        0% {
            transform: rotate(-15deg) scale(0.0);
            opacity: 0;
        }

        15% {
            transform: rotate(-15deg) scale(0.375);
            opacity: 0;
        }

        50% {
            transform: rotate(-15deg) scale(1.3);
        }

        100% {
            transform: rotate(-15deg) scale(.75);
            opacity: 1;
        }
    }

    @media (max-width: 800px) {
        @keyframes pop {
            0% {
                transform: rotate(-8deg) scale(0.0);
                opacity: 0;
            }

            15% {
                transform: rotate(-8deg) scale(0.5);
                opacity: 0;
            }

            50% {
                transform: rotate(-8deg) scale(1.15);
            }

            100% {
                transform: rotate(-8deg) scale(1);
                opacity: 1;
            }
        }
    }

    h1 {
        margin: 14px 0 10px;
        font-size: clamp(34px, 4.2vw, 54px);
        line-height: 1.05;
        letter-spacing: -0.02em;
    }

    .sub {
        margin: 0 0 18px;
        font-size: 17px;
        color: var(--muted);
    }

    .cta {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        align-items: center;
        margin-top: 18px;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 14px;
        border-radius: 14px;
        border: 1px solid var(--border);
        background: rgba(255, 255, 255, .06);
        color: var(--text);
        font-weight: 600;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    }

    .btn:hover {
        text-decoration: none;
        transform: translateY(-1px);
    }

    .btn:active {
        transform: translateY(0px);
    }

    .btn.primary {
        border-color: rgba(124, 77, 255, .45);
        background: linear-gradient(135deg, rgba(124, 77, 255, .92), rgba(0, 212, 255, .70));
        color: #fff;
        box-shadow: 0 22px 60px rgba(124, 77, 255, .25);
    }

    .btn code {
        font-family: var(--mono);
        font-weight: 700;
        background: rgba(0, 0, 0, .12);
        padding: 2px 7px;
        border-radius: 9px;
    }

    .meta {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 18px;
        color: var(--faint);
        font-size: 13px;
    }

    .meta span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 1px solid var(--border);
        background: rgba(255, 255, 255, .03);
        padding: 6px 10px;
        border-radius: 999px;
    }

    .meta i {
        display: inline-block;
        width: 7px;
        height: 7px;
        border-radius: 99px;
        background: rgba(255, 255, 255, .35);
    }

    .terminal {
        border: 1px solid var(--border);
        border-radius: var(--radius);
        background: rgba(0, 0, 0, .25);
        overflow: hidden;
        position: relative;
    }

    @media (prefers-color-scheme: light) {
        .terminal {
            background: rgba(255, 255, 255, .6);
        }
    }

    .term-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 12px;
        background: rgba(255, 255, 255, .04);
        border-bottom: 1px solid var(--border);
        font-size: 12px;
        color: var(--muted);
    }

    .dots {
        display: flex;
        gap: 7px;
    }

    .dot {
        width: 10px;
        height: 10px;
        border-radius: 99px;
        background: rgba(255, 255, 255, .22);
    }

    .term-body {
        font-family: var(--mono);
        padding: 14px 14px 16px;
        font-size: 13px;
        color: rgba(255, 255, 255, .88);
        overflow: auto;
    }

    @media (prefers-color-scheme: light) {
        .term-body {
            color: rgba(0, 0, 0, .85);
        }
    }

    .term-body .prompt {
        color: rgba(0, 212, 255, .9);
    }

    .term-body .dim {
        color: var(--faint);
    }

    .term-body pre {
        margin: 0;
        white-space: pre;
    }

    section {
        margin-top: 46px;
    }

    @media (max-width: 800px) {
        section {
            margin-top: 0;
        }
    }

    .section-title {
        margin-bottom: 14px;
    }

    .section-title h2 {
        margin: 0;
        font-size: 22px;
        letter-spacing: -0.01em;
    }

    .section-title p {
        margin: 6px 0 0;
        color: var(--muted);
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 14px;
    }

    .card {
        border: 1px solid var(--border);
        border-radius: var(--radius);
        background: var(--panel2);
        padding: 16px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, .10);
    }

    .card h3 {
        margin: 0 0 7px;
        font-size: 15px;
    }

    .card p {
        margin: 0;
        color: var(--muted);
        font-size: 14px;
    }

    .span-4 {
        grid-column: span 4;
    }

    .span-6 {
        grid-column: span 6;
    }

    .span-8 {
        grid-column: span 8;
    }

    .span-12 {
        grid-column: span 12;
    }

    @media (max-width: 920px) {

        .span-4,
        .span-6,
        .span-8 {
            grid-column: span 12;
        }
    }

    .callout {
        border: 1px solid rgba(124, 77, 255, .28);
        background: linear-gradient(180deg, rgba(124, 77, 255, .12), rgba(0, 0, 0, 0));
        padding: 16px;
        border-radius: var(--radius);
    }

    .bullets {
        font-size: 0.9em;
        margin: 10px 0 0;
        padding: 0 0 0 18px;
        color: var(--muted);
    }

    .bullets li {
        margin: 6px 0;
    }

    .faq .card p {
        color: var(--muted);
    }

    .faq a {
        text-decoration: wavy underline;
    }

    footer {
        margin-top: 70px;
        padding-top: 18px;
        border-top: 1px solid var(--border);
        color: var(--faint);
        display: flex;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
        font-size: 13px;
    }

    .heart {
        color: var(--red);
    }

    code.inline {
        font-family: var(--mono);
        padding: 1px 7px;
        border-radius: 9px;
        border: 1px solid var(--border);
        background: rgba(255, 255, 255, .04);
        font-size: .95em;
    }

    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }