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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

.shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(100%, 560px);
  border: 1px solid #d9d2c6;
  border-radius: 8px;
  background: #fffaf2;
  padding: 32px;
  box-shadow: 0 18px 45px rgb(33 28 22 / 12%);
}

.eyebrow {
  margin: 0 0 8px;
  color: #78664e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 8vw, 56px);
  line-height: 1;
}

.description {
  margin: 16px 0 24px;
  color: #4b4237;
  font-size: 17px;
  line-height: 1.55;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.stats div {
  border: 1px solid #e3dacd;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

dt {
  color: #766b60;
  font-size: 13px;
}

dd {
  margin: 4px 0 0;
  font-size: 28px;
  font-weight: 800;
}

.updated {
  min-height: 20px;
  margin: 20px 0;
  color: #62594f;
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  background: #1f6f50;
  color: #fff;
  font-weight: 700;
  padding: 0 18px;
  text-decoration: none;
}

.button:focus-visible {
  outline: 3px solid #84d9b9;
  outline-offset: 3px;
}

@media (max-width: 520px) {
  .card {
    padding: 22px;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    background: #14120f;
    color: #f8efe2;
  }

  .card {
    border-color: #3a332b;
    background: #211d18;
    box-shadow: none;
  }

  .description,
  .updated {
    color: #d8c8b4;
  }

  .eyebrow,
  dt {
    color: #bba98f;
  }

  .stats div {
    border-color: #3a332b;
    background: #171410;
  }
}
