.la-report-fan-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 110px) 0;
  overflow: visible;
}

.la-report-fan-copy {
  max-width: 560px;
}

.la-report-fan-eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9fb3d1;
}

.la-report-fan-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: #ffffff;
}

.la-report-fan-copy p {
  margin: 0;
  max-width: 46rem;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.76);
}

.la-report-fan {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  height: clamp(620px, 68vw, 860px);
  margin-left: clamp(-320px, -22vw, -140px);
  margin-right: auto;
  margin-top: clamp(-80px, -6vw, -30px);
  isolation: isolate;
}

.la-report-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(300px, 34vw, 480px);
  aspect-ratio: 8.5 / 11;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform-origin: 50% 92%;
  transition:
    transform 240ms ease,
    filter 240ms ease,
    z-index 0s;
}

.la-report-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 26px 65px rgba(0, 0, 0, 0.42),
    0 5px 18px rgba(0, 0, 0, 0.28);
}

.la-report-card-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(8, 13, 24, 0.82);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

/* Base fan stack */
.la-report-card-1 {
  z-index: 1;
  transform: translate(-76%, -49%) rotate(-16deg);
}

.la-report-card-2 {
  z-index: 2;
  transform: translate(-59%, -52%) rotate(-5deg);
}

.la-report-card-3 {
  z-index: 3;
  transform: translate(-41%, -52%) rotate(6deg);
}

.la-report-card-4 {
  z-index: 4;
  transform: translate(-24%, -49%) rotate(17deg);
}

/* Hover: bring page to top */
.la-report-card:hover,
.la-report-card:focus-visible {
  z-index: 30;
  filter: brightness(1.045) contrast(1.02);
  outline: none;
}

.la-report-card:hover .la-report-card-label,
.la-report-card:focus-visible .la-report-card-label {
  opacity: 1;
  transform: translateY(0);
}

.la-report-card-1:hover,
.la-report-card-1:focus-visible {
  transform: translate(-76%, -56%) rotate(-16deg) scale(1.07);
}

.la-report-card-2:hover,
.la-report-card-2:focus-visible {
  transform: translate(-59%, -59%) rotate(-5deg) scale(1.07);
}

.la-report-card-3:hover,
.la-report-card-3:focus-visible {
  transform: translate(-41%, -59%) rotate(6deg) scale(1.07);
}

.la-report-card-4:hover,
.la-report-card-4:focus-visible {
  transform: translate(-24%, -56%) rotate(17deg) scale(1.07);
}

/* PDF modal */
.la-report-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.la-report-modal.is-open {
  display: block;
}

.la-report-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 18, 0.82);
  backdrop-filter: blur(5px);
}

.la-report-modal-panel {
  position: absolute;
  inset: 4vh 4vw;
  overflow: hidden;
  border-radius: 16px;
  background: #101827;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.58);
}

.la-report-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #111827;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
}

.la-report-modal-close:hover,
.la-report-modal-close:focus-visible {
  background: #ffffff;
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
}

.la-report-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #ffffff;
}

body.la-report-modal-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .la-report-fan-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .la-report-fan-copy {
    max-width: 680px;
  }

  .la-report-fan {
    height: 500px;
  }
}

@media (max-width: 620px) {
  .la-report-fan {
    height: 410px;
  }

  .la-report-card {
    width: 205px;
  }

  .la-report-card-1 {
    transform: translate(-78%, -48%) rotate(-14deg);
  }

  .la-report-card-2 {
    transform: translate(-61%, -51%) rotate(-4deg);
  }

  .la-report-card-3 {
    transform: translate(-42%, -51%) rotate(5deg);
  }

  .la-report-card-4 {
    transform: translate(-25%, -48%) rotate(15deg);
  }

  .la-report-card-1:hover,
  .la-report-card-1:focus-visible {
    transform: translate(-78%, -55%) rotate(-14deg) scale(1.055);
  }

  .la-report-card-2:hover,
  .la-report-card-2:focus-visible {
    transform: translate(-61%, -58%) rotate(-4deg) scale(1.055);
  }

  .la-report-card-3:hover,
  .la-report-card-3:focus-visible {
    transform: translate(-42%, -58%) rotate(5deg) scale(1.055);
  }

  .la-report-card-4:hover,
  .la-report-card-4:focus-visible {
    transform: translate(-25%, -55%) rotate(15deg) scale(1.055);
  }

  .la-report-modal-panel {
    inset: 3vh 3vw;
    border-radius: 12px;
  }
}
