/* ScrubMyCase — design system. Calm, trustworthy, legal-but-human. */
:root {
  --ink: #0f1f2e;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-alt: #f6f9f9;
  --brand: #0f766e;        /* teal — trust, calm */
  --brand-dark: #0b5a54;
  --brand-tint: #e7f3f1;
  --accent: #f97316;       /* warm CTA accent */
  --danger: #dc2626;
  --warn: #ea580c;
  --ok: #16a34a;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(15,31,46,.08);
  --shadow: 0 10px 30px rgba(15,31,46,.10);
  --shadow-lg: 0 24px 60px rgba(15,31,46,.16);
  --maxw: 1120px;
  /* Body: Public Sans (clean, civic-trust). Display: Fraunces (premium serif, authority + warmth). */
  --font: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { line-height: 1.18; color: var(--ink); margin: 0 0 .5em; letter-spacing: -.02em; }
/* Big display headlines get the premium serif; small UI headings stay in the clean sans. */
h1, h2 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.015em; font-optical-sizing: auto; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.18rem; font-weight: 700; }
p { margin: 0 0 1rem; }
a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.center { text-align: center; }
.mt { margin-top: 1.6rem; }
.section { padding: clamp(48px, 7vw, 92px) 0; }
.section.alt { background: var(--bg-alt); }
.big-muted { color: var(--ink-soft); font-size: 1.12rem; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .12em;
  font-size: .76rem; font-weight: 700; color: var(--brand);
  background: var(--brand-tint); padding: 5px 12px; border-radius: 999px; margin-bottom: 1rem;
}
.hl { color: var(--brand); }
.opt { color: var(--muted); font-weight: 400; font-size: .85em; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 12px; top: 12px; background: #fff; padding: 10px 16px; border-radius: 8px; z-index: 100; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 700; font-size: 1rem; border-radius: 999px; padding: 13px 26px;
  border: 2px solid transparent; cursor: pointer; transition: transform .08s, box-shadow .2s, background .2s;
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(15,118,110,.28); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-ghost { background: #fff; color: var(--brand-dark); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); background: var(--brand-tint); }
.btn-lg { padding: 16px 32px; font-size: 1.06rem; }
.btn-sm { padding: 9px 18px; font-size: .9rem; }
.btn-block { width: 100%; }
.btn.loading { opacity: .8; cursor: progress; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; gap: 22px; height: 66px; }
.brand { display: flex; align-items: center; }
.main-nav { display: flex; gap: 22px; margin-left: auto; }
.main-nav a { color: var(--ink-soft); font-weight: 600; font-size: .96rem; }
.main-nav a.active, .main-nav a:hover { color: var(--brand-dark); text-decoration: none; }
.nav-cta { white-space: nowrap; }

/* Hero */
.hero { background: linear-gradient(180deg, var(--brand-tint) 0%, #fff 78%); padding: clamp(40px,6vw,80px) 0 clamp(30px,5vw,60px); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero h1 { margin-bottom: .4em; }
.lede { font-size: 1.22rem; color: var(--ink-soft); max-width: 36ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 1.6rem 0 1.2rem; }
.hero-trust { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 20px; color: var(--ink-soft); font-size: .92rem; font-weight: 600; }
.hero-art { display: flex; justify-content: center; }
.hero-art img { width: 100%; max-width: 460px; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.doc-hero-icon { background: var(--brand-tint); padding: 30px; border-radius: var(--radius-lg); }

/* Trust bar */
.trustbar { background: var(--ink); color: #fff; }
.trustbar-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; padding: 26px 0; text-align: center; }
.trustbar-inner div { display: flex; flex-direction: column; }
.trustbar-inner strong { font-size: 1.7rem; color: #fff; letter-spacing: -.02em; }
.trustbar-inner span { color: #b6c4cf; font-size: .9rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 2.4rem; }
.steps.compact { margin-top: 1.4rem; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--brand-tint); color: var(--brand-dark);
  font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }

/* Checks grid */
.checks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(232px,1fr)); gap: 18px; margin-top: 2.2rem; }
.check-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: #fff; }
.check-dot { display: inline-block; width: 14px; height: 14px; border-radius: 50%; margin-bottom: 10px; }
.check-card h3 { font-size: 1.04rem; }
.check-card p { color: var(--muted); font-size: .94rem; margin: 0; }

/* Doc grid */
.doc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px,1fr)); gap: 18px; margin-top: 2.2rem; }
.doc-grid.small { grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); }
.doc-card { display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: #fff; color: var(--ink);
  transition: border-color .2s, box-shadow .2s, transform .08s; }
