:root {
  --ink: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --paper: #f8fafc;
  --accent: #b45309;
  --accent-soft: #fff7ed;
  --miami: #0e7490;
  --bar-bg: #1e293b;
  --bar-text: #f1f5f9;
  --radius: 10px;
  --font: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "IBM Plex Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: #fff;
}

.bar-notice {
  background: var(--bar-bg);
  color: var(--bar-text);
  font-size: 0.82rem;
  line-height: 1.45;
  padding: 0.65rem 1rem;
  border-bottom: 3px solid var(--accent);
}

.bar-notice p {
  margin: 0.35rem auto;
  max-width: 72rem;
}

.bar-notice .lead {
  font-weight: 600;
}

.bar-notice .footnote {
  opacity: 0.88;
  font-size: 0.78rem;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
}

.brand {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.35rem;
  text-decoration: none;
  color: var(--ink);
}

.brand span {
  color: var(--accent);
}

.tagline {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 36rem;
}

.nav a {
  color: var(--miami);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  margin-left: 1rem;
}

.nav a:hover {
  text-decoration: underline;
}

main {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

.lead-form-anchor:empty {
  display: none;
}

.lead-capture-shell {
  position: relative;
  padding: 1.35rem 1.25rem 1.75rem;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(14, 116, 144, 0.18), transparent 55%),
    linear-gradient(180deg, #ecfeff 0%, #f1f5f9 100%);
  border-bottom: 1px solid #cbd5e1;
}

.lead-form-card {
  max-width: 36rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.06),
    0 20px 40px -12px rgba(15, 23, 42, 0.22),
    0 8px 16px -8px rgba(14, 116, 144, 0.25);
  transform: translateY(0);
}

.lead-form-card-header {
  padding: 1.15rem 1.35rem 1.1rem;
  background: linear-gradient(135deg, #0c4a6e 0%, #0e7490 48%, #0891b2 100%);
  color: #f8fafc;
}

.lead-form-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.92;
}

.lead-form-card-header h2 {
  font-family: var(--font);
  font-size: clamp(1.2rem, 3.2vw, 1.5rem);
  line-height: 1.28;
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: #fff;
}

.lead-form-sub {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(248, 250, 252, 0.9);
}

.lead-form-card-body {
  padding: 1.15rem 1.35rem 1.35rem;
  background: #fff;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 0.85rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 540px) {
  .lead-form-grid {
    grid-template-columns: 1fr;
  }
}

.lead-field {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead-field-full {
  margin-bottom: 0.25rem;
}

.lead-form input,
.lead-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--ink);
  padding: 0.6rem 0.7rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #94a3b8;
}

.lead-form input:hover,
.lead-form textarea:hover {
  background: #fff;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--miami);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(14, 116, 144, 0.2);
}

.lead-form textarea {
  min-height: 4.5rem;
  resize: vertical;
}

.lead-honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.lead-form-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.lead-form-submit {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  background: linear-gradient(180deg, #0e7490 0%, #0c4a6e 100%);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 4px 14px rgba(12, 74, 110, 0.35);
  transition: transform 0.12s, box-shadow 0.12s, filter 0.12s;
}

.lead-form-submit:hover {
  filter: brightness(1.06);
  box-shadow: 0 6px 18px rgba(12, 74, 110, 0.4);
}

.lead-form-submit:active {
  transform: translateY(1px);
}

.lead-form-disclaimer {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--muted);
  text-align: center;
}

.lead-form-status {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  font-weight: 500;
  min-height: 1.2rem;
  text-align: center;
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
}

.lead-form-status.ok {
  color: #166534;
  background: #ecfdf5;
}

.lead-form-status.err {
  color: #991b1b;
  background: #fef2f2;
}

.hero {
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

.hero .updated {
  font-size: 0.85rem;
  color: var(--muted);
}

.section {
  margin-bottom: 2.75rem;
}

.section h2 {
  font-family: var(--font);
  font-size: 1.45rem;
  margin: 0 0 1rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--ink);
}

