/* claimscout audit homepage + offer wall.
 * Cashback / rewarded UX paired with brutalist-money typography.
 * Money is green. Urgency is red. Highlights are yellow Sharpie.
 * No em dashes, no double dashes, anywhere visible.
 */

:root {
  --bg:        #ffffff;
  --bg-soft:   #f6f7f9;
  --bg-card:   #ffffff;
  --bg-strip:  #0c1f17;            /* dark green for the money strip */
  --fg:        #0f172a;
  --fg-dim:    #475569;
  --fg-muted:  #94a3b8;
  --border:    #e5e7eb;
  --border-h:  #cbd5e1;

  --money:     #047857;            /* primary green */
  --money-d:   #065f46;
  --money-bg:  #ecfdf5;

  --target:    #1d4ed8;            /* underline target color */
  --warn:      #b45309;
  --urgent:    #b91c1c;
  --urgent-bg: #fef2f2;

  --hl-bg:     #fff3a3;            /* yellow Sharpie */
  --shadow:    0 1px 0 rgba(15,23,42,0.05);
  --shadow-lg: 0 14px 40px -8px rgba(15,23,42,0.18);

  --display:   "Helvetica Neue", "Inter", Arial, sans-serif;
  --mono:      ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--money-d); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 {
  color: var(--fg);
  font-family: var(--display);
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin: 0 0 12px;
}
h1 { font-size: clamp(34px, 5.5vw, 64px); font-weight: 800; }
h2 { font-size: clamp(22px, 2.6vw, 32px); font-weight: 800; margin: 28px 0 12px; }
h3 { font-size: 18px; font-weight: 700; margin: 14px 0 6px; }
p  { margin: 0 0 12px; }
.muted   { color: var(--fg-muted); }
.small   { font-size: 13px; }
.lede    { font-size: clamp(16px, 1.6vw, 20px); color: var(--fg-dim); max-width: 60ch; }

/* ------------- inline emphasis ------------- */

.hl,
.hl-money,
.hl-warn,
.hl-target {
  display: inline-block;
  padding: 0 4px;
  font-weight: inherit;
}
.hl        { background: var(--hl-bg); transform: rotate(-0.5deg); border-radius: 1px; }
.hl-money  { color: var(--money-d); font-variant-numeric: tabular-nums; font-weight: 800; }
.hl-warn   { color: var(--urgent); font-weight: 700; }
.hl-target { color: var(--target); border-bottom: 2px solid var(--target); padding-bottom: 0; }

/* ------------- top "money found" strip ------------- */

.found-strip {
  background: var(--bg-strip);
  color: #d6fff0;
  font-size: 13px;
  text-align: center;
  padding: 8px 14px;
  font-family: var(--mono);
  letter-spacing: 0.02em;
}
.found-label { color: #9af0c2; margin-right: 8px; }
.found-num   { color: #ffffff; font-weight: 800; font-size: 15px; }
.found-tail  { color: #9af0c2; margin-left: 8px; }
.found-tail a { color: #ffffff; text-decoration: underline; }

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

.audit-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.audit-brand {
  font-family: var(--display);
  font-size: 22px; font-weight: 800; letter-spacing: -0.03em;
  color: var(--fg);
}
.audit-brand-accent { color: var(--money); }
.audit-nav { display: flex; gap: 22px; font-size: 14px; }
.audit-nav a { color: var(--fg-dim); }

/* ------------- hero (find / homepage) ------------- */

.hero-find {
  padding: 56px 28px 40px;
  background: linear-gradient(180deg, #ffffff, var(--money-bg));
  border-bottom: 1px solid var(--border);
}
.hero-find-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.hero-find-copy .kicker {
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--money-d);
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 18px;
}
.hero-find-copy h1 {
  margin-bottom: 18px;
}
.hero-find-copy .lede {
  font-size: 19px;
  margin-bottom: 28px;
}
.hero-find-side {
  display: grid;
  gap: 16px;
}
.proof-stat {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.proof-stat .proof-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.03em;
  color: var(--money-d);
  line-height: 1;
}
.proof-stat.urgent .proof-num { color: var(--urgent); }
.proof-stat .proof-label { color: var(--fg-dim); margin-top: 6px; font-size: 14px; }

/* ------------- big CTAs ------------- */

.cta-big {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--money);
  color: #ffffff;
  padding: 18px 28px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 24px -8px rgba(4,120,87,0.55);
  transition: transform 80ms ease, box-shadow 80ms ease;
}
.cta-big:hover {
  background: var(--money-d);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -8px rgba(4,120,87,0.6);
}
.cta-big-arrow { font-size: 22px; }
.cta-trust {
  margin-top: 14px;
  font-size: 14px;
  color: var(--fg-dim);
}
.cta-line {
  font-weight: 700;
  font-size: 15px;
  border-bottom: 2px solid var(--money);
  padding-bottom: 2px;
}
.cta-line:hover { background: var(--money-bg); text-decoration: none; }

/* ------------- how-it-works strip ------------- */

.how-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 48px auto;
  padding: 0 28px;
}
.how-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.how-num {
  width: 44px; height: 44px;
  flex: 0 0 44px;
  background: var(--money);
  color: #ffffff;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  display: grid; place-items: center;
}
.how-step strong { display: block; margin-bottom: 4px; font-size: 17px; }
.how-step p { color: var(--fg-dim); margin: 0; font-size: 15px; }

/* ------------- teaser brand grid (homepage) ------------- */

.teaser-section {
  max-width: 1200px;
  margin: 56px auto;
  padding: 0 28px;
}
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin: 18px 0 24px;
}
.teaser-tile {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--fg);
  transition: border-color 80ms, transform 80ms;
}
.teaser-tile:hover {
  border-color: var(--money);
  transform: translateY(-1px);
  text-decoration: none;
}
.teaser-label { font-weight: 700; font-size: 15px; }
.teaser-count { font-size: 12px; color: var(--money-d); font-family: var(--mono); }
.teaser-cta { margin-top: 14px; }

