/* Munodha palette: light blue on white, matching www.munodha.com tokens. */
:root {
  --ink: #1f2a37;
  --ink-soft: #5b6675;
  --paper: #ffffff;
  --brand: #2563eb;
  --brand-soft: #eaf2fe;
  --line: #e3e8ef;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
header.site, main, footer.site { max-width: 860px; margin: 0 auto; padding: 0 20px; }
header.site {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.brand { font-weight: bold; font-size: 22px; color: var(--ink); text-decoration: none; }
header.site nav a { color: var(--ink-soft); text-decoration: none; font-size: 15px; }
header.site nav a:hover { color: var(--brand); }
h1 { font-size: 34px; line-height: 1.2; margin: 34px 0 10px; }
.lede { font-size: 18px; color: var(--ink-soft); max-width: 60ch; }
.card {
  border: 1px solid var(--line); border-radius: 10px; padding: 20px 22px; margin: 22px 0;
  background: #fff;
}
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
@media (max-width: 640px) { .grid { grid-template-columns: 1fr; } }
label { display: block; font-size: 14.5px; color: var(--ink-soft); margin-bottom: 10px; }
input {
  display: block; width: 100%; margin-top: 4px; padding: 9px 11px;
  border: 1px solid var(--line); border-radius: 8px; font: inherit; color: var(--ink);
}
input:focus { outline: 2px solid var(--brand-soft); border-color: var(--brand); }
.row { display: flex; align-items: center; gap: 16px; margin-top: 6px; }
button {
  background: var(--brand); color: #fff; border: none; border-radius: 8px;
  padding: 11px 22px; font: inherit; font-size: 16px; cursor: pointer;
}
button:hover { background: #1d4fd0; }
button[disabled] { background: var(--ink-soft); cursor: wait; }
button.quiet {
  background: var(--brand-soft); color: var(--brand); padding: 7px 14px; font-size: 14px;
}
.muted { color: var(--ink-soft); font-size: 14px; }
#lead-list { padding-left: 0; list-style: none; counter-reset: lead; }
#lead-list li {
  border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; margin: 12px 0;
}
.lead-head { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.lead-name { font-weight: bold; font-size: 17px; }
.badge {
  background: var(--brand-soft); color: var(--brand); border-radius: 6px;
  padding: 2px 9px; font-size: 13px; white-space: nowrap;
}
.copy-out {
  background: var(--brand-soft); border-radius: 8px; padding: 12px 15px; margin-top: 10px;
  font-size: 14.5px; white-space: pre-wrap;
}
.enrich-out { margin-top: 8px; font-size: 14px; color: var(--ink-soft); }
.faq { margin: 40px 0; }
footer.site {
  border-top: 1px solid var(--line); margin-top: 30px; padding-top: 14px; padding-bottom: 30px;
  color: var(--ink-soft); font-size: 13.5px;
}
footer.site a { color: var(--ink-soft); }
.error { color: #b3261e; font-size: 14.5px; }

/* Optional-details disclosure: keeps the first search to two fields. */
.optional { margin: 4px 0 14px; }
.optional > summary {
  cursor: pointer; color: var(--brand); font-size: 14.5px; padding: 6px 0;
  list-style: none;
}
.optional > summary::-webkit-details-marker { display: none; }
.optional > summary::before { content: "+ "; font-weight: bold; }
.optional[open] > summary::before { content: "- "; }
