/* social-media-parallel.css (cards variant promoted 2026-05-20).
   Scoped styles for <section class="smp"> on the landing. Single
   variant only (cards); the timeline + bars variants from the
   A/B/C tweak have been deleted along with the variant switcher.
   Visual register: cream-on-cream Visual-Capitalist mini-modules,
   prosecutorial neutral. No em-dashes anywhere. */

/* ──────────────────────────────────────────────────────────────
   Section frame
   ────────────────────────────────────────────────────────────── */
.smp {
  background: var(--ink, #1C2620);
  border-top: none;
  border-bottom: none;
  padding: 80px 0 84px;
  color: var(--bg, #F7F2E4);
}
@media (max-width: 640px) {
  .smp { padding: 56px 0 60px; }
}
.smp .wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ──────────────────────────────────────────────────────────────
   Eyebrow / headline / lede
   ────────────────────────────────────────────────────────────── */
.smp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent-2, #D97742);
}
.smp-eyebrow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-2);
}
.smp-headline {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.12;
  margin: 0 0 18px;
  max-width: 22ch;
  color: #FFFFFF;
}
.smp-lede {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
  margin: 0 0 18px;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.8);
}
/* Second lede paragraph: subtler than the first so it reads as
   continuation, not restart. Slightly smaller, ink-dim, plus extra
   bottom margin to space the stat-cards. */
.smp-lede-second {
  font-size: clamp(16px, 1.45vw, 18px);
  color: var(--ink-dim, #4F5A53);
  margin: 0 0 36px;
}

/* ──────────────────────────────────────────────────────────────
   Stat cards
   ────────────────────────────────────────────────────────────── */
.smp-cards {
  list-style: none;
  padding: 0;
  margin: 0 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.smp-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 26px 24px 22px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.smp-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.10);
}
.smp-card-num {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(44px, 5.5vw, 60px);
  line-height: 1;
  color: var(--accent-2-deep);
  letter-spacing: -0.01em;
}
.smp-card-context {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
.smp-card-source {
  margin: auto 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.smp-card-source em { font-style: italic; text-transform: none; letter-spacing: 0; }

/* ──────────────────────────────────────────────────────────────
   Punch paragraph: the asymmetry indictment between cards + quote
   ────────────────────────────────────────────────────────────── */
.smp-punch {
  margin: 36px 0 0;
  padding: 26px 28px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  /* Faint red wash ties visually to the .vacuum-zero red accent
     used by Section 4. Subtle, not aggressive. */
  background: rgba(255, 68, 56, 0.04);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 64ch;
}
@media (max-width: 640px) {
  .smp-punch { padding: 22px 20px; }
}

/* ──────────────────────────────────────────────────────────────
   Pull-quote
   ────────────────────────────────────────────────────────────── */
.smp-pull {
  margin: 28px 0 0;
  padding: 22px 26px 20px;
  border-left: 3px solid var(--accent-2, #D97742);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 8px 8px 0;
}
.smp-pull p {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  color: #FFFFFF;
}
.smp-pull-cite {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.smp-pull-cite em { font-style: italic; text-transform: none; letter-spacing: 0; }

/* ──────────────────────────────────────────────────────────────
   CTA
   ────────────────────────────────────────────────────────────── */
.smp-cta {
  margin: 36px 0 0;
  text-align: left;
}
.smp-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 8px;
  background: var(--bg, #F7F2E4);
  color: var(--ink, #1C2620);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}
.smp-cta-link:hover {
  background: #FFFFFF;
  transform: translateY(-1px);
}

/* ──────────────────────────────────────────────────────────────
   Reduced motion
   ────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .smp-card { transition: none; }
  .smp-cta-link { transition: none; }
}