/* ------------- trust section ------------- */

.trust-section {
  background: var(--bg-soft);
  padding: 56px 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.trust-cols h3 { margin-top: 0; }

/* ------------- bottom CTA rail ------------- */

.cta-rail {
  text-align: center;
  padding: 56px 28px;
}
.cta-rail-inner h2 { margin-top: 0; }
.cta-rail-inner p  { color: var(--fg-dim); }
.cta-rail-inner .cta-big { margin: 12px 0 16px; }

/* ------------- audit grid (select page) ------------- */

.audit-hero {
  max-width: 1100px;
  margin: 56px auto 24px;
  padding: 0 28px;
}
.audit-hero-metrics {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.audit-hero-metrics .metric {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
}
.audit-hero-metrics .metric-primary {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfeff 100%);
  border-color: #bbf7d0;
}
.audit-hero-metrics .metric-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.audit-hero-metrics .metric-value {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.metric-primary .metric-value { color: var(--money-d); }
@media (max-width: 720px) {
  .audit-hero-metrics {
    grid-template-columns: 1fr 1fr;
  }
  .audit-hero-metrics .metric-primary {
    grid-column: span 2;
  }
}

/* ------------- logo-forward brand card grid ------------- */

.brand-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.brand-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
  transition: border-color 100ms, background 100ms,
              transform 100ms, box-shadow 100ms;
}
.brand-card:hover {
  border-color: var(--money);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.08);
}
.brand-card input { position: absolute; opacity: 0; pointer-events: none; }
.brand-card-logo-wrap {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: #f8fafc;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
}
.brand-card-logo {
  width: 36px; height: 36px;
  object-fit: contain;
  display: block;
}
.brand-card-monogram {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  color: var(--fg-muted);
}
.brand-card-meta {
  flex: 1 1 auto;
  min-width: 0;
}
.brand-card-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--fg);
  line-height: 1.25;
  padding-right: 22px;            /* room for the corner checkmark */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.brand-card-sub {
  margin-top: 3px;
  font-family: var(--mono);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.brand-card-active {
  color: var(--money-d);
  font-weight: 600;
}
.brand-card-payout {
  color: var(--fg);
  background: #f1f5f9;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 10px;
}
.brand-card-watch .brand-card-sub { color: var(--fg-muted); }
.brand-card.checked,
.brand-card:has(input:checked) {
  border-color: var(--money);
  background: var(--money-bg);
  transform: translateY(-1px);
}
.brand-card.checked::after,
.brand-card:has(input:checked)::after {
  content: "\2713";
  position: absolute;
  top: 10px; right: 10px;
  width: 20px; height: 20px;
  background: var(--money);
  color: #ffffff;
  display: grid; place-items: center;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}
.audit-form {
  max-width: 1100px;
  margin: 0 auto 56px;
  padding: 0 28px;
}
.audit-progress {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--fg-dim);
}
.audit-progress-bottom { position: static; margin-top: 24px; }
.audit-go {
  appearance: none;
  border: none;
  background: var(--money);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  margin-left: auto;
}
.audit-go:disabled {
  background: var(--border-h);
  cursor: not-allowed;
  box-shadow: none;
}
.audit-go:not(:disabled):hover { background: var(--money-d); }

