:root {
  font: 16px/1.5 ui-rounded, system-ui, sans-serif;
  color: #18302b;
  background: #f4f1e8;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
main {
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}
header {
  display: flex;
  justify-content: space-between;
  color: #527067;
}
header strong {
  color: #173f36;
  font-size: 1.25rem;
}
.hero {
  padding: 5rem 0 2rem;
  max-width: 700px;
}
.eyebrow {
  color: #b05233;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1 {
  margin: 0.2rem 0 1rem;
  font: 700 clamp(2.5rem, 8vw, 5rem)/0.98 ui-rounded, system-ui, sans-serif;
  letter-spacing: -0.055em;
}
form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: #fffdf7;
  border: 1px solid #d9d2c2;
  border-radius: 1rem;
}
label {
  display: grid;
  gap: 0.35rem;
  font-weight: 650;
}
input, textarea, select, button {
  font: inherit;
}
input, textarea, select {
  width: 100%;
  border: 1px solid #aab8b2;
  border-radius: 0.55rem;
  padding: 0.7rem;
  background: white;
}
textarea {
  font-family: ui-monospace, monospace;
  font-size: 0.8rem;
}
.actions {
  display: flex;
  gap: 0.75rem;
}
button {
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  background: #176b57;
  color: white;
  font-weight: 700;
}
button.secondary {
  background: #e5e2d8;
  color: #29483f;
}
button:disabled {
  opacity: 0.45;
}
dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
}
dl div {
  padding: 1rem;
  background: #e7ede7;
  border-radius: 0.8rem;
}
dt {
  color: #527067;
  font-size: 0.85rem;
}
dd {
  margin: 0.25rem 0 0;
  font-size: 1.2rem;
  font-weight: 750;
}
details, footer {
  margin-top: 1.5rem;
}
pre {
  overflow: auto;
  padding: 1rem;
  background: #17302b;
  color: #d8eee6;
  border-radius: 0.8rem;
}
footer {
  color: #61736d;
  font-size: 0.9rem;
}
