/* ==================================================================
   SEAN STRECKER ALERT — Public Consumer-Protection Scam Notice
   Design system: "Bright Hazard / Recall Notice" (deliberately distinct
   from dossier/case-file styles used elsewhere in this project)
     - Palette:    White canvas, near-black ink, alert red, hazard yellow
     - Typography: Archivo Black (poster display) + Source Sans 3 (body)
                    + Space Mono (data/pills)
     - Motion:     Minimal, purposeful — clarity over flourish
   ================================================================== */

:root {
  --white:     #FFFFFF;
  --paper:     #F7F7F5;
  --ink:       #111111;
  --ink-soft:  #3A3A3A;
  --ink-faint: #6B6B6B;
  --line:      #E3E1DC;

  --red:       #E11D2A;
  --red-dark:  #A5121D;
  --red-soft:  #FDEBEC;
  --yellow:    #FFC800;
  --yellow-dark: #B58A00;
  --yellow-soft: #FFF6DC;
  --green:     #1F7A3D;
  --green-soft:#E7F5EA;

  --display: "Archivo Black", "Arial Narrow", sans-serif;
  --body:    "Source Sans 3", -apple-system, "Segoe UI", sans-serif;
  --mono:    "Space Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1180px;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 3px rgba(17,17,17,0.08);
  --shadow-md: 0 8px 20px rgba(17,17,17,0.10);
  --shadow-lg: 0 18px 44px rgba(17,17,17,0.16);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--red-dark); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; transition: color 0.18s var(--ease); }
a:hover { color: var(--red); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--yellow-dark); outline-offset: 2px; border-radius: 2px; }
::selection { background: var(--yellow); color: var(--ink); }

h1, h2, h3 { font-family: var(--display); letter-spacing: -0.01em; margin: 0; color: var(--ink); }
h2 { font-size: clamp(26px, 3.4vw, 38px); }
h3 { font-size: 18px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--ink); color: #fff; padding: 10px 18px;
  font-family: var(--body); font-weight: 700; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Hazard ticker strip ---------- */
.hazard-strip {
  background: repeating-linear-gradient(135deg, var(--ink) 0 18px, #000 18px 36px);
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
}
.hazard-strip__track { display: inline-flex; gap: 60px; animation: ticker 26s linear infinite; }
.hazard-strip__item { padding-right: 60px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .hazard-strip__track { animation: none; } }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px) saturate(140%);
  border-bottom: 3px solid var(--ink);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 24px; }
