/* =========================================================
   Page Publishing Scam — Warning & Class Action Website
   ========================================================= */

:root {
  --red:        #c0392b;
  --red-dark:   #96281b;
  --red-light:  #f9ebea;
  --yellow:     #f39c12;
  --yellow-light: #fef9e7;
  --dark:       #1a1a2e;
  --gray:       #4a4a6a;
  --light-gray: #f4f4f8;
  --white:      #ffffff;
  --border:     #ddd;
  --max-width:  960px;
  --radius:     8px;
  --shadow:     0 4px 20px rgba(0,0,0,0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--light-gray);
}

/* ---- UTILITY ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ---- HEADER / HERO ---- */
.site-header {
  background: var(--red);
  color: var(--white);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.site-logo {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-logo .icon { font-size: 1.4rem; }

.site-nav a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: 20px;
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--white); text-decoration: underline; }

/* ---- HERO BAND ---- */
.hero {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  color: var(--white);
  padding: 72px 20px 60px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--yellow); }

.hero p {
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 32px;
  opacity: 0.92;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.1s;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
}

.btn-primary:hover { background: #d68910; }

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  margin-left: 12px;
}

.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ---- SECTION BASE ---- */
section { padding: 64px 0; }
section:nth-child(even):not(.hero):not(.cta-band) { background: var(--white); }

.section-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 700px;
  margin-bottom: 40px;
}

/* ---- ALERT BOX ---- */
.alert-box {
  background: var(--red-light);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
}

.alert-box strong { color: var(--red); }

/* ---- SCAM TACTICS ---- */
.tactics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.tactic-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.tactic-icon { font-size: 2rem; margin-bottom: 12px; }

.tactic-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tactic-card p { font-size: 0.93rem; color: var(--gray); }

/* ---- WHAT VICTIMS DIDN'T RECEIVE ---- */
.missing-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.missing-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px 16px 52px;
  position: relative;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
}

.missing-list li::before {
  content: "✗";
  position: absolute;
  left: 18px;
  top: 16px;
  color: var(--red);
  font-size: 1.1rem;
  font-weight: 900;
}

/* ---- TIMELINE ---- */
.timeline {
  position: relative;
  padding-left: 32px;
  border-left: 3px solid var(--red);
  margin: 0 0 32px;
}

.timeline-item {
  position: relative;
  padding: 0 0 32px 24px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
}

.timeline-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 4px;
}

.timeline-item p { font-size: 0.93rem; color: var(--gray); }

/* ---- SHARE YOUR STORY / SIGN UP ---- */
.cta-band {
  background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
  color: var(--white);
  text-align: center;
  padding: 72px 20px;
}

.cta-band .section-label { color: var(--yellow); }
.cta-band .section-title { color: var(--white); }

.cta-band p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

/* ---- SIGN-UP FORM ---- */
.signup-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  text-align: left;
}

.signup-form h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.signup-form .form-note {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.form-check input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }

.form-success {
  display: none;
  background: #eafaf1;
  border: 1px solid #27ae60;
  border-radius: var(--radius);
  padding: 20px 24px;
  color: #1e8449;
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
}

/* ---- FAQ ---- */
.faq-list { max-width: 740px; }

details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}

summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.97rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "＋";
  font-size: 1.1rem;
  color: var(--red);
  flex-shrink: 0;
}

details[open] summary::after { content: "－"; }

details .faq-body {
  padding: 0 20px 18px;
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ---- DISCLAIMER ---- */
.disclaimer {
  background: var(--yellow-light);
  border: 1px solid #f0c040;
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.85rem;
  color: #7d6608;
  margin-top: 40px;
}

.disclaimer strong { color: #6e5209; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 36px 20px;
  font-size: 0.85rem;
  text-align: center;
}

.site-footer a { color: rgba(255,255,255,0.8); }
.site-footer a:hover { color: var(--white); }

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
  .hero { padding: 48px 20px 40px; }
  .btn-outline { margin-left: 0; margin-top: 10px; }
  .signup-form { padding: 24px 18px; }
  section { padding: 48px 0; }
}
