.render-agent .hero {
  padding-block: clamp(62px, 8vw, 96px);
}

.render-agent .hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
}

.render-agent .hero-image {
  aspect-ratio: 16 / 10;
  object-position: center;
}

.render-agent .hero-note {
  max-width: 250px;
}

.render-main-result {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.render-main-result .compare {
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
}

.render-credit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 10px;
  margin-top: 12px;
  padding: 11px 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #c8c5bf;
  font-size: .78rem;
  line-height: 1.45;
}

.render-credit a {
  color: var(--orange-2);
  font-weight: 850;
  text-decoration: none;
  text-underline-offset: 3px;
}

.render-credit a:hover {
  text-decoration: underline;
}

.render-credit-treatment {
  flex-basis: 100%;
  color: var(--muted);
}

.render-publication {
  display: inline-flex;
  margin-left: auto;
  color: #dad6cf;
  font-weight: 750;
  text-decoration: none;
}

.render-publication:hover {
  color: var(--orange-2);
}

.render-feature-grid,
.render-steps,
.render-program-grid {
  display: grid;
  gap: 16px;
}

.render-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.render-feature,
.render-step,
.render-program {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .025);
}

.render-feature strong,
.render-step strong,
.render-program strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: .94rem;
}

.render-feature p,
.render-step p,
.render-program p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.render-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: render-step;
}

.render-step {
  position: relative;
  padding-top: 58px;
}

.render-step::before {
  counter-increment: render-step;
  content: "0" counter(render-step);
  position: absolute;
  top: 18px;
  left: 22px;
  color: var(--orange-2);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.render-program-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.render-program.span-2 {
  grid-column: span 2;
}

.render-video-section {
  background: radial-gradient(circle at 28% 50%, rgba(97, 227, 161, .07), transparent 30rem);
}

.render-video-section .video-facade {
  width: min(100%, 390px);
  margin-inline: auto;
}

.render-video-section .video-poster img {
  filter: brightness(.8);
}

.render-video-section .video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .34), transparent 48%);
  pointer-events: none;
}

.render-video-section .play-mark {
  z-index: 2;
}

.render-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 42px);
}

.render-gallery .comparison-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.render-gallery .comparison-card h3 {
  margin-top: 14px;
}

.render-gallery .zoom-button {
  width: fit-content;
}

.render-limit {
  margin-top: 20px;
  padding: 20px 22px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 122, 26, .05);
  color: #d7d3cc;
}

.render-ecosystem {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.render-ecosystem .info-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.render-ecosystem .info-card p {
  margin: 0;
}

.render-offer {
  border-color: rgba(97, 227, 161, .27);
  background: linear-gradient(110deg, rgba(97, 227, 161, .075), rgba(255, 255, 255, .015));
}

.render-lightbox-credit {
  width: min(92vw, 980px);
  margin-top: 12px;
  padding: 11px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(15, 17, 21, .94);
  color: #d0ccc5;
  font-size: .82rem;
  text-align: center;
}

.render-lightbox-credit a {
  color: var(--orange-2);
  font-weight: 850;
}

@media (max-width: 1000px) {
  .render-agent .hero-grid,
  .render-main-result {
    grid-template-columns: 1fr;
  }

  .render-agent .hero-visual {
    max-width: 760px;
  }

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

@media (max-width: 780px) {
  .render-feature-grid,
  .render-program-grid,
  .render-ecosystem {
    grid-template-columns: 1fr;
  }

  .render-program.span-2 {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .render-gallery,
  .render-steps {
    grid-template-columns: 1fr;
  }

  .render-credit {
    align-items: flex-start;
    flex-direction: column;
  }

  .render-publication {
    margin-left: 0;
  }

  .render-video-section .video-facade {
    width: min(100%, 330px);
  }
}
