/* Fixed desktop composition rendered by the browser, not a raster cover. */
.project-visual.asset-visual .project-screen,
.live-site-preview {
  aspect-ratio: 1100 / 713;
}
.live-site-preview {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #17191c;
  contain: layout paint;
  pointer-events: none;
}
.live-site-preview iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1100px;
  height: 713px;
  max-width: none;
  border: 0;
  transform-origin: top left;
  transform: scale(var(--preview-scale, 0));
  opacity: 0;
}
.live-site-preview.preview-ready iframe { opacity: 1; }
.preview-message {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  color: #d5d7da;
  font: 13px/1.5 system-ui, sans-serif;
}
.preview-ready .preview-message { display: none; }
.industry-row .live-site-preview { border-radius: 12px; }
.laptop-concepts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 12px auto;
}
.laptop-concepts button {
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid #666a70;
  border-radius: 999px;
  background: #16181b;
  color: #dddfe2;
  font: 12px/1.2 system-ui, sans-serif;
  cursor: pointer;
}
.laptop-concepts button[aria-pressed='true'] { background: #d9dbde; color: #121315; }
.laptop-concepts button:focus-visible { outline: 2px solid white; outline-offset: 3px; }
@media (max-width: 700px) {
  .laptop-concepts { gap: 5px; }
  .laptop-concepts button { padding-inline: 10px; font-size: 11px; }
}
