.hero-media {
  background-image: url('assets/images/home-cinema-luxo-hero.png');
  background-position: center center;
}

.technologies {
  background: #f8fafb;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.technologies-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  margin-bottom: 58px;
}

.technologies-heading h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.08;
  letter-spacing: -.04em;
  margin: 18px 0 0;
}

.technologies-heading h2 span {
  color: var(--teal);
  font-weight: 500;
}

.technologies-heading > p {
  max-width: 390px;
  margin: 0;
  color: var(--gray);
}

.technology-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--navy-2);
  border-block: 1px solid rgba(255, 255, 255, .1);
}

.technology-marquee::before,
.technology-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(12vw, 150px);
  pointer-events: none;
}

.technology-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy-2), transparent);
}

.technology-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--navy-2), transparent);
}

.technology-track {
  display: flex;
  width: max-content;
  animation: technology-flow 34s linear infinite;
  will-change: transform;
}

.technology-marquee:hover .technology-track {
  animation-play-state: paused;
}

.technology-set {
  display: flex;
  flex-shrink: 0;
}

.technology-set > span {
  min-width: 245px;
  padding: 29px 34px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, .11);
}

.technology-set b,
.technology-set small {
  display: block;
}

.technology-set b {
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: -.02em;
}

.technology-set small {
  margin-top: 3px;
  color: var(--teal-light);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
}

@keyframes technology-flow {
  to { transform: translateX(-50%); }
}

.technology-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 58px;
  background: var(--line);
}

.technology-benefits article {
  background: #f8fafb;
  padding: 12px 34px 4px 0;
}

.technology-benefits article + article {
  padding-left: 34px;
}

.technology-benefits span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.technology-benefits h3 {
  font-family: var(--serif);
  font-size: 21px;
  margin: 10px 0 7px;
}

.technology-benefits p {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

.technology-benefits article:nth-child(2) { transition-delay: .1s; }
.technology-benefits article:nth-child(3) { transition-delay: .2s; }

@media (max-width: 900px) {
  .technologies-heading { display: block; }
  .technologies-heading > p { margin-top: 20px; }
  .technology-benefits { grid-template-columns: 1fr; }
  .technology-benefits article,
  .technology-benefits article + article {
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (prefers-reduced-motion: reduce) {
  .technology-track { animation: none; }
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
