/* ================================================
   skeptics.css — Styles for the risk analysis page
   ================================================ */

/* Disable scroll-snap and hide home-page-only elements */
html {
  scroll-snap-type: none;
}

.nav-dots,
.progress-bar {
  display: none;
}

/* ---- PAGE HEADER ---- */
.skeptics-header {
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.skeptics-header-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.skeptics-header-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  letter-spacing: 3px;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
}

.skeptics-header-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--dim);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.skeptics-header-hook {
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--accent);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- CONTENT AREA ---- */
.skeptics-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ---- CONTENT SECTIONS ---- */
.skeptics-section {
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.skeptics-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.skeptics-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 12px;
}

.skeptics-section > p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--dim);
  margin-bottom: 24px;
}

/* ---- TABLES ---- */
.skeptics-section .table-wrap {
  margin: 0 0 24px;
}

.skeptics-section table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--dim);
}

.skeptics-section th {
  font-weight: 500;
  color: var(--text);
  text-align: left;
  padding: 10px 12px;
  border-bottom: 2px solid rgba(158, 154, 147, 0.3);
  white-space: nowrap;
}

.skeptics-section td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(158, 154, 147, 0.1);
  vertical-align: top;
}

.skeptics-section tr:hover td {
  background: rgba(241, 198, 136, 0.03);
}


/* Risk probability/impact badges */
.badge-high {
  color: var(--red);
}

.badge-medium {
  color: var(--accent);
}

.badge-low {
  color: var(--green);
}

.badge-critical {
  color: var(--red-bright);
  font-weight: 400;
}

/* ---- CTA SECTION ---- */
.skeptics-cta {
  text-align: center;
  padding: 80px 24px;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.skeptics-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.skeptics-header .cta-group,
.skeptics-cta .cta-group {
  opacity: 1;
  transform: none;
}

.skeptics-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 20px;
}

.skeptics-cta p {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 18px);
  color: var(--dim);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ---- MOBILE ---- */
@media (max-width: 640px) {
  .skeptics-header {
    padding: 100px 16px 60px;
  }

  .skeptics-content {
    padding: 0 16px 60px;
  }

  .skeptics-section table {
    font-size: 13px;
  }

  .skeptics-section th,
  .skeptics-section td {
    padding: 8px 10px;
  }

  .skeptics-cta {
    padding: 60px 16px;
  }
}
