:root {
  color-scheme: light;
  --background: #f3f5f2;
  --surface: #ffffff;
  --text: #17211d;
  --muted: #5f6c65;
  --border: #d6ddd8;
  --primary: #174f3b;
  --primary-hover: #0f3d2d;
  --soft: #e8f0ec;
  --focus: #9fc9b7;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  line-height: 1.55;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  width: min(850px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 80px;
}

.hero {
  padding: 12px 4px 28px;
}

.hero h1 {
  max-width: 720px;
  margin: 4px 0 16px;
  font-size: clamp(2rem, 6vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.intro {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card {
  margin-top: 20px;
  padding: clamp(22px, 5vw, 38px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(26, 46, 37, 0.06);
}

.card h2 {
  margin: 0 0 24px;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.grid {
  display: grid;
  gap: 18px;
}

.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: block;
  margin-top: 18px;
  font-weight: 700;
}

.grid label {
  margin-top: 0;
}

.optional,
.required-note {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.field-note {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--focus);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

button,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}

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

.primary {
  color: #fff;
  background: var(--primary);
}

.primary:hover {
  background: var(--primary-hover);
}

.secondary {
  color: var(--primary);
  background: var(--soft);
  border-color: #ccddd4;
}

.privacy-note,
.fine-print,
.status {
  color: var(--muted);
  font-size: 0.9rem;
}

.status {
  min-height: 1.4em;
  margin-bottom: 0;
  font-weight: 650;
}

.section-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.section-heading-row h2 {
  margin-top: 4px;
}

.badge {
  padding: 5px 9px;
  color: var(--primary);
  background: var(--soft);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.recipients {
  margin-top: 18px;
  padding: 13px 15px;
  color: var(--muted);
  background: #f7f9f7;
  border: 1px solid var(--border);
  border-radius: 10px;
}


.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 650px) {
  .page-shell {
    width: min(100% - 20px, 850px);
    padding-top: 28px;
  }

  .two-columns {
    grid-template-columns: 1fr;
  }

  .button-row > * {
    width: 100%;
  }
}
