/* ============ Showcase / Proof Gallery ============ */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 22px;
}

.sc-card {
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* header strip */
.sc-head { padding: 18px 20px 14px; border-bottom: 1px solid var(--line); }
.sc-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.sc-cat { font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--brand-2); font-weight: 700; }
.sc-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.sc-badge { font-size: 10.5px; padding: 3px 8px; border-radius: 999px; background: rgba(124,92,255,.16); color: #c9bcff; font-weight: 600; border: 1px solid rgba(124,92,255,.3); }
.sc-title { font-size: 20px; font-weight: 800; margin: 0; line-height: 1.2; }
.sc-use { font-size: 12.5px; color: var(--ink-faint); margin-top: 4px; }

/* body */
.sc-body { padding: 16px 20px 18px; display: flex; flex-direction: column; gap: 12px; }
.sc-label { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--ink-faint); margin-bottom: 6px; }
.sc-scenario { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* result panel — styled like an AI answer */
.sc-result {
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand-2);
  border-radius: 12px;
  padding: 16px 16px 14px;
  position: relative;
}
.sc-result-tag { display: flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--brand-2); font-weight: 700; margin-bottom: 10px; }
.sc-result-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-2); box-shadow: 0 0 8px var(--brand-2); }
.sc-output { font-size: 13.5px; color: var(--ink); white-space: pre-wrap; margin: 0; line-height: 1.6; font-family: var(--font); -webkit-user-select: none; -ms-user-select: none; user-select: none; }

/* card footer — brand stamp so screenshots are self-contained ads */
.sc-foot {
  margin-top: 4px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 20px;
  background: rgba(124,92,255,.08);
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.sc-stamp { font-size: 12px; color: var(--ink-soft); font-weight: 600; }
.sc-stamp .mk { color: var(--brand-2); }
.sc-stamp .url { color: var(--ink-faint); font-weight: 500; }
.sc-actions { display: flex; gap: 8px; }
.sc-btn { font-size: 12.5px; padding: 7px 13px; border-radius: 9px; border: 1px solid var(--line); background: var(--bg-2); color: var(--ink); cursor: pointer; font-weight: 600; }
.sc-btn:hover { border-color: var(--brand-2); }
.sc-btn.primary { background: linear-gradient(135deg, var(--brand), #5a3df0); border: 0; }

/* closing CTA band */
.closer { text-align: center; padding: 56px 0 72px; }
.closer h2 { font-size: clamp(28px, 5vw, 44px); margin: 0 0 12px; font-weight: 800; }
.closer h2 span { background: linear-gradient(120deg, var(--brand-2), var(--brand)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.closer p { color: var(--ink-soft); max-width: 560px; margin: 0 auto 24px; font-size: 16px; }

@media (max-width: 640px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .header-actions .btn { font-size: 13px; padding: 9px 12px; }
}

/* screenshot mode — isolates one card centred for clean capture */
body.shot-mode .site-header,
body.shot-mode .hero,
body.shot-mode .closer,
body.shot-mode .site-footer,
body.shot-mode .cat-row { display: none; }
body.shot-mode .showcase-grid { grid-template-columns: 1fr; max-width: 520px; margin: 30px auto; }
body.shot-mode .sc-card.shot-hidden { display: none; }
