.pc-journey-deck {
  --pcj-bg: #000;
  --pcj-text: #fff;
  --pcj-muted: rgba(255, 255, 255, 0.68);
  --pcj-subtle: rgba(255, 255, 255, 0.45);
  --pcj-line: rgba(255, 255, 255, 0.12);
  --pcj-accent: #dfff63;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  display: block;
  overflow: clip;
  background: var(--pcj-bg);
  color: var(--pcj-text);
  font-family: inherit;
  visibility: visible;
  opacity: 1;
  isolation: isolate;
}

.pc-journey-deck *,
.pc-journey-deck *::before,
.pc-journey-deck *::after {
  box-sizing: border-box;
}

.pcj-intro {
  min-height: 92svh;
  display: flex;
  align-items: center;
  padding: clamp(90px, 10vh, 140px) 0 clamp(90px, 12vh, 160px);
  background: var(--pcj-bg);
}

.pcj-intro-inner,
.pcj-stage {
  width: min(1640px, calc(100vw - 96px));
  margin-inline: auto;
}

.pcj-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 34px;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--pcj-accent);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.pcj-intro h2 {
  max-width: 1050px;
  margin: 0;
  color: var(--pcj-text);
  font-size: clamp(50px, 6.6vw, 118px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
}

.pcj-intro .pcj-intro-copy {
  max-width: 720px;
  margin: clamp(52px, 6vh, 72px) 0 0;
  color: var(--pcj-muted);
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.5;
}

.pcj-story-block {
  max-width: 980px;
  margin: clamp(66px, 7vh, 96px) auto 0;
  padding: clamp(34px, 4vw, 56px) clamp(24px, 4vw, 54px);
  border: 1px solid var(--pcj-line);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.pcj-story-eyebrow {
  margin-bottom: 24px;
  color: var(--pcj-accent);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pcj-story-text p {
  max-width: 900px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.12vw, 20px);
  line-height: 1.74;
}

.pcj-story-text p:last-child {
  margin-bottom: 0;
}

.pcj-story-more {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.75s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.42s ease, margin-top 0.42s ease;
}

.pcj-story-block[data-expanded="true"] .pcj-story-more {
  margin-top: 20px;
  opacity: 1;
}

.pcj-read-more {
  min-height: 52px;
  margin-top: 30px;
  padding: 10px 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: transparent;
  color: var(--pcj-accent);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.pcj-read-more:hover,
.pcj-read-more:focus-visible {
  border-color: var(--pcj-accent);
  background: var(--pcj-accent);
  color: #000;
  outline: none;
  transform: translateY(-2px);
}

.pcj-read-more-close,
.pcj-story-block[data-expanded="true"] .pcj-read-more-open {
  display: none;
}

.pcj-story-block[data-expanded="true"] .pcj-read-more-close {
  display: inline;
}

.pcj-animation {
  position: relative;
  display: block;
  background: var(--pcj-bg);
  visibility: visible;
  opacity: 1;
}

.pcj-pin {
  position: relative;
  min-height: 760px;
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--pcj-bg);
}

.pcj-stage {
  height: clamp(500px, 66vh, 720px);
  display: grid;
  grid-template-columns: minmax(440px, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(44px, 5.5vw, 98px);
  position: relative;
  z-index: 20;
}

.pcj-copy-panel {
  height: 100%;
  min-width: 0;
  position: relative;
  z-index: 80;
  background: var(--pcj-bg);
}

.pcj-copy-item {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(22px);
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s ease;
  pointer-events: none;
}

.pcj-copy-item.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.pcj-year {
  margin-bottom: 24px;
  color: var(--pcj-accent);
  font-size: clamp(64px, 6.4vw, 118px);
  font-weight: 700;
  line-height: 0.78;
}

.pcj-label {
  margin-bottom: 18px;
  color: var(--pcj-subtle);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pcj-copy-item h3 {
  max-width: 620px;
  margin: 0 0 22px;
  color: var(--pcj-text);
  font-size: clamp(28px, 2.3vw, 44px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.pcj-copy-item p {
  max-width: 720px;
  margin: 0;
  color: var(--pcj-muted);
  font-size: clamp(15px, 0.96vw, 17px);
  line-height: 1.62;
}

.pcj-media-deck {
  height: 100%;
  position: relative;
  perspective: 2200px;
  transform-style: preserve-3d;
}

.pcj-media-card {
  --pcj-base-y: 0px;
  --pcj-base-z: 0px;
  --pcj-progress-y: 0px;
  --pcj-progress-z: 0px;
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  background: #101010;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
  transform: translate3d(0, calc(var(--pcj-base-y) + var(--pcj-progress-y)), calc(var(--pcj-base-z) + var(--pcj-progress-z)));
  transform-style: preserve-3d;
  will-change: transform, top;
}

.pcj-media-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
}

.pcj-media-card figcaption {
  position: absolute;
  left: 30px;
  bottom: 30px;
  min-height: 58px;
  padding: 10px 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--pcj-accent);
  color: #000;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.pcj-scroll {
  position: absolute;
  right: 34px;
  top: 50%;
  z-index: 90;
  color: rgba(255, 255, 255, 0.32);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.22em;
  transform: translateY(-50%) rotate(90deg);
}

.pcj-no-gsap .pcj-pin {
  height: auto;
  padding-block: 90px;
}

.pcj-no-gsap .pcj-stage {
  height: auto;
  grid-template-columns: 1fr;
}

.pcj-no-gsap .pcj-copy-panel,
.pcj-no-gsap .pcj-media-deck {
  height: auto;
}

.pcj-no-gsap .pcj-copy-item,
.pcj-no-gsap .pcj-media-card {
  position: relative;
  inset: auto;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.pcj-no-gsap .pcj-copy-item {
  padding-block: 44px;
}

.pcj-no-gsap .pcj-media-card {
  min-height: 320px;
  margin-bottom: 24px;
}

@media (min-width: 1025px) {
  .pcj-story-block {
    max-width: 1120px;
    padding: clamp(48px, 4.4vw, 76px) clamp(54px, 5.8vw, 92px);
    border-radius: 28px;
  }

  .pcj-story-eyebrow {
    margin-bottom: 34px;
    font-size: 14px;
  }

  .pcj-story-text p {
    max-width: 980px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(22px, 1.52vw, 30px);
    line-height: 1.48;
  }

  .pcj-read-more {
    min-height: 58px;
    margin-top: 40px;
    padding-inline: 32px;
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .pcj-intro {
    min-height: auto;
    padding: 82px 0 92px;
  }

  .pcj-intro-inner,
  .pcj-stage {
    width: min(100%, calc(100vw - 44px));
  }

  .pcj-intro h2 {
    font-size: clamp(42px, 8vw, 74px);
  }

  .pcj-intro .pcj-intro-copy {
    margin-top: 44px;
  }

  .pcj-story-block {
    margin-top: 52px;
  }

  .pcj-pin {
    min-height: 900px;
    align-items: flex-start;
    padding-top: clamp(88px, 11vh, 118px);
  }

  .pcj-stage {
    height: min(790px, calc(100svh - 96px));
    min-height: 700px;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 28px;
  }

  .pcj-copy-panel {
    height: 390px;
  }

  .pcj-media-deck {
    height: min(330px, 39svh);
  }

  .pcj-year {
    font-size: 66px;
  }

  .pcj-copy-item {
    justify-content: flex-start;
  }

  .pcj-copy-item h3 {
    font-size: 30px;
  }

  .pcj-media-card {
    border-radius: 24px;
  }

  .pcj-media-card img {
    object-fit: contain;
    background: #000;
    transform: none;
  }

  .pcj-scroll {
    display: none;
  }
}

@media (max-width: 560px) {
  .pcj-intro {
    padding: 74px 0 82px;
  }

  .pcj-kicker {
    margin-bottom: 28px;
  }

  .pcj-intro h2 {
    font-size: clamp(36px, 10.4vw, 44px);
  }

  .pcj-intro .pcj-intro-copy {
    margin-top: 36px;
    font-size: 16px;
  }

  .pcj-story-block {
    margin-top: 44px;
    padding: 30px 22px;
    border-radius: 20px;
  }

  .pcj-story-text p {
    margin-bottom: 18px;
    font-size: 15.5px;
    line-height: 1.68;
  }

  .pcj-pin {
    min-height: 820px;
    padding-top: 72px;
  }

  .pcj-stage {
    height: min(760px, calc(100svh - 68px));
    min-height: 720px;
    gap: 18px;
  }

  .pcj-copy-panel {
    height: 430px;
  }

  .pcj-media-deck {
    height: min(280px, 34svh);
  }

  .pcj-year {
    margin-bottom: 16px;
    font-size: clamp(48px, 15vw, 58px);
  }

  .pcj-label {
    margin-bottom: 13px;
    font-size: 11px;
  }

  .pcj-copy-item h3 {
    margin-bottom: 15px;
    font-size: clamp(23px, 7vw, 28px);
    line-height: 1.08;
  }

  .pcj-copy-item p {
    font-size: clamp(13.5px, 3.8vw, 15px);
    line-height: 1.5;
  }

  .pcj-media-card figcaption {
    left: 18px;
    bottom: 18px;
    min-height: 46px;
    padding-inline: 22px;
    font-size: 13px;
  }
}

@media (max-width: 374px) {
  .pcj-intro-inner,
  .pcj-stage {
    width: min(100%, calc(100vw - 32px));
  }

  .pcj-pin {
    padding-top: 62px;
  }

  .pcj-copy-panel {
    height: 450px;
  }

  .pcj-media-deck {
    height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-journey-deck *,
  .pc-journey-deck *::before,
  .pc-journey-deck *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
