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

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(60, 165, 141, 0.2), transparent 34rem),
    #edf4f2;
}

.card {
  width: min(100%, 680px);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid rgba(24, 51, 47, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(24, 51, 47, 0.12);
}

.eyebrow {
  margin: 0 0 10px;
  color: #237e6b;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

p {
  line-height: 1.65;
}

.result {
  margin-top: 28px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

textarea {
  width: 100%;
  padding: 14px;
  resize: vertical;
  border: 1px solid #afc7c1;
  border-radius: 12px;
  background: #f7fbfa;
  color: #18332f;
  font: 0.85rem/1.5 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.button {
  display: inline-block;
  margin-top: 14px;
  padding: 11px 18px;
  border: 0;
  border-radius: 10px;
  background: #237e6b;
  color: white;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: #196353;
}

.button.secondary {
  background: #dcece8;
  color: #18332f;
}

.status {
  min-height: 1.5em;
  margin: 10px 0 0;
  color: #237e6b;
  font-weight: 650;
}

.privacy {
  margin: 28px 0 0;
  color: #5c716c;
  font-size: 0.86rem;
}

