:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #18312b;
  background: #f3f6f2;
}

* {
  box-sizing: border-box;
}

body {
  display: grid;
  min-height: 100vh;
  margin: 0;
  padding: 24px;
  place-items: center;
  background:
    radial-gradient(circle at 15% 15%, rgb(181 220 198 / 45%), transparent 34rem),
    radial-gradient(circle at 90% 85%, rgb(223 194 139 / 28%), transparent 32rem),
    #f3f6f2;
}

.card {
  width: min(100%, 680px);
  padding: clamp(32px, 7vw, 72px);
  border: 1px solid rgb(24 49 43 / 10%);
  border-radius: 32px;
  background: rgb(255 255 255 / 82%);
  box-shadow: 0 24px 70px rgb(36 69 58 / 12%);
  text-align: center;
  backdrop-filter: blur(12px);
}

.mark {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 20px;
  place-items: center;
  color: #fff;
  background: #266d57;
  font-size: 28px;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 12px;
  color: #266d57;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 560px;
  margin: 0 auto;
  font-size: clamp(34px, 7vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.description {
  max-width: 500px;
  margin: 24px auto 0;
  color: #5a6b66;
  font-size: clamp(17px, 2.5vw, 20px);
  line-height: 1.6;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 32px 0 0;
  padding: 10px 16px;
  border-radius: 999px;
  color: #315d50;
  background: #e5f2eb;
  font-size: 14px;
  font-weight: 600;
}

.status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3f9c73;
  box-shadow: 0 0 0 4px rgb(63 156 115 / 15%);
}

@media (max-width: 520px) {
  body {
    padding: 16px;
  }

  .card {
    padding: 40px 24px;
    border-radius: 24px;
  }
}
