/* ── Social Proof Strip — shared component stylesheet ─────────────
   Rendered above purchase CTAs on /classes and /downloads.
   Works against either classes.html's vars (--card/--accent/--white/--muted)
   or downloads.html's vars (--surface/--accent/--text/--text-muted)
   by using CSS var() fallbacks. No :root redefinitions. */
:root {
  --surface: #1a1a1a;
  --border: #2a2a2a;
  --accent: #c8ff00;
  --text: #f0f0f0;
  --muted: #999999;
}

.social-proof-anchor { display: block; max-width: 1100px; margin: 0 auto 24px; padding: 0 24px; }

/* Hero placements live inside text-aligned hero sections (e.g. .hero on
   /classes or section.hero on /downloads). Constrain the strip so a
   single-card strip matches the centered-pill look rather than spanning
   the full viewport width. */
.hero .social-proof-anchor,
section.hero .social-proof-anchor {
  display: inline-block;
  padding: 0;
  max-width: 560px;
}

.social-proof-strip {
  background: var(--surface, var(--card, #1a1a1a));
  border: 1px solid var(--border, #2a2a2a);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: stretch;
  gap: 18px;
  box-shadow: 0 0 0 1px rgba(200, 255, 0, 0.04), 0 4px 18px rgba(0, 0, 0, 0.25);
}

.social-proof-card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-proof-quote {
  font-size: 0.95rem;
  color: var(--text, var(--white, #f0f0f0));
  font-style: italic;
  line-height: 1.55;
  margin: 0;
}

.social-proof-quote::before {
  content: "\201C";
  color: var(--accent, #c8ff00);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.4rem;
  line-height: 0;
  margin-right: 4px;
  vertical-align: -4px;
  font-style: normal;
}

.social-proof-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--muted, #888);
}

.social-proof-stars {
  color: var(--accent, #c8ff00);
  letter-spacing: 1px;
  font-size: 0.85rem;
  line-height: 1;
}

.social-proof-author {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--muted, #888);
}

.social-proof-divider {
  width: 1px;
  background: var(--border, #2a2a2a);
  align-self: stretch;
}

@media (max-width: 640px) {
  .social-proof-anchor { padding: 0 20px 0; }
  .social-proof-strip {
    flex-direction: column;
    gap: 14px;
    padding: 16px 18px;
  }
  .social-proof-divider { display: none; }
  .social-proof-card { padding-bottom: 0; }
  .social-proof-card + .social-proof-card {
    padding-top: 14px;
    border-top: 1px solid var(--border, #2a2a2a);
  }
}
