/* ============================================
   Elie Salame — Recovery Audit landing page
   Ink-navy background, warm bone text, a single
   muted-brass accent. Set like a private financial
   exhibit, not a SaaS funnel: quiet, left-aligned,
   no cards, no shadows, no gradients.
   ============================================ */

:root {
  --ink: #12161c;
  --bone: #eae4d6;
  --brass: #ad8a4e;
  --brass-bright: #c8a566;
  --line: #2a2f37;
  --muted: #8b8478;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

h1, h2 {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--bone);
  margin: 0;
}

a { color: var(--brass-bright); }

.site-header {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 0;
  font-family: "Newsreader", serif;
  font-size: 1.05rem;
}

main {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--line);
}

section:last-of-type { border-bottom: none; }

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  max-width: 16ch;
}

.hero .sub {
  margin-top: 1.5rem;
  max-width: 56ch;
  font-size: 1.05rem;
}

.cta-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 1.75rem;
  background: var(--brass);
  color: var(--ink);
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}

.cta-button:hover { background: var(--brass-bright); }

.cta-button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 2px solid var(--brass-bright);
  outline-offset: 2px;
}

.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.proof-item {
  flex: 1 1 150px;
  padding: 0 1.5rem 1rem 0;
  border-left: 1px solid var(--line);
  padding-left: 1.5rem;
}

.proof-item:first-child { border-left: none; padding-left: 0; }

.proof-number {
  display: block;
  font-family: "Newsreader", serif;
  font-variant-numeric: tabular-nums;
  font-size: 2rem;
  color: var(--brass-bright);
}

.proof-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 22ch;
}

.mechanism h2, .form-section h2, .success-banner h2 { font-size: 1.6rem; }

.mechanism p {
  margin-top: 1.25rem;
  max-width: 62ch;
}

.video-placeholder {
  margin-top: 1.5rem;
  padding: 3rem 1.5rem;
  border: 1px dashed var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

form {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  max-width: 480px;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

input, select, textarea {
  width: 100%;
  padding: 0.6rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--bone);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
}

textarea { resize: vertical; }

input:focus, select:focus, textarea:focus {
  border-bottom-color: var(--brass-bright);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.success-banner p { margin-top: 1rem; max-width: 56ch; }

.error-banner {
  color: var(--brass-bright);
  margin-bottom: 1rem;
}

.site-footer {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .hero h1 { font-size: 2rem; max-width: 100%; }
  .proof { flex-direction: column; }
  .proof-item { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 1rem; }
  .proof-item:first-child { border-top: none; padding-top: 0; }
}
