.pcx-legacy {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 8vw, 116px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 25%, rgba(250, 100, 1, .15), transparent 30%),
    radial-gradient(circle at 88% 70%, rgba(250, 100, 1, .08), transparent 28%),
    linear-gradient(145deg, #07090d 0%, #0b121c 52%, #05070a 100%);
}

.pcx-legacy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.pcx-legacy__intro {
  max-width: 820px;
  margin: 0 auto clamp(34px, 4.5vw, 58px);
  text-align: center;
}

.pcx-legacy__intro .pcx-eyebrow {
  justify-content: center;
  color: #fa6401;
}

.pcx-legacy__intro h2 {
  margin: 17px 0 18px !important;
  color: #fff !important;
  font-size: clamp(40px, 5.3vw, 72px) !important;
  line-height: .98 !important;
  letter-spacing: -.052em !important;
}

.pcx-legacy__intro > p {
  max-width: 670px;
  margin: 0 auto !important;
  color: #bec7d4 !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
}

.pcx-archive {
  max-width: 1040px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 30px;
  background: rgba(255,255,255,.035);
  box-shadow: 0 40px 100px rgba(0,0,0,.45), 0 0 0 8px rgba(255,255,255,.018);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pcx-archive__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 52px;
  padding: 0 22px;
  color: #8f9aaa;
  border-bottom: 1px solid rgba(255,255,255,.11);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.pcx-archive__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
}

.pcx-archive__status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fa6401;
  box-shadow: 0 0 0 5px rgba(250,100,1,.13);
}

.pcx-archive__paper {
  margin: clamp(10px, 1.5vw, 18px);
  padding: clamp(10px, 1.5vw, 17px);
  border-radius: 20px;
  background: linear-gradient(145deg, #eee9df, #d8d0c3);
  box-shadow: 0 18px 50px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.7);
}

.pcx-archive__viewport {
  overflow: hidden;
  padding: clamp(6px, .75vw, 9px);
  border-radius: 13px;
  background: #15120f;
  box-shadow: 0 8px 26px rgba(0,0,0,.3);
}

.pcx-archive__viewport video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 8px;
  background: #0b0907;
}

.pcx-archive__caption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 6px 2px;
  color: #20242a;
}

.pcx-archive__caption div {
  display: grid;
  gap: 4px;
}

.pcx-archive__caption strong {
  font-size: 15px;
  letter-spacing: -.01em;
}

.pcx-archive__caption span,
.pcx-archive__caption small {
  color: #666b72;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
}

.pcx-archive__caption small {
  white-space: nowrap;
  text-transform: uppercase;
}

.pcx-legacy__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1040px;
  margin: 24px auto 0;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  background: rgba(4,7,11,.56);
}

.pcx-legacy__facts span {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 19px 22px;
  color: #8f9aaa;
  font-size: 10px;
  letter-spacing: .04em;
}

.pcx-legacy__facts span + span {
  border-left: 1px solid rgba(255,255,255,.1);
}

.pcx-legacy__facts b {
  color: #fff;
  font-size: 17px;
  letter-spacing: -.015em;
}

@media (max-width: 760px) {
  .pcx-archive__bar span:not(:first-child) {
    display: none;
  }

  .pcx-legacy__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pcx-legacy__facts span:nth-child(3) {
    border-left: 0;
  }

  .pcx-legacy__facts span:nth-child(n+3) {
    border-top: 1px solid rgba(255,255,255,.1);
  }
}

@media (max-width: 620px) {
  .pcx-legacy {
    padding: 58px 0 64px;
  }

  .pcx-legacy .pcx-shell {
    width: min(calc(100% - 28px), 1180px);
  }

  .pcx-legacy__intro {
    margin-bottom: 28px;
    text-align: left;
  }

  .pcx-legacy__intro .pcx-eyebrow {
    justify-content: flex-start;
  }

  .pcx-legacy__intro h2 {
    margin: 14px 0 15px !important;
    font-size: clamp(35px, 11.5vw, 48px) !important;
    line-height: 1.02 !important;
  }

  .pcx-legacy__intro > p {
    font-size: 15px !important;
    line-height: 1.58 !important;
  }

  .pcx-archive {
    border-radius: 20px;
    box-shadow: 0 24px 58px rgba(0,0,0,.4), 0 0 0 5px rgba(255,255,255,.018);
  }

  .pcx-archive__bar {
    min-height: 43px;
    padding: 0 15px;
    font-size: 9px;
  }

  .pcx-archive__paper {
    margin: 7px;
    padding: 7px 7px 10px;
    border-radius: 15px;
  }

  .pcx-archive__viewport {
    padding: 4px;
    border-radius: 10px;
  }

  .pcx-archive__viewport video {
    border-radius: 6px;
  }

  .pcx-archive__caption {
    display: grid;
    gap: 9px;
    padding: 12px 5px 2px;
  }

  .pcx-archive__caption strong {
    font-size: 13px;
  }

  .pcx-archive__caption span,
  .pcx-archive__caption small {
    font-size: 8px;
  }

  .pcx-legacy__facts {
    margin-top: 14px;
    border-radius: 15px;
  }

  .pcx-legacy__facts span {
    padding: 14px 13px;
    font-size: 8px;
  }

  .pcx-legacy__facts b {
    font-size: 14px;
  }
}
