.detail-footer {
  padding: 0;
  background: #171a22;
  color: #c6ccd1;
  font-size: 13px;
}

.detail-footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 46px clamp(22px, 8vw, 120px) 30px;
  display: grid;
  grid-template-columns: 1.45fr repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.detail-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: #fff;
  font-weight: 800;
  font-size: 17px;
}

.detail-footer-brand .detail-mark {
  flex: 0 0 auto;
}

.detail-footer-desc {
  max-width: 280px;
  margin: 0;
  color: #9da7ae;
  line-height: 1.7;
}

.detail-footer h3 {
  margin: 0 0 13px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.detail-footer a,
.detail-footer span {
  display: block;
  margin: 0 0 8px;
  color: #aeb8be;
  line-height: 1.45;
}

.detail-footer a:hover {
  color: var(--cyan);
}

.detail-footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 17px clamp(22px, 8vw, 120px) 22px;
  border-top: 1px solid #353b45;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #89949a;
  font-size: 12px;
}

.detail-footer-signature {
  color: #fff;
  font-weight: 800;
  letter-spacing: .08em;
}

/* Keep the transparent humanoid asset fully visible in the wide hero slot. */
.detail-hero img[src*="humanoid"] {
  object-fit: contain;
  object-position: center;
  height: 300px;
}

.detail-feature-image[src*="humanoid"] {
  object-fit: contain;
  object-position: center;
}

@media (max-width: 900px) {
  .detail-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .detail-footer-desc {
    max-width: 560px;
  }
}

@media (max-width: 560px) {
  .detail-footer-grid {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .detail-footer-grid > div:first-child {
    grid-column: auto;
  }

  .detail-footer-bottom {
    flex-direction: column;
    gap: 6px;
    padding-top: 15px;
  }
}

@media (max-width: 760px) {
  .detail-hero img[src*="humanoid"] {
    height: 260px;
  }
}
