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

:root {
  --accent: #1D9E75;
  --accent-light: #E1F5EE;
  --accent-dark: #0F6E56;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-tertiary: #5c5c5c;
  --bg: #fff;
  --bg-secondary: #f8f8f7;
  --border: rgba(0,0,0,0.1);
  --border-strong: rgba(0,0,0,0.35);
  --danger: #c0392b;
  --danger-bg: #fdf0ee;
  --mono: 'Courier New', Courier, monospace;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --radius-md: 8px;
  --radius-lg: 12px;
}

body {
  font-family: var(--sans);
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-bottom: 0.5px solid var(--border);
}

.logo {
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.nav-cta {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-dark);
  background: var(--accent-light);
  border: none;
  border-radius: var(--radius-md);
  padding: 10px 20px;
  cursor: pointer;
  text-decoration: none;
}

.nav-cta:hover { background: #c8ead9; }

/* HERO (reused for page headers) */
.hero {
  padding: 5rem 0 4rem;
  border-bottom: 0.5px solid var(--border);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-secondary);
  border: 1px solid var(--border-strong);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.hero-tag i { color: var(--accent-dark); }

.hero h1 {
  font-size: 54px;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: 0.3rem;
}

.hero h1 .line2 {
  color: var(--text-secondary);
  font-weight: 400;
}

.hero h1 .line2 em {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 1.75rem 0 2.5rem;
}

.hero-sub strong {
  color: var(--text-primary);
  font-weight: 500;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover { background: var(--accent-dark); }
.btn-primary:disabled { background: var(--text-tertiary); cursor: not-allowed; }

.btn-ghost {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text-secondary);
  background: none;
  border: 0.5px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 12px 22px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.btn-ghost:hover { background: var(--bg-secondary); }

.stat-row {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 0.5px solid var(--border);
  flex-wrap: wrap;
}

.stat-num {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-num span { color: var(--accent); }
.stat-label { font-size: 15px; color: var(--text-secondary); }

/* SECTIONS */
.section {
  padding: 3.5rem 0;
  border-bottom: 0.5px solid var(--border);
}

.section-eyebrow {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

/* FORM */
.form-wrap {
  max-width: 480px;
}

.field {
  margin-bottom: 1.5rem;
}

.field label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.field input,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 17px;
  color: var(--text-primary);
  background: var(--bg);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--sans);
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.form-status {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 1rem;
  min-height: 1.2em;
}

.form-status.error { color: var(--danger); }

/* CENTERED CONTENT (thanks page etc.) */
.center-wrap {
  padding: 6rem 0;
  text-align: center;
}

.center-wrap h1 {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.center-wrap p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.center-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 1.5rem;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .page { padding: 0 1.25rem 3rem; }
  .hero { padding: 3rem 0 2.5rem; }
  .hero h1 { font-size: 32px; }
  .hero-tag { font-size: 13px; }
  .section-eyebrow { font-size: 17px; margin-bottom: 1.5rem; }
  .hero-sub { font-size: 18px; }
  .stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; margin-top: 2rem; padding-top: 1.75rem; }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 14px; }
  .section { padding: 2.5rem 0; }
  .center-wrap { padding: 3.5rem 0; }
  .center-wrap h1 { font-size: 28px; }
  .center-wrap p { font-size: 16px; }
  .cta-row { gap: 0.75rem; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; justify-content: center; font-size: 16px; padding: 14px 20px; }
  .field label { font-size: 14px; }
  .field input, .field textarea { font-size: 16px; padding: 13px 14px; }
  .form-status { font-size: 14px; }
}