/* Phone chrome for static App Store-style screenshots. */

.device {
  width: 292px;
  position: relative;
}
.device-bezel {
  position: relative;
  background: #1c1916;
  border-radius: 42px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 28px 60px -18px var(--shadow);
}
.device-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 22px;
  background: #1c1916;
  border-radius: 14px;
  z-index: 6;
  pointer-events: none;
}
.device-screen {
  position: relative;
  background: var(--hover);
  border-radius: 32px;
  overflow: hidden;
  height: 596px;
}
.shot-img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.device-screen.has-shot .shot-img { display: block; }
.device-screen.has-shot .shot-ph { display: none; }

.shot-ph {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 22px;
  text-align: center;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--card-blue) 22%, var(--hover)), var(--hover));
}
.shot-ph strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}
.shot-ph p {
  font-size: 13px;
  color: var(--ink-soft);
  max-width: 200px;
}
.shot-ph code {
  font-size: 11px;
  color: var(--chrome-blue);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
}

.device-caption {
  text-align: center;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 14px;
}
.phone-stage { display: flex; justify-content: center; }

@media (max-width: 960px) {
  .phone-stage .device { margin: 0 auto; }
}