.brand-group {
  border: none;
  padding: 0;
  margin: 0 0 28px;
}
.brand-group legend {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.brand-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
  transition: border-color 80ms, background 80ms, transform 80ms;
}
.brand-tile input { position: absolute; opacity: 0; pointer-events: none; }
.brand-tile-label { font-weight: 700; font-size: 15px; padding-right: 22px; }
.brand-tile-count { font-family: var(--mono); font-size: 12px; color: var(--money-d); }
.brand-tile-watch .brand-tile-count { color: var(--fg-muted); }
.brand-tile:hover { border-color: var(--money); }
.brand-tile.checked,
.brand-tile:has(input:checked) {
  border-color: var(--money);
  background: var(--money-bg);
  transform: translateY(-1px);
}
.brand-tile.checked::after,
.brand-tile:has(input:checked)::after {
  content: "\2713";
  position: absolute;
  top: 12px; right: 12px;
  width: 20px; height: 20px;
  background: var(--money);
  color: #ffffff;
  display: grid; place-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

/* ------------- results page (matches + per-case consent) ------------- */

.results-hero {
  max-width: 1100px;
  margin: 56px auto 24px;
  padding: 0 28px;
}
.results-form {
  max-width: 1100px;
  margin: 0 auto 56px;
  padding: 0 28px;
}
.match-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 36px;
}
.match-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 22px 18px;
  box-shadow: var(--shadow);
  transition: border-color 80ms, box-shadow 80ms;
}
.match-card:has(input:checked) {
  border-color: var(--money);
  box-shadow: 0 0 0 2px var(--money-bg);
}
.match-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  margin-bottom: 14px;
}
.match-name h2 { margin: 0 0 4px; font-size: 20px; }
.match-value { text-align: right; }
.match-value-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 30px;
  color: var(--money-d);
  letter-spacing: -0.02em;
  line-height: 1;
}
.match-value-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.match-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--fg-dim);
  cursor: pointer;
  padding: 12px 14px;
  background: #fafbfc;
  border-radius: 8px;
  border: 1px dashed var(--border);
}
.match-consent input { margin-top: 4px; flex: 0 0 auto; }
.match-consent-text strong { color: var(--fg); display: block; margin-bottom: 4px; }
.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-no-proof { background: var(--money-bg); color: var(--money-d); }
.badge-urgent { background: var(--urgent-bg); color: var(--urgent); }

.contact-block {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 14px 0 18px;
}
.contact-grid input,
.contact-grid select {
  appearance: none;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  background: #ffffff;
}
.contact-grid input:focus,
.contact-grid select:focus {
  outline: none;
  border-color: var(--money);
  box-shadow: 0 0 0 3px var(--money-bg);
}
.submit-final {
  width: 100%;
  appearance: none;
  border: none;
  background: var(--money);
  color: #ffffff;
  padding: 18px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 24px -10px rgba(4,120,87,0.6);
}
.submit-final:disabled {
  background: var(--border-h);
  cursor: not-allowed;
  box-shadow: none;
}
.submit-final:not(:disabled):hover { background: var(--money-d); }
.consent-summary { text-align: center; margin-top: 10px; }

.not-ticked-soft {
  max-width: 1100px;
  margin: 32px auto 56px;
  padding: 0 28px;
}
.suggest-form {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.suggest-form input {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  flex: 1 1 200px;
}
.suggest-form button {
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--money);
  background: #ffffff;
  color: var(--money-d);
  font-weight: 700;
  cursor: pointer;
}
.suggest-form button:hover { background: var(--money-bg); }

/* ------------- no_match page ------------- */

