:root {
  --accent: #0f3d3e;
  --accent2: #e3b23c;
  --bg: #f6f1e8;
  --ink: #142022;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}
.site-header, .site-footer, main {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.brand {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  font-size: 1.35rem;
}
nav a { color: var(--ink); text-decoration: none; margin-left: 1rem; }
nav a.cta, .button, button {
  background: var(--accent);
  color: #fff;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}
h1, h2, h3 { font-family: "IBM Plex Serif", Georgia, serif; }
.hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0.3rem 0 0.8rem; }
.eyebrow { letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent2); font-size: 0.85rem; }
.lede { font-size: 1.15rem; max-width: 40rem; }
.grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid article { background: #fff; padding: 1rem; border-radius: 8px; border: 1px solid rgba(0,0,0,0.08); }
.price { font-weight: 600; color: var(--accent); }
.lead-form { max-width: 32rem; }
.lead-form p { display: flex; flex-direction: column; gap: 0.3rem; }
.lead-form input, .lead-form textarea {
  font: inherit; padding: 0.45rem 0.55rem; border: 1px solid #ccc; border-radius: 4px;
}
/* Honeypot: off-screen, not display:none (some bots skip obviously hidden fields). */
.hp-field, p:has(.hp-field) {
  position: absolute;
  left: -10000px;
  height: 1px;
  overflow: hidden;
}
.messages { background: #e8f5e9; padding: 0.75rem 1rem; border-radius: 6px; }
.site-footer { opacity: 0.7; font-size: 0.9rem; }
.button-ghost { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; word-break: break-all; background: #fff; padding: 0.6rem 0.75rem; border-radius: 6px; border: 1px solid rgba(0,0,0,0.08); }
.pay-box { background: #fff; padding: 1rem 1.2rem; border-radius: 8px; margin: 1rem 0; border: 1px solid rgba(0,0,0,0.08); }
.warn { background: #fff3cd; padding: 0.75rem 1rem; border-radius: 6px; }