.brand { display: flex; align-items: center; gap: 8px; font-family: var(--display); font-size: 15px; color: var(--ink); text-decoration: none; letter-spacing: 0.01em; }
.brand__mark { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; background: var(--red); color: #fff; border-radius: 50%; font-size: 14px; }
.site-nav__links { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.site-nav__links a { color: var(--ink-soft); text-decoration: none; font-weight: 600; font-size: 14px; padding: 6px 0; border-bottom: 2px solid transparent; }
.site-nav__links a:hover, .site-nav__links a.active { color: var(--red-dark); border-bottom-color: var(--red); }
.nav-toggle {
  display: none; background: var(--ink); color: #fff; border: none; font-family: var(--mono);
  font-weight: 700; font-size: 12px; letter-spacing: 0.05em; padding: 8px 14px; border-radius: var(--radius-sm); cursor: pointer;
}

/* ---------- Hero ---------- */
.hero { padding: 64px 0 48px; background: var(--white); border-bottom: 3px solid var(--ink); }
.hero__tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.tag {
  font-family: var(--mono); font-size: 11.5px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 5px 12px; border: 1.5px solid var(--ink); border-radius: 999px;
  background: var(--white); color: var(--ink-soft);
}
.tag--danger { background: var(--red); color: #fff; border-color: var(--red); }
.hero__title {
  font-size: clamp(30px, 5vw, 52px); line-height: 1.12; max-width: 20ch; margin-bottom: 22px;
}
.hero__title .hl { color: var(--red); text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 6px; text-underline-offset: 4px; }
.hero__lede { font-size: 18px; color: var(--ink-soft); max-width: 68ch; margin: 0 0 30px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--body); font-weight: 700;
  font-size: 15px; padding: 13px 26px; border-radius: var(--radius-sm); text-decoration: none;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.btn--danger { background: var(--red); color: #fff; box-shadow: var(--shadow-md); }
.btn--danger:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ghost { background: var(--white); color: var(--ink); border: 2px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; }
.stat { padding: 20px 18px; border-right: 2px solid var(--ink); background: var(--paper); }
.stat:last-child { border-right: none; }
.stat__num { display: block; font-family: var(--display); font-size: 34px; color: var(--red); }
.stat__label { display: block; font-size: 12.5px; color: var(--ink-faint); margin-top: 4px; }

/* ---------- Reader notice block ---------- */
.notice-block { background: var(--yellow-soft); border-top: 3px solid var(--yellow-dark); border-bottom: 3px solid var(--yellow-dark); padding: 18px 0; }
.notice-block .wrap { display: flex; align-items: flex-start; gap: 14px; }
.notice-block__icon { width: 26px; height: 26px; flex-shrink: 0; color: var(--yellow-dark); margin-top: 2px; }
.notice-block p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Pills ---------- */
.pill {
  display: inline-block; font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
}
.pill--court { background: var(--green-soft); color: var(--green); border: 1px solid rgba(31,122,61,0.35); }
.pill--press { background: #EAF1FB; color: #1D4E8F; border: 1px solid rgba(29,78,143,0.3); }
.pill--unverified { background: var(--red-soft); color: var(--red-dark); border: 1px solid rgba(165,18,29,0.3); }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section--muted { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--danger { background: var(--ink); color: var(--white); }
.section-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 30px; flex-wrap: wrap; }
.section-num { font-family: var(--mono); font-size: 14px; font-weight: 700; color: var(--red); border: 1.5px solid var(--red); padding: 3px 9px; border-radius: var(--radius-sm); }
.section-head--light .section-num { color: var(--yellow); border-color: var(--yellow); }
.section-head--light h2 { color: var(--white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.lede-copy { font-size: 16px; color: var(--ink-soft); margin: 0; }
.body-copy { font-size: 15.5px; line-height: 1.75; color: var(--ink-soft); }
.body-copy--light { color: #D8D8D8; }

/* ---------- Profile card ---------- */
.profile-card { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.profile-card__facts { display: flex; flex-direction: column; gap: 14px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.fact { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.fact:last-child { border-bottom: none; padding-bottom: 0; }
.fact__label { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-faint); }
.fact__value { font-weight: 600; font-size: 14.5px; }

/* ---------- Claim list ---------- */
.claim-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.claim {
  background: var(--white); border: 1px solid var(--line); border-left: 5px solid var(--red);
  border-radius: var(--radius-sm); padding: 18px 22px; display: flex; flex-direction: column; gap: 8px;
  align-items: flex-start;
}
.claim h3 { margin-top: 4px; }
.claim p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* ---------- Flag grid ---------- */
.flag-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.flag {
  background: #1B1B1B; border: 1px solid #333; border-radius: var(--radius); padding: 20px;
  display: flex; gap: 14px; align-items: flex-start;
}
.flag__no { font-family: var(--display); font-size: 22px; color: var(--yellow); flex-shrink: 0; }
.flag p { margin: 0; font-size: 14.5px; color: #D8D8D8; }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.scam-table { width: 100%; border-collapse: collapse; font-size: 14.5px; background: var(--white); }
.scam-table th, .scam-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.scam-table th { font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-faint); background: var(--paper); }
.scam-table tr:last-child td { border-bottom: none; }
.scam-table .name { font-weight: 700; }

/* ---------- Protect grid ---------- */
.protect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.protect-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.protect-card h3 { margin-bottom: 10px; color: var(--red-dark); }
.protect-card p { margin: 0; font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; }

/* ---------- Report grid ---------- */
.report-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.report-card {
  display: flex; flex-direction: column; gap: 6px; background: #1B1B1B; border: 1px solid #333;
  border-radius: var(--radius); padding: 20px; text-decoration: none; transition: border-color 0.18s var(--ease), transform 0.15s var(--ease);
}
.report-card:hover { border-color: var(--yellow); transform: translateY(-3px); }
.report-card__org { font-weight: 700; color: #fff; font-size: 15px; }
.report-card__desc { font-size: 13.5px; color: #B8B8B8; }

/* ---------- Disclaimer ---------- */
.disclaimer-box { background: var(--paper); border: 1px solid var(--line); border-left: 5px solid var(--ink); border-radius: var(--radius); padding: 24px 26px; }
.disclaimer-box p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.75; margin: 0 0 14px; }
.disclaimer-box p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); padding: 52px 0 28px; font-size: 13px; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 34px; }
.site-footer h5 { font-family: var(--mono); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--yellow); margin: 0 0 16px; }
.site-footer p { color: #ABABAB; line-height: 1.7; margin: 0; }
.site-footer a { color: var(--paper); display: block; margin-bottom: 10px; text-decoration: none; }
.site-footer a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid #2E2E2E; padding-top: 20px; color: #7C7C7C; font-size: 11.5px;
  font-family: var(--mono); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* ---------- Back to top ---------- */
#backToTop {
  position: fixed; bottom: 24px; right: 24px; width: 48px; height: 48px;
  background: var(--red); color: #fff; border: none; border-radius: 50%;
  box-shadow: var(--shadow-lg); font-family: var(--body); font-size: 18px; font-weight: 700; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), background 0.2s var(--ease);
  z-index: 60;
}
#backToTop.show { opacity: 1; visibility: visible; transform: none; }
#backToTop:hover { background: var(--red-dark); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.in-view { opacity: 1; transform: none; transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-2 { grid-template-columns: 1fr; }
  .profile-card { grid-template-columns: 1fr; }
  .flag-grid { grid-template-columns: repeat(2, 1fr); }
  .protect-grid { grid-template-columns: repeat(2, 1fr); }
  .report-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .site-nav__links { display: none; }
  .site-nav__links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 2px solid var(--ink); padding: 10px 24px;
  }
  .nav-toggle { display: block; }
  .site-nav .nav-inner { position: relative; }
  .hero__stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 2px solid var(--ink); }
  .stat:last-child { border-bottom: none; }
  .flag-grid, .protect-grid, .report-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .hero { padding: 44px 0 34px; }
  .section { padding: 48px 0; }
  .claim { padding: 16px 18px; }
}
