:root {
  --primary: #2F5D3F;
  --primary-light: #4A7B5A;
  --primary-dark: #1D4429;
  --primary-soft: #EEF3EF;
  --accent: #E5A03D;
  --accent-soft: #FBF1DC;
  --accent-text: #8A5A1A;
  --bg: #FAF8F3;
  --surface: #FFFFFF;
  --surface-tint: #F5F1E8;
  --text-primary: #1A2421;
  --text-secondary: #5C5C5C;
  --text-muted: #8A8A8A;
  --border: #E8E2D6;
  --error: #C0392B;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: all 150ms ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-secondary {
  background: var(--surface);
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-secondary:hover { background: var(--primary-soft); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, 0.88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 150ms ease;
}
.nav-links a:hover { color: var(--text-primary); }
@media (max-width: 880px) { .nav-links { display: none; } }

/* Hero */
.hero { padding: 80px 0 64px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent-text);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.dot-accent {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

h1, h2, h3 { letter-spacing: -0.02em; line-height: 1.15; }
.hero h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.035em;
  color: var(--text-primary);
}
@media (max-width: 700px) { .hero h1 { font-size: 40px; } }

.hero-subhead {
  font-size: 19px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.55;
}

.hero-ctas { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }

.microcopy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  flex-wrap: wrap;
}
.microcopy .sep { color: var(--border); flex-shrink: 0; }
.microcopy-icon { flex-shrink: 0; color: var(--primary); }

.homeowner-prompt {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  max-width: 480px;
}
.homeowner-prompt-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.homeowner-form { display: flex; gap: 8px; }
.homeowner-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  background: var(--surface);
  font-family: inherit;
  color: var(--text-primary);
}
.homeowner-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

/* Hero placeholder */
.hero-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  border: 1px dashed var(--primary-light);
  background:
    radial-gradient(circle at 1px 1px, rgba(47, 93, 63, 0.08) 1px, transparent 0) 0 0 / 24px 24px,
    linear-gradient(180deg, var(--primary-soft) 0%, #F5F1E8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  padding: 24px;
}
.hero-placeholder-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.hero-placeholder-label {
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}
.hero-placeholder-hint {
  max-width: 260px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Sections */
section { padding: 96px 0; }
@media (max-width: 700px) { section { padding: 64px 0; } }

.section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
@media (max-width: 600px) { .section-title { font-size: 32px; } }
.section-sub {
  margin-top: 16px;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* How it works */
.how-it-works {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step { text-align: center; padding: 16px; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px -4px rgba(47, 93, 63, 0.5);
}
.step h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; }

/* Why mow */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 700px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 150ms ease;
}
.why-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -12px rgba(47, 93, 63, 0.18);
}
.why-card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  color: var(--accent-text);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.why-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

/* Founding Mowers */
.founding {
  background: linear-gradient(180deg, var(--primary-soft) 0%, var(--bg) 100%);
  padding: 96px 0;
}
.founding-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 12px 40px -16px rgba(47, 93, 63, 0.18);
}
@media (max-width: 600px) { .founding-card { padding: 32px 24px; } }
.founding-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent-text);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
}
.founding-card h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
@media (max-width: 600px) { .founding-card h2 { font-size: 26px; } }
.founding-intro {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}
.founding-intro strong { color: var(--text-primary); font-weight: 600; }
.founding-also {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
  font-style: italic;
  line-height: 1.6;
}
.founding-perks { list-style: none; margin-bottom: 32px; }
.founding-perks li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.55;
}
.founding-perks li:last-child { border-bottom: none; }
.founding-perks li strong { color: var(--text-primary); font-weight: 600; }
.perk-icon { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* Pro feature inline list */
.pro-details {
  margin-top: 12px;
  padding: 14px 16px;
  background: var(--primary-soft);
  border-radius: 10px;
  border-left: 3px solid var(--primary);
}
.pro-details-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pro-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  margin: 0;
  padding: 0;
}
@media (max-width: 600px) { .pro-features { grid-template-columns: 1fr; } }
.pro-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: none;
  font-size: 13px;
  color: var(--text-primary);
  line-height: 1.4;
}
.pro-features li svg { color: var(--primary); flex-shrink: 0; }

/* Footer */
footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 8px 0 16px;
  max-width: 320px;
}
.footer-built {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0;
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== Form pages (mower signup) ===== */
.page-header {
  padding: 64px 0 32px;
  text-align: center;
}
.page-header .hero-eyebrow { margin-bottom: 20px; }
.page-header h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
@media (max-width: 600px) { .page-header h1 { font-size: 32px; } }
.page-header p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.form-card {
  max-width: 720px;
  margin: 0 auto 96px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 12px 40px -16px rgba(47, 93, 63, 0.12);
}
@media (max-width: 600px) { .form-card { padding: 28px 20px; } }

.form-group {
  margin-bottom: 24px;
}
.form-group:last-of-type { margin-bottom: 32px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.form-label .required { color: var(--error); margin-left: 2px; }
.form-label .optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 12px;
  margin-left: 6px;
}
.form-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.4;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  background: var(--surface);
  font-family: inherit;
  color: var(--text-primary);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}
.form-textarea { min-height: 96px; resize: vertical; }
.form-select { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235C5C5C' stroke-width='2.5' stroke-linecap='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (max-width: 500px) { .checkbox-grid { grid-template-columns: 1fr; } }
.checkbox-option,
.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 150ms ease;
  font-size: 14px;
}
.checkbox-option:hover,
.radio-option:hover {
  border-color: var(--primary-light);
  background: var(--primary-soft);
}
.checkbox-option input,
.radio-option input { accent-color: var(--primary); }

.radio-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.radio-option { flex: 1; min-width: 100px; justify-content: center; }
.radio-option input { margin-right: 4px; }

.form-footer-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}

/* Success page */
.success-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  box-shadow: 0 12px 40px -16px rgba(47, 93, 63, 0.12);
}
@media (max-width: 600px) { .success-card { padding: 40px 24px; } }
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px -8px rgba(47, 93, 63, 0.45);
}
.success-card h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.success-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}
.success-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 20px;
}
.success-back:hover { color: var(--primary); }

/* Visually hidden (honeypot, sr-only) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
