.report-hero {
  position: relative;
  width: 100%;
  height: 100svh;
  background-color: var(--base-400);
}

.report-hero .container {
  display: flex;
}

.report-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
  height: 100%;
}

.report-hero-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.375rem;
}

.report-hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(15, 15, 15, 0.1) 0%,
    rgba(15, 15, 15, 0.05) 30%,
    rgba(15, 15, 15, 0.05) 70%,
    rgba(15, 15, 15, 0.1) 100%
  );
}

.report-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.75rem;
}

.report-header {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 2rem;
  text-align: center;
  color: var(--base-100);
}

.report-header h1,
.report-header .dsp {
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.85;
  color: var(--base-300);
}

.report-header .subheader {
  width: 100%;
  font-size: clamp(1.5rem, 3vw, 5rem);
  line-height: 1.25;
  color: var(--base-300);
}

.report-hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.report-hero-meta-left,
.report-hero-meta-right {
  display: flex;
  flex-direction: column;
  color: var(--base-100);
  opacity: 0.5;
}

.report-hero-meta-right {
  text-align: right;
}

.report-discovery,
.report-current-conditions {
  position: relative;
  width: 100%;
  padding: 15svh 0.75rem;
  background-color: var(--base-200);
  color: var(--base-500);
}

.report-copy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
}

.report-copy-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.report-copy-content p {
  max-width: 540px;
  opacity: 0.7;
}

.report-copy-content .button {
  margin-top: 1.5rem;
}

.report-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: var(--base-400);
}

div.pin-spacer:has(> .report-section) {
  background-color: var(--base-400);
}

.report-canvas {
  position: relative;
  display: grid;
  grid-template-rows: 100%;
  grid-template-columns: 100%;
  place-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.report-layer {
  position: relative;
  grid-area: 1 / 1 / -1 / -1;
  width: 100%;
  height: 100%;
}

.report-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.report-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.report-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(15, 15, 15, 0.8) 0%,
    rgba(15, 15, 15, 0.2) 30%,
    rgba(15, 15, 15, 0.2) 70%,
    rgba(15, 15, 15, 0.4) 100%
  );
  pointer-events: none;
}

.report-data-block {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 5;
}

.report-data-block p {
  color: var(--base-300);
}

.report-data-block p.mono {
  font-weight: 400;
}

.report-data-top-left {
  top: 25%;
  left: 25%;
}

.report-data-top-right {
  top: 30%;
  right: 10%;
}

.report-data-bottom-left {
  bottom: 20%;
  left: 20%;
}

.report-data-bottom-right {
  bottom: 15%;
  right: 10%;
}

.report-compass {
  grid-area: 1 / 1 / -1 / -1;
  width: 70vmin;
  height: 70vmin;
  transform-origin: center center;
  transform-box: fill-box;
  will-change: transform;
  pointer-events: none;
  z-index: 15;
}

.report-wiper-hand {
  position: relative;
  grid-area: 1 / 1 / -1 / -1;
  width: 2px;
  height: 150vmax;
  transform-origin: center center;
  pointer-events: none;
  z-index: 20;
}

.report-wiper-fixed {
  position: relative;
  grid-area: 1 / 1 / -1 / -1;
  width: 2px;
  height: 150vmax;
  transform: rotate(225deg);
  transform-origin: center center;
  pointer-events: none;
  z-index: 20;
}

.report-wiper-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--base-300);
}

.report-wiper-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--base-300);
  transform: translateX(-50%);
}

@media screen and (max-width: 1000px) {
  .report-hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }

  .report-header {
    padding: 0 1.5rem;
  }

  .report-hero-right {
    padding: 1rem 0.75rem;
  }

  .report-discovery,
  .report-current-conditions {
    padding: 10svh 0.75rem;
  }

  .report-copy-grid {
    grid-template-columns: 1fr;
  }

  .report-copy-empty {
    display: none;
  }

  .report-compass {
    width: 90vmin;
    height: 90vmin;
  }

  .report-data-block {
    display: none;
  }
}

/* Were <h5>s under the page <h1>. */
.report-copy-content h2 {
  font-size: clamp(3rem, 6vw, 6rem);
}
