:root {
  color-scheme: dark;
  --black: #050606;
  --panel: #111716;
  --mist: #eff3ef;
  --muted: #8e9895;
  --line: rgba(239, 243, 239, 0.14);
  --teal: #0f9d9e;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--mist);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.guide {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}

header,
section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 24px;
  margin-bottom: 16px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
p {
  letter-spacing: 0;
}

h1,
h2 {
  margin: 0;
  font-weight: 400;
}

h1 {
  font-size: clamp(2rem, 6vw, 4rem);
}

h2 {
  font-size: 1.35rem;
}

p {
  color: rgba(239, 243, 239, 0.72);
  line-height: 1.7;
}

code {
  display: block;
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(239, 243, 239, 0.06);
  color: var(--mist);
  padding: 10px 12px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--teal);
  color: #001313;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 800;
}
