:root {
  color-scheme: light;
  --background: #eef2e5;
  --card: #ffffff;
  --ink: #172018;
  --muted: #48524a;
  --accent: #2f6d3b;
  --accent-dark: #1d4d29;
  --border: #c8d2c3;
  --focus: #005fcc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(47, 109, 59, 0.14), transparent 22rem),
    var(--background);
}

main {
  width: min(100% - 2rem, 52rem);
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5rem) 0 4rem;
}

.hero {
  max-width: 44rem;
  margin-bottom: 3rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 9vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.intro {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.2;
}

.steps {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: setup-step;
}

.steps > li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: clamp(1.25rem, 4vw, 1.75rem);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  background: var(--card);
  box-shadow: 0 0.6rem 1.8rem rgba(23, 32, 24, 0.08);
  counter-increment: setup-step;
}

.steps > li::before {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.65rem;
  color: #ffffff;
  background: var(--accent);
  content: counter(setup-step);
  font-size: 1.2rem;
  font-weight: 800;
  place-items: center;
}

h3 {
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
  line-height: 1.3;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

a {
  color: var(--accent-dark);
  font-weight: 750;
  text-decoration-thickness: 0.11em;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--accent);
}

a:focus-visible {
  border-radius: 0.15rem;
  outline: 0.22rem solid var(--focus);
  outline-offset: 0.22rem;
}

.download {
  display: inline-block;
  margin-bottom: 0.25rem;
}

.endpoint {
  color: var(--ink);
  overflow-wrap: anywhere;
}

@media (max-width: 34rem) {
  .steps > li {
    grid-template-columns: 1fr;
  }
}
