/* Offer Bros — theofferbros.com
   Palette read directly off the logo: gold on black, off-white text.
   No external requests: system fonts only, no CDN, no webfont, no JS. */

:root {
  --ink:        #08090a;
  --ink-raised: #101215;
  --ink-card:   #14171b;
  --line:       #23262b;
  --line-soft:  #1a1d21;
  --gold:       #d29d3f;
  --gold-bright:#eab041;
  --text:       #ececec;
  --text-dim:   #9aa0a6;
  --text-faint: #6f757b;

  --wrap: 68rem;
  --sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold-bright); }
a:hover { color: #f5c46a; }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

.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;
}

.skip { position: absolute; left: -9999px; }
.skip:focus {
  left: 1rem; top: 1rem; z-index: 10;
  background: var(--gold); color: #000;
  padding: 0.5rem 0.9rem; border-radius: 4px; text-decoration: none;
}

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

/* ---------- header ---------- */

.site-head {
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 0;
  position: sticky;
  top: 0;
  background: rgba(8, 9, 10, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  z-index: 20;
}
.head-inner {
  display: flex;
  align-items: center;
  gap: 1rem 1.75rem;
  flex-wrap: wrap;
}
.logo { width: clamp(9.5rem, 22vw, 13rem); height: auto; }

.head-nav {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
  font-size: 0.9375rem;
}
.head-nav a { color: var(--text-dim); text-decoration: none; }
.head-nav a:hover { color: var(--text); }

.head-phone {
  font-family: var(--mono);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gold-bright);
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 46rem) {
  .head-nav { display: none; }
  .head-phone { margin-left: auto; }
}

/* ---------- hero ---------- */

.hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2.5rem, 6vw, 4rem); }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
@media (min-width: 60rem) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}

h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2rem, 1.25rem + 3.2vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.cursor { color: var(--gold); font-weight: 400; animation: blink 1.15s steps(1, end) infinite; }
@keyframes blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .cursor { animation: none; } }

.lede {
  margin: 0 0 1.5rem;
  max-width: 44rem;
  font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  color: var(--text-dim);
}
.lede.narrow { margin-bottom: 1.75rem; }

.hero-points {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.hero-points li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.9375rem;
  color: var(--text);
}
.hero-points li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.hero-alt {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-dim);
}
.hero-alt a { font-family: var(--mono); white-space: nowrap; }

/* ---------- form card ---------- */

.form-card {
  background: var(--ink-card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.form-title {
  margin: 0 0 0.3rem;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.form-sub {
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  color: var(--text-dim);
}

.form-card label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.req { color: var(--gold); }

.form-card input,
.form-card textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font: inherit;
  font-size: 0.9375rem;
  padding: 0.65rem 0.75rem;
  margin-bottom: 1rem;
}
.form-card textarea { resize: vertical; }
.form-card input::placeholder,
.form-card textarea::placeholder { color: #5c6167; }
.form-card input:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(210, 157, 63, 0.16);
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 0.75rem;
}
@media (max-width: 26rem) {
  .row-2 { grid-template-columns: 1fr; }
}

/* honeypot — visually and programmatically out of the way, never display:none
   so that headless spam fillers still trip it */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn-primary {
  display: block;
  width: 100%;
  background: var(--gold);
  color: #0a0a0a;
  border: 1px solid var(--gold);
  border-radius: 6px;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.25rem;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.btn-primary:hover { background: var(--gold-bright); }
.btn-primary.as-link {
  width: auto;
  text-decoration: none;
  text-align: center;
}

.form-fine {
  margin: 0.9rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-faint);
}

/* ---------- bands ---------- */

.band { padding: clamp(3rem, 7vw, 4.75rem) 0; }
.band.alt {
  background: var(--ink-raised);
  border-block: 1px solid var(--line);
}

h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.375rem, 1.2rem + 0.85vw, 1.875rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 650;
}
.chev { color: var(--gold); font-family: var(--mono); margin-right: 0.35rem; }

.section-note {
  margin: 0 0 2rem;
  max-width: 46rem;
  color: var(--text-dim);
}

h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 650;
}

/* ---------- card grid ---------- */

.grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
}

.card {
  background: var(--ink-raised);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.4rem 1.35rem;
}
.band.alt .card { background: var(--ink); }
.card h3 { color: var(--gold); }
.card p { margin: 0; font-size: 0.9375rem; color: var(--text-dim); }

