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

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  padding: 2rem 1.25rem 1.25rem;
  background:
    radial-gradient(circle at 15% 10%, rgb(255 255 255 / 80%), transparent 32rem),
    linear-gradient(145deg, #f7f5ef, #e7ebe3);
}

.card {
  width: min(100%, 43rem);
  padding: clamp(2rem, 7vw, 4.5rem);
  border: 1px solid rgb(42 77 59 / 16%);
  border-radius: 1.75rem;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 1.5rem 4rem rgb(32 52 42 / 12%);
}

.brand-mark {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #315b46;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.eyebrow {
  margin: 1.75rem 0 0.5rem;
  color: #52705f;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 13ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 7vw, 4.25rem);
  font-weight: 500;
  line-height: 1.02;
}

.intro {
  margin: 1.5rem 0;
  max-width: 38rem;
  color: #46584e;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.7;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: #214c37;
  background: #e4f0e8;
  font-size: 0.93rem;
}

.status span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: #2d7b50;
  box-shadow: 0 0 0 0.25rem rgb(45 123 80 / 14%);
}

.notice {
  margin: 1.5rem 0 0;
  color: #66746c;
  font-size: 0.9rem;
  line-height: 1.6;
}

footer {
  padding-top: 1.5rem;
  color: #6b776f;
  font-size: 0.82rem;
}

@media (max-width: 34rem) {
  .card {
    border-radius: 1.25rem;
  }
}
