:root{--bg: #ffffff;--fg: #111111;--muted: #6b6b6b;--line: #e4e4e4;--panel: #fafafa;--ok: #157f3b;--warn: #8a6d00;--err: #b42318;--mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;color-scheme:light}:root[data-theme=dark]{--bg: #0b0b0b;--fg: #ededed;--muted: #8f8f8f;--line: #232323;--panel: #131313;--ok: #4ade80;--warn: #e2b93b;--err: #f87171;color-scheme:dark}@media(prefers-color-scheme:dark){:root:not([data-theme=light]){--bg: #0b0b0b;--fg: #ededed;--muted: #8f8f8f;--line: #232323;--panel: #131313;--ok: #4ade80;--warn: #e2b93b;--err: #f87171;color-scheme:dark}}*{box-sizing:border-box}html,body,#root{margin:0;padding:0;height:100%}body{background:var(--bg);color:var(--fg);font-family:var(--mono);font-size:15px;line-height:1.6;-webkit-font-smoothing:antialiased}a{color:inherit;text-decoration:none;border-bottom:1px solid var(--line)}a:hover{border-bottom-color:var(--fg)}h1,h2,h3{font-weight:500;letter-spacing:-.02em;line-height:1.2;margin:0 0 18px}h1{font-size:34px}h2{font-size:22px}h3{font-size:16px;margin-bottom:10px}p{margin:0 0 14px}pre{background:var(--panel);border:1px solid var(--line);padding:14px 16px;overflow-x:auto;margin:0 0 14px;font-size:14px}code{font-family:var(--mono)}.wrap{max-width:720px;margin:0 auto;padding:0 24px}.muted{color:var(--muted)}.small{font-size:13px}.row{display:flex;gap:12px;align-items:center}.between{display:flex;justify-content:space-between;align-items:center;gap:12px}section{padding:56px 0;border-top:1px solid var(--line)}section:first-of-type{border-top:none}nav{height:56px;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid var(--line)}nav a{border:none}.brand{font-weight:600;letter-spacing:-.01em}.hero{min-height:calc(100dvh - 56px);display:flex;flex-direction:column;justify-content:center}.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;font:inherit;font-size:14px;padding:9px 16px;border:1px solid var(--fg);background:var(--fg);color:var(--bg);cursor:pointer;border-radius:0}.btn:hover{opacity:.85}.btn.ghost{background:transparent;color:var(--fg)}.btn:disabled{opacity:.4;cursor:not-allowed}.btn.sm{padding:0 10px;height:30px;font-size:13px}input{font:inherit;padding:9px 12px;border:1px solid var(--line);background:var(--bg);color:var(--fg);border-radius:0;width:100%}input:focus{outline:none;border-color:var(--fg)}label{display:block;font-size:13px;color:var(--muted);margin-bottom:6px}.field{margin-bottom:16px}.err{color:var(--err)}.ok{color:var(--ok)}.warn{color:var(--warn)}.card{border:1px solid var(--line);padding:24px;max-width:420px}.steps{counter-reset:s;list-style:none;padding:0;margin:0}.steps li{counter-increment:s;padding-left:36px;position:relative;margin-bottom:18px}.steps li:before{content:counter(s);position:absolute;left:0;top:2px;width:22px;height:22px;border:1px solid var(--line);display:inline-flex;align-items:center;justify-content:center;font-size:12px}.copy{display:flex;gap:0}.copy pre{flex:1;margin:0}.copy .btn{border-left:none}.session{height:100dvh;display:flex;flex-direction:column}.bar{height:40px;display:flex;align-items:center;justify-content:space-between;padding:0 12px;border-bottom:1px solid var(--line);font-size:13px;flex:none}.term{flex:1;min-height:0;background:#000;padding:6px}.term .xterm{height:100%}.center{flex:1;display:flex;align-items:center;justify-content:center;padding:24px}.dot{display:inline-block;width:8px;height:8px;border-radius:50%;background:var(--muted);margin-right:8px}.dot.ok{background:var(--ok)}.dot.warn{background:var(--warn)}.dot.err{background:var(--err)}/**
 * Copyright (c) 2014 The xterm.js authors. All rights reserved.
 * Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
 * https://github.com/chjj/term.js
 * @license MIT
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 *
 * Originally forked from (with the author's permission):
 *   Fabrice Bellard's javascript vt100 for jslinux:
 *   http://bellard.org/jslinux/
 *   Copyright (c) 2011 Fabrice Bellard
 *   The original design remains. The terminal itself
 *   has been extended to include xterm CSI codes, among
 *   other features.
 */.xterm{cursor:text;position:relative;user-select:none;-ms-user-select:none;-webkit-user-select:none}.xterm.focus,.xterm:focus{outline:none}.xterm .xterm-helpers{position:absolute;top:0;z-index:5}.xterm .xterm-helper-textarea{padding:0;border:0;margin:0;position:absolute;opacity:0;left:-9999em;top:0;width:0;height:0;z-index:-5;white-space:nowrap;overflow:hidden;resize:none}.xterm .composition-view{background:#000;color:#fff;display:none;position:absolute;white-space:nowrap;z-index:1}.xterm .composition-view.active{display:block}.xterm .xterm-viewport{background-color:#000;overflow-y:scroll;cursor:default;position:absolute;right:0;left:0;top:0;bottom:0}.xterm .xterm-screen{position:relative}.xterm .xterm-screen canvas{position:absolute;left:0;top:0}.xterm .xterm-scroll-area{visibility:hidden}.xterm-char-measure-element{display:inline-block;visibility:hidden;position:absolute;top:0;left:-9999em;line-height:normal}.xterm.enable-mouse-events{cursor:default}.xterm.xterm-cursor-pointer,.xterm .xterm-cursor-pointer{cursor:pointer}.xterm.column-select.focus{cursor:crosshair}.xterm .xterm-accessibility:not(.debug),.xterm .xterm-message{position:absolute;left:0;top:0;bottom:0;right:0;z-index:10;color:transparent;pointer-events:none}.xterm .xterm-accessibility-tree:not(.debug) *::selection{color:transparent}.xterm .xterm-accessibility-tree{-webkit-user-select:text;user-select:text;white-space:pre}.xterm .live-region{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}.xterm-dim{opacity:1!important}.xterm-underline-1{text-decoration:underline}.xterm-underline-2{text-decoration:double underline}.xterm-underline-3{text-decoration:wavy underline}.xterm-underline-4{text-decoration:dotted underline}.xterm-underline-5{text-decoration:dashed underline}.xterm-overline{text-decoration:overline}.xterm-overline.xterm-underline-1{text-decoration:overline underline}.xterm-overline.xterm-underline-2{text-decoration:overline double underline}.xterm-overline.xterm-underline-3{text-decoration:overline wavy underline}.xterm-overline.xterm-underline-4{text-decoration:overline dotted underline}.xterm-overline.xterm-underline-5{text-decoration:overline dashed underline}.xterm-strikethrough{text-decoration:line-through}.xterm-screen .xterm-decoration-container .xterm-decoration{z-index:6;position:absolute}.xterm-screen .xterm-decoration-container .xterm-decoration.xterm-decoration-top-layer{z-index:7}.xterm-decoration-overview-ruler{z-index:8;position:absolute;top:0;right:0;pointer-events:none}.xterm-decoration-top{z-index:2;position:relative}
