:root {
  --bg: #0f1220;
  --panel: #171b2e;
  --ink: #f7f8ff;
  --muted: #aeb6ce;
  --line: rgba(255, 255, 255, 0.12);
  --blue: #5865f2;
  --cyan: #22d3ee;
  --code: #0b0d16;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

.page {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 64px);
}

.hero,
.section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.hero {
  padding: clamp(28px, 5vw, 52px);
}

.section {
  margin-top: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.3rem, 7vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.command-list {
  display: grid;
  gap: 10px;
}

.command-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

code {
  color: var(--cyan);
  font-weight: 850;
}

pre {
  overflow-x: auto;
  padding: 16px;
  border-radius: 8px;
  background: var(--code);
}

pre code {
  color: var(--ink);
}

li + li {
  margin-top: 8px;
}

.note strong {
  color: var(--ink);
}

@media (max-width: 620px) {
  .command-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
