:root {
  color-scheme: light;
  --bg: #f6f4ef;
  --panel: #ffffff;
  --text: #1f2933;
  --muted: #667085;
  --line: #ded8cc;
  --accent: #1f7a5c;
  --accent-2: #b36b2c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(246, 244, 239, 0.82), rgba(246, 244, 239, 0.92)),
    url("https://images.unsplash.com/photo-1600210492493-0946911123ea?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

.shell {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  min-height: 34vh;
  padding-top: 16px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: #3f4852;
  font-size: 20px;
  line-height: 1.6;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 112px;
  padding: 10px 12px;
  border: 1px solid rgba(31, 122, 92, 0.24);
  background: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

article,
.note {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
}

article {
  min-height: 180px;
  padding: 18px;
}

article span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-weight: 700;
}

h2 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: 0;
}

article p,
.note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.note {
  margin-top: 12px;
  padding: 20px;
}

@media (max-width: 820px) {
  .shell {
    width: min(100vw - 24px, 680px);
    padding: 32px 0;
  }

  .hero {
    display: block;
    min-height: auto;
  }

  .status {
    margin-top: 20px;
  }

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