/* SnapFlow additions on top of the (untouched) Luminary template stylesheet.
   Reuses the Luminary CSS custom properties — no values are redefined here. */

/* Luminary's .testimonial-avatar was designed to hold initials text;
   these two rules make it behave correctly now that it holds an <img>. */
.testimonial-avatar { overflow: hidden; }
img.testimonial-avatar { object-fit: cover; }

/* ── Hero product screenshot ── */
.hero-visual {
  max-width: 900px;
  width: 100%;
  margin: 56px auto 0;
  border-radius: 28px;
  overflow: hidden;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1.4s var(--silk-ease) 0.9s forwards;
}
.hero-visual img { display: block; width: 100%; height: auto; }

@media (max-width: 768px) {
  .hero-visual { margin-top: 40px; border-radius: 20px; }
}

/* ── Mission receipt (ported from the pre-Luminary site, restyled to match) ── */
.receipt {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  padding: 28px 28px 24px;
  max-width: 400px;
  width: 100%;
  margin: 0 auto 56px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  text-align: left;
}
.receipt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--panel-border);
}
.receipt-head-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-warm);
}
.receipt-stamp {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #30d158;
  border: 1px solid rgba(48, 209, 88, 0.35);
  background: rgba(48, 209, 88, 0.1);
  padding: 4px 12px;
  border-radius: 999px;
}
.receipt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  padding: 7px 0;
  color: var(--slate-light);
}
.receipt-row strong { color: var(--ivory); font-weight: 600; }
.receipt-row.refund strong { color: #30d158; }
.receipt-divider { height: 1px; background: var(--panel-border); margin: 14px 0; }
.receipt-resources {
  font-size: 12px;
  color: var(--slate-warm);
  line-height: 1.9;
  margin: 10px 0 14px;
}
.receipt-resources span { color: var(--slate-light); }
.receipt-hash {
  font-size: 11px;
  color: var(--slate-warm);
  word-break: break-all;
  padding-top: 12px;
  border-top: 1px dashed var(--panel-border);
}
.receipt-hash strong { color: var(--slate-light); font-weight: 600; }
