:root {
  color-scheme: dark;
  --bg: #0d1117;
  --panel: #161b22;
  --panel-2: #1f2937;
  --text: #f5f7fb;
  --muted: #aab4c0;
  --line: #303844;
  --accent: #4fc978;
  --accent-2: #e5d85c;
}

* {
  box-sizing: border-box;
}

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

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 48px;
  align-items: center;
  padding: 56px 0 42px;
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 7vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  background: var(--panel);
}

.button.primary {
  border-color: #4fc978;
  background: #1f3d2b;
}

.screenshot {
  width: 100%;
  max-width: 460px;
  justify-self: end;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgb(0 0 0 / 38%);
}

.band {
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

h2 {
  margin-bottom: 22px;
  font-size: 1.7rem;
  letter-spacing: 0;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

article {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--panel);
}

h3 {
  margin-bottom: 10px;
  color: var(--accent-2);
  font-size: 1rem;
}

article p,
.band p {
  color: var(--muted);
  line-height: 1.55;
}

.table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.table [role="row"] {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 1.8fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.table [role="row"]:first-child {
  border-top: 0;
}

.table span {
  padding: 14px;
  color: var(--muted);
}

.table .head span {
  color: var(--text);
  font-weight: 700;
  background: var(--panel-2);
}

pre {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #070a0f;
}

code {
  color: #d7e2ec;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

@media (max-width: 860px) {
  main {
    width: min(100% - 24px, 680px);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 38px;
  }

  .screenshot {
    justify-self: start;
  }

  .grid.four,
  .grid.three,
  .table [role="row"] {
    grid-template-columns: 1fr;
  }

  .table span {
    padding: 10px 14px;
  }
}
