/* Skeleton styling. Mobile-first, single-screen (BUILD.md §10). Visual polish
   lands with the teaser/UI build steps; this just keeps the funnel legible. */
:root {
  --ink: #0f172a;
  --muted: #64748b;
  --brand: #1d4ed8;
  --ok: #16a34a;
  --warn: #b91c1c;
  --line: #e2e8f0;
  --bg: #f8fafc;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font: 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
}
.site-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; border-bottom: 1px solid var(--line); background: #fff;
}
.brand { font-weight: 700; text-decoration: none; color: var(--ink); }
.header-cancel { font-size: 14px; color: var(--brand); text-decoration: none; }

.page { max-width: 480px; margin: 0 auto; padding: 24px 16px; }

.hero { text-align: center; }
.headline { font-size: 26px; line-height: 1.2; margin: 8px 0; }
.subhead { color: var(--muted); margin: 0 0 20px; }

.lookup { display: flex; flex-direction: column; gap: 10px; }
.number-input {
  padding: 14px; font-size: 18px; border: 1px solid var(--line);
  border-radius: 10px; text-align: center;
}
.cta {
  padding: 14px; font-size: 17px; font-weight: 600; color: #fff;
  background: var(--brand); border: 0; border-radius: 10px; cursor: pointer;
  text-decoration: none; display: inline-block; text-align: center;
}
.cta:disabled { opacity: .6; cursor: default; }

.teaser { margin-top: 20px; padding: 16px; border: 1px solid var(--line);
  border-radius: 10px; background: #fff; text-align: left; }
.teaser .risk-warn { color: var(--warn); font-weight: 600; }
.teaser .risk-clean { color: var(--ok); font-weight: 600; }
.teaser .pay-line { color: var(--muted); font-size: 14px; margin: 8px 0; }

.report-fields dt { font-weight: 600; margin-top: 10px; }
.report-fields dd { margin: 0; }

.cancel-btn {
  padding: 12px 18px; font-size: 16px; font-weight: 600; color: #fff;
  background: var(--warn); border: 0; border-radius: 10px; cursor: pointer;
}
.cancel-note { color: var(--muted); font-size: 14px; }

.site-footer { max-width: 480px; margin: 24px auto; padding: 16px;
  border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.fcra { font-size: 13px; }
.fcra.strong { color: var(--ink); font-weight: 600; }
.legal-links { display: flex; flex-wrap: wrap; gap: 12px; margin: 8px 0; }
.legal-links a { color: var(--brand); text-decoration: none; }
.placeholder { color: var(--warn); font-style: italic; }
