:root {
  color: #20221e;
  background: #f2f3ed;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  background:
    radial-gradient(circle at 82% 12%, rgba(213, 255, 71, .38), transparent 30rem),
    #f2f3ed;
}

main {
  width: min(760px, calc(100% - 40px));
  margin: auto;
  padding: 80px 0 44px;
}

.mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  background: #d5ff47;
  font-size: 23px;
  font-weight: 750;
}

.eyebrow {
  margin: 28px 0 12px;
  color: #74796c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -.055em;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 0;
  color: #6f736b;
  font-size: 14px;
}

.status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ec414;
  box-shadow: 0 0 0 6px rgba(158, 196, 20, .12);
}

footer {
  padding: 24px 20px 34px;
  color: #777b72;
  font-size: 12px;
  text-align: center;
}

footer a { color: inherit; text-decoration: none; }
footer a:hover { color: #20221e; text-decoration: underline; }
