:root {
  color-scheme: light;
  --bg: #f6f7f2;
  --ink: #171a1f;
  --muted: #5f6672;
  --line: #d9ded1;
  --panel: #ffffff;
  --primary: #0e6b57;
  --primary-ink: #ffffff;
  --accent: #d4572c;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
}

a {
  color: inherit;
}

.page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 40px;
}

.intro {
  max-width: 760px;
  padding-bottom: 56px;
}

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

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

h1 {
  max-width: 11ch;
  margin-bottom: 20px;
  font-size: clamp(3.5rem, 10vw, 8.6rem);
  line-height: 0.9;
}

.lede {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.55;
}

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

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

.button.primary {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-ink);
}

.button.secondary {
  background: transparent;
}

.status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.status article {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
}

.step {
  display: block;
  margin-bottom: 28px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 900;
}

.status h2 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.status p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

code {
  border-radius: 4px;
  background: #eef1e8;
  padding: 0.12em 0.35em;
  color: #27312d;
  font-size: 0.92em;
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 28px, 1120px);
    padding-top: 46px;
  }

  .status {
    grid-template-columns: 1fr;
  }
}
