:root {
  --ink: #111510;
  --paper: #f3f5ef;
  --white: #ffffff;
  --line: #c9cec4;
  --muted: #667064;
  --lime: #a7f432;
  --coral: #ff6b4a;
  --blue: #2b62d9;
  --soft-green: #e6f7d4;
  --soft-blue: #e8efff;
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 30;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - 1200px) / 2));
  border-bottom: 1px solid #252a24;
  background: var(--ink);
  color: var(--white);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--lime);
  color: var(--ink);
  font: 800 15px/1 Consolas, "Courier New", monospace;
}

.brand strong {
  font-size: 13px;
}

.site-header nav,
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-header nav a,
footer nav a {
  font: 700 11px/1.2 Consolas, "Courier New", monospace;
  text-decoration: none;
}

.site-header nav a:hover,
.site-header nav a:focus-visible,
footer nav a:hover,
footer nav a:focus-visible {
  color: var(--lime);
}

.hero {
  background: var(--ink);
  color: var(--white);
}

.hero__inner {
  width: min(1200px, calc(100% - 48px));
  min-height: 520px;
  margin: 0 auto;
  padding: 78px 0 62px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #56704d;
  font: 800 11px/1.4 Consolas, "Courier New", monospace;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

h1,
h2,
p,
blockquote,
dl,
dd {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 24px;
  font-size: 84px;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.hero__body {
  max-width: 760px;
  margin-bottom: 30px;
  color: #c7cdc4;
  font-size: 18px;
  line-height: 1.65;
}

.hero__actions,
.proof-band nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__actions button,
.hero__actions a,
.task-console button,
.proof-band nav a,
.command-row button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  font: 800 11px/1.3 Consolas, "Courier New", monospace;
  text-decoration: none;
  cursor: pointer;
}

.hero__actions button {
  border-color: var(--lime);
  background: var(--lime);
}

.hero__actions a {
  border-color: #6d776a;
  background: transparent;
  color: var(--white);
}

.hero__actions button:hover,
.hero__actions button:focus-visible,
.task-console button:hover,
.task-console button:focus-visible,
.command-row button:hover,
.command-row button:focus-visible {
  background: var(--coral);
  border-color: var(--coral);
}

.endpoint {
  display: block;
  width: min(760px, 100%);
  margin-top: 28px;
  padding: 15px 0;
  border-top: 1px solid #41483f;
  border-bottom: 1px solid #41483f;
  color: #dfe5dc;
  font: 12px/1.5 Consolas, "Courier New", monospace;
  overflow-wrap: anywhere;
}

.proof-rail {
  width: min(1200px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  border-top: 1px solid #353b34;
  border-left: 1px solid #353b34;
}

.proof-rail div {
  min-width: 0;
  padding: 22px 24px;
  border-right: 1px solid #353b34;
}

.proof-rail dt {
  color: var(--lime);
  font: 800 20px/1 Consolas, "Courier New", monospace;
}

.proof-rail dd {
  margin: 9px 0 0;
  color: #aab2a7;
  font: 700 10px/1.4 Consolas, "Courier New", monospace;
}

.setup-band,
.first-run-band,
.result-path,
.proof-band {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 34px;
}

h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: 58px;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.section-heading > p,
.first-run-band__intro > p:last-child,
.proof-band > div > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.connection-console {
  border: 1px solid var(--ink);
  background: var(--white);
}

.client-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
}

.client-tabs button {
  min-width: 0;
  min-height: 52px;
  padding: 10px 12px;
  border: 0;
  border-right: 1px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font: 800 11px/1.3 Consolas, "Courier New", monospace;
  cursor: pointer;
  overflow-wrap: anywhere;
}

.client-tabs button:last-child {
  border-right: 0;
}

.client-tabs button[aria-selected="true"] {
  background: var(--lime);
}

.client-panel {
  min-height: 244px;
  padding: 28px;
}

.command-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.command-row:last-child {
  border-bottom: 0;
}

.command-row > span,
.task-console > span {
  color: var(--muted);
  font: 800 10px/1.4 Consolas, "Courier New", monospace;
}

.command-row code,
.command-row pre {
  min-width: 0;
  margin: 0;
  padding: 13px 14px;
  background: #eef1eb;
  color: #20261f;
  font: 12px/1.6 Consolas, "Courier New", monospace;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.command-row--stacked {
  grid-template-columns: 1fr;
}

.command-row--stacked button {
  width: max-content;
}

.client-path {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px 18px;
  margin-bottom: 18px;
}

.client-path span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--soft-blue);
  color: var(--blue);
  font: 800 11px/1 Consolas, "Courier New", monospace;
}