.doc-card:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-2px); text-decoration: none; }
.doc-card.wedge { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-tint); }
.doc-icon { margin-bottom: 6px; }
.doc-card h3 { margin: 0; }
.doc-card p { color: var(--muted); font-size: .92rem; margin: 0; }
.doc-link { margin-top: auto; color: var(--brand-dark); font-weight: 700; font-size: .92rem; padding-top: 8px; }

/* Two-col / privacy */
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.privacy-section { background: linear-gradient(180deg,#fff, var(--brand-tint)); }
.privacy-art { display: flex; justify-content: center; }
.privacy-art img { width: 100%; max-width: 440px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); object-fit: cover; }
.ticks { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.ticks li { padding-left: 32px; position: relative; margin-bottom: .6rem; color: var(--ink-soft); }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand);
  font-weight: 800; background: var(--brand-tint); width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .8rem; }
.ticks.big li { font-size: 1.06rem; margin-bottom: .8rem; }
.ticks.tight li { font-size: .92rem; margin-bottom: .45rem; color: var(--muted); }

/* Compare table */
.compare { width: 100%; border-collapse: collapse; margin-top: 1.6rem; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.compare th, .compare td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: .98rem; }
.compare thead th { background: var(--bg-alt); font-size: .9rem; }
.compare th.us, .compare td.us { background: var(--brand-tint); color: var(--brand-dark); font-weight: 700; }
.compare tbody tr:last-child td { border-bottom: none; }

