:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #172034;
  background: #f4f1ea;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: #f4f1ea;
}

.page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
}

.card {
	width: min(100%, 38rem);
	padding: clamp(2rem, 6vw, 4rem);
	border: 1px solid rgba(23, 32, 52, 0.1);
	border-radius: 1rem;
	background: #fff;
}

.mark {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 2.25rem;
  place-items: center;
  border-radius: 1rem;
  color: #fff;
  background: #172034;
  font-size: 1.5rem;
  font-weight: 750;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: #506078;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.5rem, 14vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.status {
  display: inline-block;
  margin: 2rem 0 1.25rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: #70430b;
  background: #f8dfb7;
  font-size: 0.9rem;
  font-weight: 700;
}

.description {
  max-width: 31rem;
  margin: 0;
  color: #4b5568;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}

@media (max-width: 32rem) {
  .page {
    padding: 1rem;
  }

  .card {
	border-radius: 1rem;
  }
}