.client-path strong {
  align-self: center;
  font-size: 14px;
  line-height: 1.45;
}

.client-panel > small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.5;
}

.copy-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: #2d6d23;
  font: 700 11px/1.5 Consolas, "Courier New", monospace;
}

.first-run-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  border-top: 1px solid var(--ink);
}

.first-run-band__intro h2 {
  margin-bottom: 24px;
}

.task-console {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--ink);
  border-top: 7px solid var(--coral);
  background: var(--ink);
  color: var(--white);
}

.task-console blockquote {
  margin: 24px 0;
  color: #f1f4ed;
  font-size: 18px;
  line-height: 1.65;
}

.result-path {
  border-top: 1px solid var(--ink);
}

.result-path header {
  margin-bottom: 32px;
}

.result-path ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border: 1px solid var(--ink);
  list-style: none;
}

.result-path li {
  min-width: 0;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-right: 1px solid var(--ink);
  background: var(--white);
}

.result-path li:last-child {
  border-right: 0;
  background: var(--soft-green);
}

.result-path li > span {
  color: var(--blue);
  font: 800 11px/1 Consolas, "Courier New", monospace;
}

.result-path li strong {
  margin: 42px 0 16px;
  font-size: 18px;
  line-height: 1.3;
}

.result-path li small {
  margin-top: auto;
  color: var(--muted);
  font: 700 10px/1.4 Consolas, "Courier New", monospace;
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  align-items: center;
  border-top: 1px solid var(--ink);
}

.proof-band h2 {
  margin-bottom: 24px;
}

.proof-band nav {
  margin-top: 26px;
}

.proof-band nav a {
  border-color: var(--line);
}

.proof-band img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--ink);
  background: var(--white);
  object-fit: cover;
}

footer {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px max(24px, calc((100vw - 1200px) / 2));
  border-top: 1px solid #353b34;
  background: var(--ink);
  color: var(--white);
}

footer p {
  margin: 0;
  color: var(--lime);
  font: 800 11px/1.4 Consolas, "Courier New", monospace;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .hero__inner {
    min-height: 470px;
    padding-top: 58px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 44px;
  }

  .proof-rail,
  .result-path ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-rail div:nth-child(n + 3),
  .result-path li:nth-child(n + 3) {
    border-top: 1px solid #353b34;
  }

  .result-path li:nth-child(2) {
    border-right: 0;
  }

  .section-heading,
  .first-run-band,
  .proof-band {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .command-row {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .command-row button {
    grid-column: 2;
    width: max-content;
  }
}

@media (max-width: 620px) {
  .site-header nav {
    gap: 14px;
  }

  .hero__inner,
  .setup-band,
  .first-run-band,
  .result-path,
  .proof-band {
    width: min(100% - 28px, 1200px);
  }

  .hero__inner {
    min-height: 430px;
    padding: 48px 0 44px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 36px;
  }

  .hero__actions > *,
  .proof-band nav a {
    width: 100%;
  }

  .proof-rail,
  .result-path ol,
  .client-tabs {
    grid-template-columns: 1fr;
  }

  .proof-rail div,
  .client-tabs button,
  .result-path li {
    border-right: 0;
    border-bottom: 1px solid #353b34;
  }

  .proof-rail div:last-child,
  .client-tabs button:last-child,
  .result-path li:last-child {
    border-bottom: 0;
  }

  .proof-rail div:nth-child(n + 3),
  .result-path li:nth-child(n + 3) {
    border-top: 0;
  }

  .setup-band,
  .first-run-band,
  .result-path,
  .proof-band {
    padding: 54px 0;
  }

  .client-panel,
  .task-console {
    padding: 20px;
  }

  .command-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .command-row button {
    grid-column: 1;
    width: 100%;
  }

  .result-path li {
    min-height: 160px;
  }

  .result-path li strong {
    margin-top: 28px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