/* ---------- steps ---------- */

.steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem 2.25rem;
}
.steps-4 { grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); }
.steps > li { margin: 0; }
.step-n {
  display: block;
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.55rem;
}
.steps p { margin: 0; font-size: 0.9375rem; color: var(--text-dim); }

.closer {
  margin: 2.5rem 0 0;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  max-width: 46rem;
  color: var(--text-dim);
}
.closer strong { color: var(--text); font-weight: 600; }

/* ---------- comparison table ---------- */

.table-scroll { overflow-x: auto; }

.compare {
  width: 100%;
  min-width: 30rem;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.compare th, .compare td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
}
.compare thead th {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid var(--line);
}
.compare tbody th {
  font-weight: 500;
  color: var(--text-dim);
  width: 40%;
}
.compare td { color: var(--text-dim); }

/* the Offer Bros column gets the gold treatment */
.compare .ours { color: var(--text); font-weight: 650; }
.compare thead .ours { color: var(--gold); font-weight: 700; }
.compare tbody td.ours {
  background: rgba(210, 157, 63, 0.07);
  border-left: 1px solid rgba(210, 157, 63, 0.28);
  border-right: 1px solid rgba(210, 157, 63, 0.28);
}
.compare thead th.ours {
  background: rgba(210, 157, 63, 0.12);
  border: 1px solid rgba(210, 157, 63, 0.28);
  border-bottom: none;
}
.compare tbody tr:last-child td.ours { border-bottom: 1px solid rgba(210, 157, 63, 0.28); }

.table-note {
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
  color: var(--text-faint);
  max-width: 40rem;
}

/* ---------- counties ---------- */

.counties {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.counties li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
  color: var(--text-dim);
}

/* ---------- final CTA ---------- */

.final-cta { text-align: center; }
.cta-head { margin-bottom: 0.75rem; }
.final-cta .lede { margin-inline: auto; }
.cta-row {
  margin: 0;
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-row .btn-primary.as-link { padding-inline: 2rem; }

.cta {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.9375rem;
  color: var(--gold-bright);
  text-decoration: none;
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 0.85rem 1.4rem;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.cta:hover, .cta:focus-visible { background: var(--gold); color: #000; }

/* ---------- footer ---------- */

.site-foot {
  border-top: 1px solid var(--line);
  padding: 2.75rem 0 3.5rem;
}
.site-foot p { margin: 0 0 0.5rem; }
.foot-brand { font-weight: 650; letter-spacing: 0.02em; }
.site-foot a { font-family: var(--mono); font-size: 0.9375rem; }

.disclosure {
  margin-top: 1.5rem;
  max-width: 46rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-faint);
}

/* ---------- thank-you page ---------- */

.thanks {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(3rem, 10vw, 7rem) 0;
}
.thanks .wrap { max-width: 34rem; }

/* ---------- stats band ---------- */

.stats-band {
  background: var(--ink-raised);
  border-block: 1px solid var(--line);
  padding: clamp(1.75rem, 4vw, 2.5rem) 0;
}
.stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 1.5rem 1rem;
  text-align: center;
}
.stats li { display: grid; gap: 0.2rem; }
.stat-n {
  font-size: clamp(1.75rem, 1.4rem + 1.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.stat-l {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---------- condition chips ---------- */

.chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.chips li {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.55rem 0.95rem;
  font-size: 0.875rem;
  color: var(--text-dim);
}
.chips li::before {
  content: "\203A";
  color: var(--gold);
  margin-right: 0.45rem;
  font-weight: 700;
}

/* ---------- FAQ ---------- */

.faq { max-width: 48rem; }

.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details:first-child { border-top: 1px solid var(--line); }

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 2.5rem 1.05rem 0;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq summary:hover { color: var(--gold-bright); }

.faq details p {
  margin: 0 0 1.15rem;
  padding-right: 2.5rem;
  font-size: 0.9375rem;
  color: var(--text-dim);
}

/* ---------- agent CTA ---------- */

.agent-cta {
  margin-top: 2rem;
  background: var(--ink);
  border: 1px solid rgba(210, 157, 63, 0.32);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: clamp(1.4rem, 3vw, 1.9rem);
}
.agent-cta-head {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  color: var(--gold);
}
.agent-cta p { margin: 0 0 1.25rem; max-width: 44rem; color: var(--text-dim); }
.agent-cta .cta-row { margin: 0; justify-content: flex-start; }
