:root {
  --green-900: #143d27;
  --green-700: #1f5d3a;
  --green-500: #2e8b57;
  --green-50:  #eef6f0;
  --ink:       #0f1a14;
  --muted:     #4a5a52;
  --line:      #e3ebe5;
  --bg:        #ffffff;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: radial-gradient(ellipse at top, var(--green-50) 0%, var(--bg) 70%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(31, 93, 58, 0.06);
  padding: 48px 40px;
  width: 100%;
  max-width: 480px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.brand img {
  width: 200px;
  height: auto;
  display: block;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-50);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--green-900);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.lede {
  margin: 0 0 32px;
}

.lede p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 14px;
}

.lede p:last-child {
  margin-bottom: 0;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s;
  margin-bottom: 20px;
  font-family: inherit;
  color: var(--ink);
  background: var(--bg);
}

input:focus {
  border-color: var(--green-500);
}

.row {
  display: flex;
  gap: 16px;
}

.row > div {
  flex: 1;
}

button {
  width: 100%;
  padding: 13px;
  background: var(--green-700);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
  font-family: inherit;
  margin-top: 8px;
}

button:hover:not(:disabled) {
  background: var(--green-900);
}

button:disabled {
  background: #9bb6a4;
  cursor: not-allowed;
}

.error {
  background: #fff0f0;
  border: 1px solid #f5c2c2;
  color: #c0392b;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  margin: 16px 0 0;
}

.error:empty {
  display: none;
}

.fineprint {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin: 16px 0 0;
  line-height: 1.5;
}

.fineprint a {
  color: var(--green-700);
  text-decoration: none;
}

.fineprint a:hover {
  text-decoration: underline;
}

.success h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--green-900);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.success p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 12px;
}

.success p strong {
  color: var(--ink);
}

.disclaimer {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  margin: 32px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.how-it-works {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.how-it-works h2 {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-900);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.steps {
  margin: 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.steps li {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.steps li::marker {
  color: var(--green-700);
  font-weight: 600;
}

.steps li strong {
  color: var(--ink);
  font-weight: 600;
}
