:root {
  color-scheme: light dark;
  font-family: system-ui, sans-serif;
  background: #eef4f1;
  color: #17221d;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  box-sizing: border-box;
}

main {
  width: min(38rem, 100%);
  padding: clamp(1.5rem, 5vw, 3rem);
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 0 1rem 3rem rgb(20 55 40 / 12%);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: #26734d;
  font-size: 0.85rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 3.25rem);
  line-height: 1.05;
}

p {
  line-height: 1.6;
}

dl {
  margin: 2rem 0 0;
  border-top: 1px solid #dce7e1;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid #dce7e1;
}

dt { color: #52635a; }
dd { margin: 0; font-weight: 650; }
.dot { display: inline-block; width: 0.7rem; height: 0.7rem; border-radius: 50%; background: #21a366; }

@media (prefers-color-scheme: dark) {
  :root { background: #101713; color: #f1f7f4; }
  main { background: #17231d; box-shadow: none; }
  .eyebrow { color: #6fd3a0; }
  dl, dl div { border-color: #314238; }
  dt { color: #a5b7ad; }
}

