:root {
  color-scheme: dark;
  --ink: #f4f7f4;
  --muted: #8f9d96;
  --line: #27342f;
  --paper: #070b09;
  --panel: #0d1411;
  --panel-strong: #121c17;
  --accent: #7af2b6;
  --accent-soft: #153a2a;
  --heading-font: "Geist Pixel", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --body-font: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

@font-face {
  font-family: "Geist Pixel";
  src: url("https://unpkg.com/geist@1.7.2/dist/fonts/geist-pixel/GeistPixel-Square.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("https://unpkg.com/geist@1.7.2/dist/fonts/geist-mono/GeistMono-Variable.woff2") format("woff2");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body-font);
  line-height: 1.5;
}

.github-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.github-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.shell {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0 44px;
}

.intro {
  max-width: 820px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--heading-font);
  font-weight: 400;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 53px;
  line-height: 0.96;
  letter-spacing: 0;
}

.lede {
  max-width: 690px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.4;
}

.intro-note {
  max-width: 720px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 14px;
}

.intro-note a {
  color: var(--ink);
  text-decoration-color: rgba(244, 247, 244, 0.3);
  text-underline-offset: 3px;
}

.terminal {
  max-width: 720px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  padding: 8px;
  border-bottom: 1px solid var(--line);
  background: #0a100d;
}

.tabs {
  display: flex;
  gap: 2px;
  min-width: 0;
}

.tab {
  min-width: 72px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

.tab.active {
  background: var(--accent-soft);
  color: var(--accent);
}

.copy-command {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 40px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.copy-command:hover,
.copy-command.copied {
  border-color: var(--line);
  color: var(--accent);
}

.copy-command svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.command-line {
  display: flex;
  gap: 10px;
  max-width: 100%;
  padding: 18px;
  overflow-x: auto;
}

.command-line span {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

code {
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
}

.command-line code,
li code {
  white-space: nowrap;
}

.github-row {
  margin-bottom: 18px;
}

.readme {
  margin-top: 52px;
}

.readme-body {
  max-width: 780px;
}

.readme-body h2 {
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 30px;
  line-height: 1.2;
}

.readme-body h3 {
  margin: 28px 0 12px;
  font-size: 20px;
}

.readme-body p {
  margin-bottom: 14px;
  color: var(--muted);
}

.readme-body ul {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--muted);
}

.readme-body li + li {
  margin-top: 8px;
}

.readme-body a,
.site-footer a {
  color: var(--accent);
  text-decoration-color: rgba(122, 242, 182, 0.45);
  text-underline-offset: 3px;
}

pre {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  background: #090f0c;
  overflow-x: auto;
}

pre code {
  color: #dce7df;
  line-height: 1.7;
  white-space: pre;
}

.site-footer {
  max-width: 780px;
  margin-top: 18px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.site-footer p {
  margin: 0 0 10px;
}

@media (max-width: 760px) {
  .shell {
    padding-top: 48px;
  }

  h1 {
    font-size: 38px;
  }

  .lede {
    font-size: 18px;
  }

  .github-link {
    width: 100%;
  }

  .terminal-header {
    align-items: flex-start;
    overflow-x: auto;
  }

  .tabs {
    flex: 1 0 auto;
  }

  .copy-command span {
    display: none;
  }

  .readme {
    margin-top: 36px;
  }
}
