/* 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; }

/* ── Founding design-partner pilot card ── */
.pilot-card {
  max-width: 880px;
  margin: 48px auto 0;
  text-align: left;
  background: var(--panel-bg);
  border: 1px solid rgba(176, 184, 196, 0.15);
  border-radius: 36px;
  padding: 44px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(176, 184, 196, 0.04);
}
.pilot-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--panel-border);
}
.pilot-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(176, 184, 196, 0.1);
  border: 1px solid rgba(176, 184, 196, 0.15);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
}
.pilot-fee { text-align: right; }
.pilot-fee-amount {
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--ivory);
  line-height: 1;
}
.pilot-fee-note {
  font-size: 0.75rem;
  color: var(--slate-light);
  margin-top: 6px;
  max-width: 260px;
}
.pilot-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 8px;
}
.pilot-card .btn-primary { margin-top: 12px; }

@media (max-width: 768px) {
  .pilot-card { padding: 32px 24px; border-radius: 28px; }
  .pilot-card-head { flex-direction: column; align-items: flex-start; }
  .pilot-fee { text-align: left; }
  .pilot-fee-note { max-width: none; }
  .pilot-columns { grid-template-columns: 1fr; gap: 28px; }
}