.miami-watch-panel {
  background: linear-gradient(135deg, #ecfeff 0%, var(--accent-soft) 100%);
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  margin-bottom: 2rem;
}

.miami-watch-panel h2 {
  border: none;
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

.miami-watch-panel .subtitle {
  color: var(--miami);
  font-weight: 600;
  font-size: 0.82rem;
  margin: 0 0 0.5rem;
}

.case-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.case-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.case-card.featured {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(180, 83, 9, 0.08);
}

.case-card.miami {
  border-left: 4px solid var(--miami);
}

.case-head {
  padding: 1rem 1.15rem 0.5rem;
}

.defendant-headline {
  font-family: var(--font);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.case-head h3,
.case-head h4 {
  font-family: var(--font);
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.case-head h4 {
  font-size: 1.05rem;
}

.badge.pdf {
  background: #fef3c7;
  color: #92400e;
}

.filing-gallery {
  margin: 0.5rem 0 0.35rem;
}

.filing-gallery-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 38rem;
}

.filing-thumb {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  min-width: 0;
  width: 100%;
  padding: 0.35rem;
}

.filing-thumb:hover {
  border-color: var(--miami);
  box-shadow: 0 2px 10px rgba(14, 116, 144, 0.15);
}

.filing-thumb img {
  width: 5.25rem;
  height: 4rem;
  flex-shrink: 0;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: var(--paper);
  border-radius: 4px;
}

.filing-thumb-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.filing-thumb-caption {
  display: block;
  padding: 0;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.4;
}

.filing-page {
  font-weight: 600;
  color: var(--muted);
}

.filing-thumb-cta {
  display: block;
  padding: 0.2rem 0.15rem 0;
  font-size: 0.65rem;
  color: var(--miami);
  font-weight: 600;
}

.case-head .filing-gallery {
  margin-top: 0.5rem;
}

.watch-grid .case-card {
  border-width: 1px;
}

.watch-case-list {
  gap: 0.65rem;
}

.case-card-watch-compact .case-head {
  padding: 0.55rem 0.75rem 0.25rem;
}

.case-card-watch-compact .case-body {
  display: none;
}

.case-card-watch-compact .defendant-headline {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  margin: 0 0 0.25rem;
}

.case-card-watch-compact .case-head h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  line-height: 1.35;
}

.case-card-watch-compact .badges {
  margin-bottom: 0.25rem;
}

.section-intro {
  color: var(--muted);
  font-size: 0.95rem;
  margin: -0.35rem 0 1.25rem;
  max-width: 42rem;
}

.actor-block {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.actor-block:last-child {
  border-bottom: none;
}

.actor-headline {
  font-family: var(--font);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  margin: 0 0 0.35rem;
  line-height: 1.2;
}

.actor-name {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.actor-cases .case-card {
  border-left-width: 3px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: var(--paper);
  color: var(--muted);
}

.badge.miami {
  background: #cffafe;
  color: #0e7490;
}

.case-body {
  padding: 0 1.15rem 1rem;
  font-size: 0.95rem;
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 0.65rem 1.25rem;
  margin: 0.75rem 0;
  font-size: 0.88rem;
}

.case-meta dt {
  font-weight: 600;
  color: var(--muted);
  margin: 0;
}

.case-meta dd {
  margin: 0.1rem 0 0;
}

.doc-links {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.doc-links a {
  display: inline-block;
  font-size: 0.82rem;
  padding: 0.35rem 0.65rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--miami);
  text-decoration: none;
}

.doc-links a:hover {
  background: #ecfeff;
}

.news-reporting-block {
  margin-bottom: 2rem;
}

.news-reporting-title {
  font-family: var(--font);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.news-more-head {
  font-family: var(--font);
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.news-incident {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  margin-bottom: 1rem;
  background: var(--paper);
}

.news-incident h3 {
  font-family: var(--font);
  margin: 0 0 0.25rem;
  font-size: 1.12rem;
}

.news-incident-date {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.incident-bullets,
.case-highlights {
  margin: 0.5rem 0 0.75rem;
  padding-left: 1.25rem;
  font-size: 0.92rem;
}

.incident-bullets li,
.case-highlights li {
  margin-bottom: 0.35rem;
}

.case-lead {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.news-list li:last-child {
  border-bottom: none;
}

.news-list a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font);
}

.news-list a:hover {
  color: var(--accent);
}

.news-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.2rem 0 0.35rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1rem;
}

.stat-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid var(--line);
}

.stat-card .value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font);
}

.stat-card .label {
  font-size: 0.88rem;
  margin-top: 0.25rem;
}

.stat-card .source {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.faq-list dt {
  font-weight: 600;
  margin-top: 1rem;
  font-family: var(--font);
}

.faq-list dd {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.seo-summary {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.75rem 1.25rem 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.seo-summary a {
  color: var(--miami);
}

.sourcing {
  font-size: 0.92rem;
  color: var(--muted);
}

.sourcing ul {
  padding-left: 1.2rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 1.25rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  background: var(--paper);
}

@media (max-width: 640px) {
  .nav a {
    margin-left: 0.75rem;
  }
}
