.hero-visual {
  display: grid;
  place-items: center;
}

.phone-shot {
  width: min(78%, 460px);
  max-height: 74vh;
  object-fit: contain;
  filter: drop-shadow(0 32px 70px rgba(0, 0, 0, 0.48));
}

.phone-shot.compact {
  width: min(74%, 390px);
  justify-self: center;
}

.feature-video,
.video-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.feature-video {
  min-height: min(70vh, 640px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.creator-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.creator-grid img {
  width: 100%;
  aspect-ratio: 16 / 8.1;
  object-fit: cover;
  object-position: left center;
  background: #fff;
}

.chart-card {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(145deg, rgba(19, 43, 74, 0.95), rgba(13, 35, 64, 0.92));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.chart-card img {
  width: 100%;
  display: block;
  background: #fff;
}

.chart-card figcaption {
  margin-top: 12px;
  color: var(--soft);
  font-size: 14px;
}

.video-grid {
  height: min(72vh, 660px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.video-grid video {
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.backstage-grid {
  height: min(60vh, 560px);
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 14px;
}

.backstage-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.metric-wall .creator-grid {
  padding: 0;
  border: 0;
  background: transparent;
}

.ladder-logo {
  width: min(230px, 52vw);
  margin-bottom: 28px;
}

.funding-shot {
  grid-column: 1 / -1;
  width: 100%;
  padding: 24px;
  object-fit: contain;
  background: #fff;
}

.creator-grid.full {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ladder-lessons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ladder-lessons article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(145deg, rgba(19, 43, 74, 0.95), rgba(13, 35, 64, 0.92));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.ladder-lessons strong {
  display: block;
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 20px;
}

.ladder-lessons span {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.3;
}

.app-screens {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}

.app-screens img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.dual-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.view-toggle {
  display: flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.view-toggle button {
  min-width: 110px;
  border: 0;
  padding: 12px 16px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.view-toggle button.active {
  color: var(--bg);
  background: var(--lime);
}

.view-slider {
  position: relative;
  min-height: 54vh;
}

.view-panel {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(22px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.view-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.view-panel img {
  width: 100%;
  height: 100%;
  max-height: 58vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.view-panel figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 18px;
}

.social-shots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.social-shots img,
.dashboard-shot {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.dashboard-shot {
  justify-self: center;
}

@media (max-width: 900px) {
  .phone-shot {
    width: min(88%, 360px);
  }

  .feature-video,
  .video-grid,
  .backstage-grid {
    min-height: 520px;
    height: auto;
  }

  .creator-grid,
  .ladder-lessons,
  .video-grid,
  .backstage-grid,
  .app-screens,
  .dual-copy,
  .social-shots {
    grid-template-columns: 1fr;
  }

  .dual-copy {
    display: grid;
  }

  .view-slider {
    min-height: 380px;
  }

}
