:root {
  color-scheme: light;
  --background: #f7f4ec;
  --surface: #fffdf7;
  --ink: #173f34;
  --muted: #62736c;
  --line: #d7ddd7;
  --accent: #174f3e;
  --accent-hover: #103d30;
  --error: #9e382e;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--background);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

button, input, textarea { font: inherit; }

.shell {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 28px 20px 56px;
}

.brand {
  display: inline-block;
  margin-bottom: clamp(68px, 13vh, 132px);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.panel { width: 100%; }

.intro { max-width: 650px; }

h1 {
  max-width: 660px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 8.4vw, 5.1rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.intro > p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.4vw, 1.22rem);
  line-height: 1.55;
}

form { margin-top: 48px; }

.field + .field { margin-top: 30px; }

label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.92rem;
  font-weight: 720;
}

textarea, input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: #18352d;
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

textarea {
  min-height: 158px;
  padding: 17px 18px;
  line-height: 1.5;
  resize: vertical;
}

input { height: 54px; padding: 0 17px; }

textarea::placeholder, input::placeholder { color: #8b9993; }

textarea:focus, input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(23, 79, 62, 0.12);
}

.examples {
  margin: 9px 2px 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.honey {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-error {
  min-height: 22px;
  margin: 14px 0 7px;
  color: var(--error);
  font-size: 0.88rem;
}

button {
  min-height: 52px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 740;
  transition: background 140ms ease, transform 140ms ease;
}

button:active { transform: translateY(1px); }

.primary {
  width: 100%;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: white;
}

.primary:hover { background: var(--accent-hover); }
.primary:disabled { cursor: wait; opacity: 0.66; }

.trust {
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.trust p { margin: 0; }
.trust .retention { margin-top: 7px; }

.success { max-width: 650px; }
.success h1 { font-size: clamp(3.8rem, 13vw, 7rem); }

.success h2 {
  margin: 20px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 5vw, 2.55rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.next-steps {
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.next-steps li {
  counter-increment: steps;
  display: flex;
  align-items: center;
  min-height: 56px;
  border-top: 1px solid var(--line);
  color: #294d43;
}

.next-steps li:last-child { border-bottom: 1px solid var(--line); }

.next-steps li::before {
  content: counter(steps, decimal-leading-zero);
  width: 48px;
  color: #82908a;
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
}

.reminder {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.secondary {
  margin-top: 30px;
  padding: 0 23px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
}

.secondary:hover { background: rgba(23, 63, 52, 0.06); }

[hidden] { display: none !important; }

@media (min-width: 700px) {
  .shell { padding: 42px 32px 90px; }
  form { margin-top: 58px; }
  .primary { width: auto; min-width: 174px; padding: 0 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
