:root {
  --ink: #17201c;
  --muted: #617068;
  --line: #dce7df;
  --brand: #0f7a5a;
  --accent: #f5bd31;
  --wash: #f6fbf7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 189, 49, 0.24), transparent 32rem),
    radial-gradient(circle at 86% 8%, rgba(15, 122, 90, 0.18), transparent 28rem),
    linear-gradient(140deg, #ffffff 0%, var(--wash) 64%, #eef7f0 100%);
}

.shell {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 12vh 0 8vh;
}

.hero {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 800;
  font-size: 13px;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 9vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.lead {
  margin: 30px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.55;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(15, 122, 90, 0.12);
}

.details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 72px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
}

.details div {
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
}

.details strong,
.details span {
  display: block;
}

.details strong {
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.details span {
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1040px);
    padding-top: 9vh;
  }

  .details {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }
}
