.vsl-section {
  align-items: center;
  background: #181b20;
  color: #fff8eb;
  display: grid;
  gap: 6vw;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.5fr);
  padding: 120px 8vw;
}

.vsl-copy {
  max-width: 490px;
}

.vsl-label {
  color: #ffad4b;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.vsl-copy h2 {
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.04;
}

.vsl-copy > p:not(.vsl-label) {
  color: #d7d3ca;
  font-size: 17px;
  line-height: 1.75;
  margin-top: 26px;
}

.vsl-copy > .fine {
  color: #aaa69e;
  font-size: 13px;
}

.vsl-copy .text-link {
  color: #fff8eb;
  display: inline-block;
  margin-top: 28px;
}

.vsl-stage {
  background: #0e1014;
  border-radius: 18px;
  box-shadow: 0 34px 80px #0008;
  overflow: hidden;
  position: relative;
  transform: rotate(0.7deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s;
}

.vsl-stage::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}

.vsl-stage:hover,
.vsl-stage:focus-within {
  box-shadow: 0 42px 100px #000a;
  transform: rotate(0) scale(1.012);
}

.vsl-stage video {
  background: #f2ead3;
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

@media (max-width: 800px) {
  .vsl-section {
    grid-template-columns: 1fr;
    padding: 76px 6vw;
  }

  .vsl-copy {
    max-width: 620px;
  }

  .vsl-stage {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vsl-stage {
    transition: none;
  }
}