.no-match-options {
  max-width: 1100px;
  margin: 32px auto 56px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.nm-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  color: var(--fg);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 80ms, transform 80ms;
}
.nm-card:hover { border-color: var(--money); transform: translateY(-1px); text-decoration: none; }
.nm-card h2 { font-size: 19px; margin: 0; }
.nm-card-cta { color: var(--money-d); font-weight: 700; margin-top: auto; }
.nm-card-form input {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 100%;
  margin-top: 6px;
  font-size: 14px;
}
.nm-card-form button {
  margin-top: 8px;
  padding: 10px 14px;
  background: var(--money);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

/* ------------- offer wall ------------- */

.owed-hero {
  max-width: 1200px;
  margin: 48px auto 24px;
  padding: 0 28px;
}
.owed-filters {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.owed-filter {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--fg-dim);
  font-size: 14px;
  font-weight: 600;
}
.owed-filter:hover { border-color: var(--money); color: var(--money-d); text-decoration: none; }
.owed-filter-active {
  background: var(--money);
  color: #ffffff;
  border-color: var(--money);
}
.owed-filter-active:hover { color: #ffffff; }
.owed-grid {
  max-width: 1200px;
  margin: 24px auto 56px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.owed-tile {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  color: var(--fg);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 80ms, transform 80ms, box-shadow 80ms;
}
.owed-tile:hover {
  border-color: var(--money);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}
.owed-tile-urgent { border-color: var(--urgent); }
.owed-tile-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px;
}
.owed-tile-value {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  color: var(--money-d);
  letter-spacing: -0.02em;
  line-height: 1;
}
.owed-tile-meta { display: flex; gap: 4px; flex-wrap: wrap; justify-content: flex-end; }
.owed-tile-name { margin: 0; font-size: 16px; line-height: 1.3; }
.owed-tile-admin { margin: 0; }
.owed-empty { grid-column: 1 / -1; text-align: center; padding: 56px 0; }

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

.audit-footer {
  background: #0a1f17;
  color: #d6fff0;
  padding: 56px 28px 28px;
  margin-top: 0;
}
.audit-footer-cols {
  max-width: 1200px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}
.audit-footer-cols strong { color: #ffffff; display: block; margin-bottom: 8px; }
.audit-footer-cols a { color: #9af0c2; display: block; margin: 4px 0; font-size: 14px; }
.audit-footer-cols .muted { color: #6dceae; }
.audit-fineprint {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #1a3528;
  font-size: 12px;
  color: #6dceae;
}

/* ------------- legal/policy pages ------------- */

.policy-page {
  max-width: 820px;
  margin: 56px auto;
  padding: 0 28px;
}
.policy-page h1 { font-size: clamp(28px, 4vw, 44px); }
.policy-page h2 { font-size: 22px; margin-top: 32px; }
.policy-page p,
.policy-page li { color: var(--fg-dim); }
.policy-page .updated {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.policy-page a { color: var(--money-d); text-decoration: underline; }

/* ------------- responsive ------------- */

@media (max-width: 880px) {
  .hero-find-grid { grid-template-columns: 1fr; gap: 32px; }
  .how-strip { grid-template-columns: 1fr; }
  .trust-cols { grid-template-columns: 1fr; }
  .no-match-options { grid-template-columns: 1fr; }
  .audit-footer-cols { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .audit-top { padding: 14px 18px; }
  .audit-nav { display: none; }
  .match-header { grid-template-columns: 1fr; }
  .match-value { text-align: left; }
}


/* ============= payout method strip (footer trust signal) ============= */
.payout-strip {
  max-width: 1100px;
  margin: 36px auto 0;
  padding: 24px 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}
.payout-strip-inner { max-width: 980px; margin: 0 auto; }
.payout-strip-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.payout-strip-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
.payout-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 6px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-dim);
  text-align: center;
}
.payout-method img { display: block; }
.payout-icon { font-size: 20px; line-height: 1; }
.payout-strip-foot { text-align: center; margin-top: 14px; }
@media (max-width: 920px) {
  .payout-strip-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
  .payout-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ============= live recently-matched feed (above hero) ============= */
.live-feed {
  max-width: 1100px;
  margin: 24px auto 0;
  padding: 0 28px;
}
.live-feed-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  overflow: hidden;
}
.live-feed-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex: 0 0 auto;
  animation: livePulse 2.2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 0.4; transform: scale(0.85); }
  50%      { opacity: 1;   transform: scale(1.15); }
}
.live-feed-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--money-d);
  flex: 0 0 auto;
}
.live-feed-track {
  position: relative;
  flex: 1 1 auto;
  height: 18px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.live-feed-strip {
  position: absolute;
  white-space: nowrap;
  display: flex;
  gap: 36px;
  animation: liveScroll 38s linear infinite;
  font-size: 12px;
  color: var(--fg-dim);
}
.live-feed-strip strong { color: var(--money-d); font-weight: 700; }
@keyframes liveScroll {
  from { transform: translateX(0%); }
  to   { transform: translateX(-50%); }
}


/* ============= web SSO row (above the audit hero) ============= */
.cs-sso-row {
  max-width: 1100px;
  margin: 16px auto 0;
  padding: 0 28px;
}
.cs-sso-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 20px;
}
.cs-sso-lede {
  font-size: 13px;
  color: var(--fg-dim);
  font-weight: 500;
  flex: 1 1 100%;
  text-align: center;
  margin-bottom: 4px;
}
.cs-sso-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.cs-sso-btn-google {
  /* GIS injects its own iframe here; we just shape the slot. */
  min-height: 44px;
}
.cs-sso-btn-fb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1877f2;
  color: #ffffff;
  border: none;
  padding: 0 18px;
  height: 44px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 80ms ease;
}
.cs-sso-btn-fb:hover { background: #166fe5; }
.cs-sso-fb-mark {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #ffffff;
  color: #1877f2;
  font-weight: 900;
  font-family: var(--display);
  font-size: 15px;
  line-height: 1;
}
.cs-sso-status { font-size: 12px; color: var(--fg-muted); }
.cs-sso-signed { color: var(--money-d); font-weight: 600; }
.cs-sso-signed a { color: var(--fg-muted); font-size: 12px; margin-left: 8px; }
