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

* {
  box-sizing: border-box;
}

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

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

.panel {
  width: min(760px, 100%);
  border: 1px solid #d7ddd7;
  border-radius: 8px;
  background: #fffefa;
  padding: 32px;
  box-shadow: 0 18px 44px rgb(23 32 24 / 10%);
}

.eyebrow {
  margin: 0 0 12px;
  color: #52685c;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.summary {
  margin: 18px 0 26px;
  color: #3d4a40;
  font-size: 16px;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

button {
  min-height: 42px;
  border: 1px solid #172018;
  border-radius: 6px;
  background: #172018;
  color: #fff;
  padding: 0 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

button:last-child {
  background: #f2c14e;
  border-color: #9a7624;
  color: #172018;
}

button:disabled {
  opacity: 0.6;
  cursor: wait;
}

pre {
  min-height: 220px;
  overflow: auto;
  margin: 0;
  border-radius: 6px;
  background: #111711;
  color: #dff2df;
  padding: 16px;
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-wrap;
}