/* Pricing */
.price-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 2.4rem; }
.price-row.four { grid-template-columns: repeat(4,1fr); }
.price-card { position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; background: #fff; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-4px); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff; font-size: .72rem; font-weight: 700; padding: 5px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.price { margin: .3rem 0 .6rem; }
.price .amt { font-size: 2.5rem; font-weight: 800; letter-spacing: -.03em; }
.price .cad { color: var(--muted); font-size: .95rem; }
.price-blurb { color: var(--muted); font-size: .94rem; min-height: 2.4em; }
.price-card .btn { margin-top: auto; }
.free-band { display: grid; grid-template-columns: 1fr 1fr auto; gap: 28px; align-items: center;
  background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 30px 34px; margin-top: 2rem; }
.free-band h2 { color: #fff; }
.free-band p { color: #cdd8df; margin: 0; }
.free-band .ticks li { color: #e2ebef; }
.free-band .ticks li::before { background: rgba(255,255,255,.16); color: #fff; }

/* Start form */
.scrub-form { max-width: 640px; margin: 2rem auto 0; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); }
.dropzone { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
  border: 2px dashed var(--brand); border-radius: var(--radius); padding: 34px 20px; cursor: pointer;
  background: var(--brand-tint); transition: background .2s, border-color .2s; margin-bottom: 22px; }
.dropzone:hover, .dropzone.drag { background: #d8ece9; }
.dropzone.has-file { border-style: solid; background: #fff; }
.dropzone input[type=file] { position: absolute; width: 1px; height: 1px; opacity: 0; }
.dz-title { font-weight: 700; color: var(--ink); }
.dz-sub { color: var(--muted); font-size: .86rem; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; margin-bottom: 7px; font-size: .98rem; }
.field select, .field input, .field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 10px; font: inherit; color: var(--ink); background: #fff; }
.field select:focus, .field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-tint); }
.form-fine { color: var(--muted); font-size: .84rem; text-align: center; margin-top: 14px; }
.alert { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; padding: 13px 16px; border-radius: 10px; margin: 1rem 0; }

/* Report — preview */
.report-section { padding-top: 40px; }
.demo-note { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; padding: 10px 14px; border-radius: 10px; font-size: .9rem; text-align: center; margin-bottom: 1.2rem; }
.tally-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 12px; margin: 2rem 0; }
.tally { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; text-align: center; background: #fff; }
.tally.empty { opacity: .5; }
.tally-num { display: block; font-size: 2rem; font-weight: 800; letter-spacing: -.02em; }
.tally-label { font-size: .82rem; color: var(--muted); }
.reveal { border: 1px solid var(--line); border-left: 5px solid var(--danger); border-radius: var(--radius); padding: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.reveal-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.reveal-cat { color: var(--muted); font-size: .86rem; font-weight: 600; }
.reveal-tag { display: inline-block; margin-top: 10px; font-size: .82rem; color: var(--brand-dark); font-weight: 700; }
.sev { text-transform: uppercase; font-size: .68rem; font-weight: 800; letter-spacing: .06em; padding: 3px 9px; border-radius: 999px; }
.sev-high { background: #fee2e2; color: #991b1b; }
.sev-medium { background: #ffedd5; color: #9a3412; }
.sev-low { background: #fef9c3; color: #854d0e; }

/* Locked / paywall */
.locked { position: relative; margin-top: 18px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.locked-rows { padding: 22px; filter: blur(3px); user-select: none; }
.locked-row { display: flex; gap: 10px; margin-bottom: 18px; }
.lr-bar { height: 14px; background: #e6edf0; border-radius: 6px; flex: 1; }
.lr-bar.short { flex: .6; } .lr-bar.tiny { flex: .25; }
.locked-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 8px; padding: 26px; background: linear-gradient(180deg, rgba(255,255,255,.6), rgba(255,255,255,.98) 45%); }
.locked-overlay p { max-width: 46ch; color: var(--ink-soft); }
.unlock-form { margin: 4px 0; }
.disclaimer-mini { color: var(--muted); font-size: .82rem; margin-top: 1.6rem; }

/* Showcase — annotated mock document */
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; margin-top: 2.4rem; }
.mock-doc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow);
  font-family: Georgia, "Times New Roman", serif; position: sticky; top: 86px; }
.mock-head { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 2px solid var(--ink); padding-bottom: 10px; margin-bottom: 16px; }
.mock-title { font-weight: 700; letter-spacing: .04em; font-size: .92rem; }
.mock-page { color: var(--muted); font-size: .78rem; }
.mock-line { margin: 0 0 12px; color: #1f2d3a; font-size: .98rem; line-height: 1.5; position: relative; padding-left: 4px; }
.mock-line.muted { color: #94a3b8; font-style: italic; }
.mock-line.flag { background: #fff6f6; border-left: 3px solid var(--danger); padding: 8px 10px 8px 34px; border-radius: 4px; }
.mock-line.flag-2 { background: #fff8f1; border-left-color: var(--warn); }
.mock-line .mk { position: absolute; left: 8px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; border-radius: 50%;
  background: var(--danger); color: #fff; font-family: var(--font); font-size: .72rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.mock-line.flag-2 .mk { background: var(--warn); }
.catch-list { display: flex; flex-direction: column; gap: 16px; }
.catch-item { display: flex; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-sm); }
.catch-no { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.catch-item h3 { margin: 8px 0 4px; font-size: 1.06rem; }
.catch-item p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.catch-cat { font-size: .82rem; color: var(--muted); font-weight: 600; }
.showcase-cta { margin-top: 6px; align-self: flex-start; }

/* Scroll reveal (renamed from .reveal to avoid clash with the preview finding card) */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .fade-up { opacity: 1; transform: none; transition: none; } }

/* (Hero scan animation removed — real photography now carries the hero.) */

/* Red-flag meter */
.strength { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 18px; }
.strength-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.strength-bar { height: 10px; background: #eef2f4; border-radius: 999px; overflow: hidden; }
.strength-bar span { display: block; height: 100%; border-radius: 999px; transition: width .5s; }
.strength-high .strength-bar span { background: var(--danger); }
.strength-medium .strength-bar span { background: var(--warn); }
.strength-low .strength-bar span { background: #ca8a04; }
.strength-clean .strength-bar span { background: var(--ok); }
.strength-note { margin: 8px 0 0; font-size: .82rem; color: var(--muted); }

/* Draft / talking points */
.draft-card { background: var(--bg-alt); border-radius: var(--radius); padding: 20px 22px; white-space: pre-wrap; line-height: 1.7; color: var(--ink); margin-top: .6rem; }

/* Share report with attorney */
.share-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin-top: 2rem; box-shadow: var(--shadow-sm); }
.share-form { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.share-form input { flex: 1; min-width: 210px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font: inherit; }
.share-form input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-tint); }
.alert-ok { background: #f0faf8; border: 1px solid #bfe0db; color: var(--brand-dark); padding: 12px 16px; border-radius: 10px; margin-bottom: 12px; }

/* Visual timeline upgrade (dots on the connector) */
.timeline li { position: relative; padding-left: 28px; }
.timeline li::before { content: ""; position: absolute; left: -8px; top: 15px; width: 12px; height: 12px; border-radius: 50%; background: var(--brand); border: 3px solid #fff; box-shadow: 0 0 0 1px var(--line); }
.timeline li.conflict::before { background: var(--danger); }

/* a11y: visible focus on the dropzone */
.dropzone:focus-within { border-color: var(--brand-dark); box-shadow: 0 0 0 3px var(--brand-tint); }

/* Trust badges strip */
.trust-badges-wrap { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px; padding: 16px 22px; }
.trust-badge { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--ink-soft); }
.tb-icon { font-size: 1rem; }

/* Money-back guarantee */
.guarantee { display: flex; align-items: center; gap: 14px; justify-content: center; max-width: 640px; margin: 1.6rem auto 0;
  background: #f0faf8; border: 1px solid #bfe0db; border-radius: var(--radius); padding: 16px 20px; color: var(--ink-soft); }
.guarantee-lg { max-width: 720px; margin: 1.6rem auto; text-align: left; }
.guarantee-seal { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.unlock-guarantee { font-size: .86rem; color: var(--brand-dark); margin: 6px 0 4px; }

/* Testimonials */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 18px; margin-top: 2rem; }
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin: 0; box-shadow: var(--shadow-sm); }
.quote-card blockquote { margin: 0 0 12px; font-size: 1.08rem; color: var(--ink); }
.quote-card figcaption { color: var(--muted); font-size: .9rem; font-weight: 600; }

/* Lead magnet */
.lead-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin: 1.4rem 0 .6rem; }
.lead-form input { flex: 1; min-width: 240px; max-width: 360px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 10px; font: inherit; }
.lead-form input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-tint); }
.lead-section .alert-ok { max-width: 420px; margin: 0 auto 1rem; }

/* Guides */
.guide-list { display: flex; flex-direction: column; gap: 14px; margin-top: 2rem; }
.guide-card { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; color: var(--ink);
  transition: border-color .2s, box-shadow .2s, transform .08s; }
.guide-card:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-2px); text-decoration: none; }
.guide-card h2, .guide-card h3 { margin: 0 0 6px; font-size: 1.2rem; }
.guide-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.guide-meta { color: var(--brand-dark); font-weight: 700; font-size: .88rem; white-space: nowrap; }
.guide-article h2 { margin-top: 1.8rem; font-size: 1.4rem; }
.guide-article .lede { font-size: 1.18rem; color: var(--ink-soft); }
.guide-article .callout { margin: 2rem 0; }

/* Suggestion box */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.suggest-thanks { padding: 40px 30px; }
.suggest-thanks h2 { margin-top: 10px; }
.sugg-list { display: flex; flex-direction: column; gap: 14px; margin-top: 1.4rem; }
.suggest-nudge { margin-top: 14px; font-size: .9rem; color: var(--muted); }

/* Focus field + focus answer */
.focus-field { background: var(--brand-tint); border: 1px solid #bfe0db; border-radius: var(--radius); padding: 18px 18px 14px; }
.focus-field label { color: var(--brand-dark); }
.focus-hint { margin: 8px 0 0; font-size: .84rem; color: var(--ink-soft); }
.focus-eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; font-weight: 800; color: var(--brand-dark); }
.focus-q { font-style: italic; color: var(--ink); font-weight: 600; margin: 4px 0 6px; }
.focus-answer { border: 2px solid var(--brand); background: #f0faf8; border-radius: var(--radius); padding: 22px 24px; margin-bottom: 18px; }
.focus-answer h2 { font-size: 1.2rem; color: var(--brand-dark); margin-bottom: .4rem; }
.focus-answer p:last-child { margin: 0; }
.focus-teaser { border: 1px dashed var(--brand); border-radius: var(--radius); padding: 16px 20px; margin: 18px 0; background: #f0faf8; }
.focus-tease { margin: 0; color: var(--ink); }

/* Dual audience band */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 2.2rem; }
.audience-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; background: #fff; }
.audience-card.attorney { background: var(--ink); color: #cdd8df; border-color: var(--ink); }
.audience-card.attorney h3, .audience-card.attorney strong { color: #fff; }
.audience-tag { display: inline-block; font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: 4px 11px; border-radius: 999px; margin-bottom: 12px; }
.audience-card .audience-tag { background: var(--brand-tint); color: var(--brand-dark); }
.audience-card.attorney .audience-tag { background: rgba(255,255,255,.14); color: #fff; }
.audience-card ul { list-style: none; padding: 0; margin: 0; }
.audience-card li { padding-left: 26px; position: relative; margin-bottom: .55rem; font-size: .96rem; }
.audience-card li::before { content: "→"; position: absolute; left: 0; color: var(--brand); font-weight: 800; }
.audience-card.attorney li::before { color: #34d3c4; }

/* Report — full */
.report-doc { background: #fff; }
.report-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 1.4rem; }
.report-meta { color: var(--muted); font-size: .92rem; }
.report-h2 { margin-top: 2.4rem; border-top: 1px solid var(--line); padding-top: 1.6rem; }
.summary-card { background: var(--brand-tint); border-radius: var(--radius); padding: 24px; }
.summary-card h2 { font-size: 1.2rem; }
.sev-legend { display: flex; gap: 10px; margin-top: 14px; }
.findings { display: flex; flex-direction: column; gap: 16px; margin-top: 1.2rem; }
.finding { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; background: #fff; box-shadow: var(--shadow-sm); border-left-width: 5px; }
.sev-border-high { border-left-color: var(--danger); }
.sev-border-medium { border-left-color: var(--warn); }
.sev-border-low { border-left-color: #ca8a04; }
.finding-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.finding-no { width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: #fff; font-size: .82rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.finding-cat { font-weight: 700; font-size: .88rem; display: flex; align-items: center; gap: 6px; }
.finding-cat .dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.finding-quote { border-left: 3px solid var(--line); margin: 10px 0 6px; padding: 4px 0 4px 14px; color: var(--ink-soft); font-style: italic; }
.finding-loc { color: var(--muted); font-size: .84rem; }
.timeline { list-style: none; padding: 0; margin: 1rem 0; }
.timeline li { display: flex; gap: 14px; align-items: baseline; padding: 10px 14px; border-left: 3px solid var(--line); }
.timeline li.conflict { border-left-color: var(--danger); background: #fff5f5; }
.tl-when { font-weight: 700; min-width: 90px; }
.tl-flag { margin-left: auto; font-size: .7rem; text-transform: uppercase; font-weight: 800; color: #991b1b; background: #fee2e2; padding: 2px 8px; border-radius: 999px; }
.laws { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 14px; margin-top: 1rem; }
.law-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; background: var(--bg-alt); }
.law-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.law-head h3 { font-size: 1rem; margin: 0; }
.law-scope { font-size: .66rem; text-transform: uppercase; font-weight: 800; letter-spacing: .05em; padding: 3px 8px; border-radius: 999px; background: #e2e8f0; color: #475569; }
.law-state { background: #dbeafe; color: #1e40af; } .law-federal { background: #ede9fe; color: #6d28d9; }
/* Report at-a-glance */
.glance { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; background: var(--bg-alt); border-radius: var(--radius); padding: 18px; margin-bottom: 18px; }
.glance-item { text-align: center; display: flex; flex-direction: column; }
.glance-num { font-size: 1.9rem; font-weight: 800; letter-spacing: -.02em; }
.glance-item span:last-child { font-size: .8rem; color: var(--muted); }
.steps-list { margin: 0 0 1rem; padding-left: 1.2rem; }
.steps-list li { margin-bottom: .55rem; color: var(--ink-soft); }

/* Verified-law UI */
.verify-banner { display: flex; gap: 14px; align-items: flex-start; background: #f0faf8; border: 1px solid #bfe0db; border-radius: var(--radius); padding: 16px 18px; margin: 1rem 0; }
.verify-check { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.verify-banner div { font-size: .94rem; color: var(--ink-soft); }
.law-card.law-verified { border-left: 4px solid var(--brand); }
.law-summary { margin: 4px 0 6px; color: var(--ink); }
.law-why { margin: 0 0 8px; color: var(--ink-soft); font-size: .92rem; }
.law-statenote { margin: 0 0 8px; font-size: .9rem; color: var(--brand-dark); font-weight: 600; }
.law-sources { display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; margin-top: 8px; }
.law-badge { font-size: .74rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.law-badge.verified { background: var(--brand-tint); color: var(--brand-dark); }
.law-badge.general { background: #fef9c3; color: #854d0e; }
.law-link { font-size: .86rem; font-weight: 700; color: var(--brand-dark); }

.nextsteps { background: var(--bg-alt); border-radius: var(--radius); padding: 24px; margin-top: 2.4rem; }
.nextsteps ol { margin: 0 0 1rem; padding-left: 1.2rem; }
.cross-promo h4 { margin-top: 1rem; }
.cp-row { display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: 12px; }
.cp-card { border: 1px solid var(--line); border-radius: 10px; padding: 14px; background: #fff; display: flex; flex-direction: column; gap: 3px; color: var(--ink); }
.cp-card span { color: var(--muted); font-size: .84rem; }

/* FAQ */
.faq { margin-top: 1.6rem; }
.faq details { border: 1px solid var(--line); border-radius: 12px; padding: 4px 18px; margin-bottom: 12px; background: #fff; }
.faq summary { cursor: pointer; font-weight: 700; padding: 14px 0; list-style: none; position: relative; padding-right: 30px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 12px; font-size: 1.4rem; color: var(--brand); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 14px; color: var(--ink-soft); }

/* Pipeline (how it works) */
.pipeline { list-style: none; padding: 0; margin: 2rem 0; }
.pipeline li { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.pl-n { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.callout { background: var(--brand-tint); border-radius: var(--radius); padding: 24px; text-align: center; margin-top: 1.4rem; }
.callout h3 { color: var(--brand-dark); }

/* misc content */
.answer-card { background: var(--bg-alt); border-radius: var(--radius); padding: 26px; margin: 1.4rem 0; }
.prose h2 { margin-top: 1.8rem; }
.crumbs { color: var(--muted); font-size: .88rem; margin-bottom: .8rem; }
.crumbs a { color: var(--muted); }
.contact-email { font-size: 1.4rem; font-weight: 700; }
.big-404 { font-size: 6rem; color: var(--brand); margin: 0; line-height: 1; }
.doc-hero { background: linear-gradient(180deg, var(--brand-tint), #fff); }

/* Final CTA */
.final-cta { background: var(--ink); color: #fff; padding: clamp(48px,7vw,84px) 0; text-align: center; }
.final-cta h2 { color: #fff; }
.final-cta p { color: #cdd8df; font-size: 1.1rem; margin-bottom: 1.6rem; }

/* Footer */
.site-footer { background: #0b1721; color: #aebcc6; padding: 56px 0 28px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.footer-brand p { margin: 10px 0; }
.footer-privacy { color: #7f95a3; font-size: .84rem; }
.site-footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: #aebcc6; }
.site-footer a:hover { color: #fff; }
.footer-legal { margin-top: 36px; border-top: 1px solid #1e2d39; padding-top: 22px; }
.disclaimer-strip { font-size: .82rem; color: #8aa0ae; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
.footer-bottom nav { display: flex; gap: 16px; }

@media print {
  .noprint, .site-header, .site-footer, .nav-cta { display: none !important; }
  body { color: #000; }
  .section { padding: 0; }
  .finding, .law-card, .summary-card { break-inside: avoid; }
}

/* Responsive */
@media (max-width: 880px) {
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .doc-hero .hero-art { order: 0; }
  .steps, .price-row, .price-row.four { grid-template-columns: 1fr; }
  .trustbar-inner { grid-template-columns: repeat(2,1fr); gap: 22px; }
  .free-band { grid-template-columns: 1fr; text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .tally-grid { grid-template-columns: repeat(2,1fr); }
}
