:root {
  --bg: #f4f1e8;
  --panel: rgba(255, 255, 255, 0.9);
  --text: #13231c;
  --muted: #4f6258;
  --accent: #0b7a52;
  --border: rgba(19, 35, 28, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(11, 122, 82, 0.12), transparent 35%),
    linear-gradient(180deg, #faf7ef 0%, var(--bg) 100%);
  min-height: 100vh;
}

.shell {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.shell--app {
  max-width: 960px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2 {
  margin: 0;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.96;
  max-width: 10ch;
}

h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.lead {
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 20px 0 28px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 24px;
  margin-top: 18px;
  box-shadow: 0 18px 40px rgba(19, 35, 28, 0.06);
}

.card--compact {
  max-width: 620px;
}

.hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  cursor: pointer;
  font: inherit;
  padding: 12px 20px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.button--secondary {
  background: #163b2f;
}

.status,
.meta {
  margin: 14px 0 0;
  color: var(--muted);
}

.status[data-error="true"] {
  color: #9b1c1c;
}

.hidden {
  display: none;
}

ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.7;
}

a {
  color: var(--accent);
}

@media (max-width: 720px) {
  .hero {
    flex-direction: column;
  }
}
