.hero-film, .film-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-film {
  object-fit: cover;
  object-position: 56% center;
  opacity: 0.76;
}
.film-shade {
  background: linear-gradient(180deg, #10203720 0%, #10203970 32%, #102039e6 69%, #111e33 100%);
}
.hero-art .art-label {
  z-index: 1;
  right: 34%;
  color: white;
  text-shadow: 0 1px 12px #102039;
}
.hero-art .art-label-line { display: none; }
.hero-art .terminal { top: 27%; }
.film-control {
  position: absolute;
  z-index: 5;
  top: 5.5%;
  right: 5.5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid #ffffff75;
  border-radius: 30px;
  background: #10203885;
  color: white;
  font-size: 9px;
  backdrop-filter: blur(8px);
}
.film-control:hover { background: #102038; }
.film-control:focus-visible { outline-color: white; }
.floating-report { animation: report-entrance 900ms 200ms both; }
.hero-copy { animation: copy-entrance 700ms both; }
@keyframes report-entrance {
  from { opacity: 0; transform: translateY(20px) rotate(5deg); }
  to { opacity: 1; transform: translateY(0) rotate(3deg); }
}
@keyframes copy-entrance {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.business-scenes { padding-top: 76px; }
.scenes-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 16px 50px;
  margin-bottom: 30px;
}
.scenes-heading .eyebrow { grid-column: 1 / -1; }
.scenes-heading h2 { font-size: 37px; }
.scenes-heading h2 em { color: var(--blue); }
.scenes-heading > p:last-child {
  justify-self: end;
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  padding-bottom: 3px;
}
.scene-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.scene-card {
  position: relative;
  display: block;
  height: 335px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 8px;
  background: #29332f;
  color: white;
}
.scene-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #10203535, #10203500 27%, #0a142654 54%, #0a1426d9);
}
.scene-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  z-index: -2;
  transition: transform 900ms cubic-bezier(0.2, 0.65, 0.3, 1);
}
.scene-card:hover img, .scene-card:focus-visible img { transform: scale(1.045); }
.scene-type {
  position: absolute;
  top: 27px;
  left: 28px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-shadow: 0 1px 9px #0008;
}
.scene-copy { position: absolute; bottom: 29px; left: 30px; right: 30px; }
.scene-copy h3 { font-size: 30px; font-weight: 600; line-height: 1.18; letter-spacing: -1px; }
.scene-copy > span { display: flex; align-items: center; justify-content: space-between; margin-top: 23px; padding-top: 17px; border-top: 1px solid #ffffff60; font-size: 11px; }
.scene-copy svg { width: 18px; height: 18px; transition: transform 200ms; }
.scene-card:hover .scene-copy svg { transform: translateX(4px); }
.scene-credits { margin-top: 14px; font-size: 8px; line-height: 1.8; color: #778397; text-align: right; }
.scene-credits a { text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 1150px) {
  .scene-card { height: 290px; }
  .scene-copy h3 { font-size: 27px; }
}
@media (max-width: 900px) {
  .hero-art .terminal { top: 33%; }
  .hero-art .art-label { top: 8%; }
  .film-control { top: 6.5%; min-width: 32px; padding: 6px 9px; }
  .film-control-label { display: none; }
  .business-scenes { padding-top: 65px; }
  .scenes-heading h2 { font-size: 34px; }
  .scenes-heading > p:last-child { font-size: 12px; }
  .scene-grid { gap: 18px; }
  .scene-card { height: 280px; }
  .scene-type { left: 22px; font-size: 8px; letter-spacing: 1px; }
  .scene-copy { left: 22px; right: 22px; bottom: 24px; }
  .scene-copy h3 { font-size: 25px; }
}
@media (max-width: 650px) {
  .hero-art .terminal { top: 28%; }
  .hero-art .art-label { top: 8%; }
  .film-control { min-width: 36px; min-height: 36px; top: 4.8%; }
  .business-scenes { padding-top: 48px; }
  .scenes-heading { grid-template-columns: 1fr; gap: 16px; }
  .scenes-heading .eyebrow { grid-column: auto; }
  .scenes-heading h2 { font-size: 33px; }
  .scenes-heading > p:last-child { justify-self: start; font-size: 13px; }
  .scene-grid { grid-template-columns: 1fr; gap: 18px; }
  .scene-card { height: 300px; }
  .scene-copy h3 { font-size: 28px; }
  .scene-type { font-size: 8px; }
  .scene-credits { text-align: left; font-size: 7px; }
}
@media (prefers-reduced-motion: reduce) {
  .floating-report, .hero-copy { animation: none; }
  .scene-card img, .scene-copy svg { transition: none; }
}
