/* Landing screenshots */
.hero-shot {
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(148, 163, 184, 0.18);
  margin: 1rem 0 0.35rem;
}
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}
.gallery figure {
  margin: 0;
}
.gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(148, 163, 184, 0.16);
}
.gallery figcaption {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  opacity: 0.75;
  text-align: center;
}
@media (max-width: 720px) {
  .gallery { grid-template-columns: 1fr; }
}
