.watchline {
  margin: -0.6rem 0 1.2rem;
  color: var(--yellow);
  font: 800 clamp(1.05rem, 1.5vw, 1.45rem) var(--display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-wrap {
  position: relative;
  min-width: 0;
}

.product-stage {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 3.4% / 4.5%;
  background: #bf170f;
  box-shadow: 0 28px 90px #000b, 0 0 70px #d8482f24;
  transform: perspective(1200px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transition: transform 180ms ease;
}

.product-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-motion {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.eye-covers {
  fill: #fff9e9;
}

.pupils {
  fill: #171410;
  transform: translate(var(--eye-x, 0), var(--eye-y, 0));
  animation: chicken-look 6s ease-in-out infinite;
}

.difference {
  background: #cf3d28;
  color: #fff8e8;
}

.difference > header {
  align-items: end;
}

.difference > header > p {
  color: #ffe9cf;
}

.difference .eyebrow {
  color: #ffd34e;
}

.difference-grid {
  display: grid;
  width: var(--shell);
  margin: 4rem auto 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #ffffff42;
}

.difference-grid article {
  min-height: 330px;
  padding: 2.5rem;
  background: #b92f20;
}

.difference-grid b {
  color: #ffd34e;
  font: 800 0.8rem var(--display);
  letter-spacing: 0.14em;
}

.difference-grid h3 {
  margin-top: 2rem;
  font-size: clamp(2.2rem, 3.5vw, 4rem);
}

.difference-grid p {
  max-width: 620px;
  color: #ffe9dc;
}

@keyframes chicken-look {
  0%,
  12%,
  100% {
    transform: translate(0);
  }
  22%,
  38% {
    transform: translate(-7px, -2px);
  }
  48%,
  62% {
    transform: translate(6px, 3px);
  }
  72%,
  86% {
    transform: translate(0, -7px);
  }
}

@media (max-width: 980px) {
  .product-wrap {
    max-width: 900px;
    margin: auto;
  }
}

@media (max-width: 650px) {
  .difference-grid {
    grid-template-columns: 1fr;
  }

  .product-stage {
    border-radius: 12px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .pupils {
    animation: none !important;
  }

  .product-stage {
    transform: none !important;
  }
}
