:root {
  color-scheme: light;
  --ink: #0b1117;
  --muted: #61736b;
  --line: #cadcd1;
  --green: #00c805;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #eaf3ee;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.legal-shell {
  margin: 0 auto;
  max-width: 780px;
  padding: 32px 18px 64px;
}

.legal-header {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.legal-header img {
  border-radius: 8px;
  height: 44px;
  width: 44px;
}

.legal-header a {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.legal-card {
  background: #f6fbf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 5vw, 42px);
}

h1 {
  font-size: clamp(28px, 6vw, 44px);
  letter-spacing: 0;
  margin: 0 0 8px;
}

h2 {
  font-size: 19px;
  letter-spacing: 0;
  margin: 30px 0 8px;
}

p,
li,
label,
input,
textarea,
button {
  font-size: 15px;
  line-height: 1.6;
}

.muted {
  color: var(--muted);
}

a {
  color: #087d1b;
}

form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

label {
  display: grid;
  font-weight: 700;
  gap: 5px;
}

input,
textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  padding: 10px 12px;
  width: 100%;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

button {
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  justify-self: start;
  min-height: 44px;
  padding: 8px 18px;
}

.status {
  color: var(--muted);
  min-height: 24px;
}

.honeypot {
  left: -9999px;
  position: absolute;
}
