:root {
  --ink: #11251d;
  --muted: #52645c;
  --cream: #f7f3e8;
  --paper: #fffdf7;
  --green: #196344;
  --green-dark: #0d432e;
  --lime: #d9f263;
  --line: #d7ddd5;
  --danger: #9a2d24;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 14%, rgba(217, 242, 99, .35), transparent 25rem),
    linear-gradient(135deg, var(--cream), #eef2e7);
  font-family: "DM Sans", system-ui, sans-serif;
}
.site-header, footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header { min-height: 88px; }
.brand { color: var(--ink); text-decoration: none; font: 800 1.1rem Manrope, sans-serif; letter-spacing: -.02em; }
.brand span { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-right: 9px; border-radius: 50%; color: white; background: var(--green); font-size: .75rem; }
.header-note, .fine-print, .privacy { color: var(--muted); font-size: .82rem; }
.hero { width: min(1180px, calc(100% - 40px)); min-height: calc(100vh - 166px); margin: 0 auto; padding: 64px 0 84px; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(48px, 8vw, 112px); align-items: center; }
.eyebrow, .card-kicker { color: var(--green); font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2 { font-family: Manrope, sans-serif; letter-spacing: -.055em; line-height: .98; }
h1 { max-width: 720px; margin: 14px 0 24px; font-size: clamp(3rem, 6vw, 5.8rem); }
h1 em { color: var(--green); font-style: normal; }
.lede { max-width: 610px; color: #344b40; font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.65; }
.benefits { margin: 34px 0 28px; padding: 0; list-style: none; }
.benefits li { display: flex; align-items: center; gap: 16px; margin: 14px 0; font-weight: 600; }
.benefits span { display: grid; place-items: center; flex: 0 0 35px; height: 35px; border: 1px solid var(--green); border-radius: 50%; color: var(--green); font-size: .68rem; }
.signup-card { position: relative; overflow: hidden; padding: clamp(28px, 5vw, 48px); border: 1px solid rgba(17,37,29,.12); border-radius: 24px; background: rgba(255,253,247,.94); box-shadow: 0 24px 70px rgba(19,55,41,.13); }
.signup-card::before { content: ""; position: absolute; width: 180px; height: 180px; top: -115px; right: -95px; border: 28px solid var(--lime); border-radius: 50%; }
h2 { margin: 8px 0 10px; font-size: clamp(2rem, 4vw, 3.2rem); }
.signup-card > p { color: var(--muted); }
.field { margin-top: 18px; }
.field label { display: block; margin-bottom: 7px; font-size: .82rem; font-weight: 700; }
.field input { width: 100%; min-height: 52px; padding: 0 15px; border: 1px solid #bdc8bf; border-radius: 10px; background: white; color: var(--ink); font: inherit; }
.field input:focus { outline: 3px solid rgba(25,99,68,.18); border-color: var(--green); }
.consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; margin: 20px 0; color: #40544a; font-size: .82rem; line-height: 1.5; cursor: pointer; }
.consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--green); }
button { width: 100%; min-height: 56px; border: 0; border-radius: 10px; color: white; background: var(--green); font: 700 1rem "DM Sans", sans-serif; cursor: pointer; transition: transform .15s, background .15s; }
button:hover { transform: translateY(-1px); background: var(--green-dark); }
button:focus-visible, a:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
.privacy { margin-bottom: 0; text-align: center; }
.trap { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.form-error { padding: 12px 14px; border-left: 4px solid var(--danger); background: #fff0ed; color: #70251f !important; font-size: .9rem; }
.cf-turnstile { margin: 0 0 18px; }
footer { min-height: 78px; border-top: 1px solid rgba(17,37,29,.14); color: var(--muted); font-size: .78rem; }
.thanks-wrap { min-height: calc(100vh - 88px); display: grid; place-items: center; padding: 32px 20px 90px; }
.thanks-card { max-width: 650px; padding: clamp(36px, 8vw, 72px); text-align: center; border-radius: 24px; background: var(--paper); box-shadow: 0 24px 70px rgba(19,55,41,.13); }
.thanks-card h1 { margin: 20px auto; font-size: clamp(2.5rem, 7vw, 4.5rem); }
.thanks-card p { color: var(--muted); line-height: 1.7; }
.success-mark { display: grid; place-items: center; width: 62px; height: 62px; margin: 20px auto; border-radius: 50%; background: var(--lime); color: var(--green-dark); font-size: 2rem; font-weight: 800; }
.text-link { display: inline-block; margin-top: 18px; color: var(--green); font-weight: 700; }

@media (max-width: 820px) {
  .header-note { display: none; }
  .hero { min-height: auto; padding: 36px 0 60px; grid-template-columns: 1fr; gap: 42px; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.8rem); }
  footer { gap: 16px; }
}
@media (max-width: 480px) {
  .site-header, .hero, footer { width: min(100% - 28px, 1180px); }
  .site-header { min-height: 72px; }
  .signup-card { padding: 26px 20px; border-radius: 18px; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } }
