.batch-page {
  --batch-mint: #58edc2;
  --batch-blue: #57bfff;
}

.batch-hero {
  padding: clamp(3rem, 7vw, 7rem) 0 clamp(4.5rem, 8vw, 8rem);
}

.batch-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.batch-hero h1 {
  max-width: 800px;
  margin: 1.15rem 0 1.4rem;
  font-size: clamp(3rem, 6vw, 6.3rem);
  line-height: .94;
  letter-spacing: -.06em;
}

.batch-hero__lead {
  color: #eff7ff;
  font-size: clamp(1.12rem, 1.7vw, 1.4rem);
}

.batch-hero__copy p {
  max-width: 710px;
}

.batch-hero__text-link {
  display: inline-flex;
  gap: .5rem;
  margin-top: 1.1rem;
  color: var(--batch-mint);
  font-weight: 800;
}

.batch-hero__visual {
  overflow: hidden;
  margin: 0;
}

.batch-hero__bar {
  display: flex;
  gap: .4rem;
  align-items: center;
  min-height: 3rem;
  padding: .7rem 1rem;
}

.batch-hero__bar span {
  width: .62rem;
  height: .62rem;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}

.batch-hero__bar b {
  margin-left: auto;
  color: #dbe8f5;
  font-size: .82rem;
}

.batch-hero__visual > img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #06101c;
}

.batch-hero__visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  color: #91a6b9;
  font-size: .85rem;
}

.batch-hero__visual figcaption b {
  color: #e7f1fa;
}

.batch-queue {
  max-width: 1120px;
  margin: 0 auto 2.5rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.batch-queue__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.batch-queue__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
}

.batch-queue figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(180,204,226,.14);
  border-radius: .9rem;
  background: rgba(255,255,255,.035);
}

.batch-queue img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.batch-queue figcaption {
  display: flex;
  justify-content: space-between;
  padding: .7rem .8rem;
  color: #dce7f1;
  font-size: .84rem;
}

.batch-queue figcaption span {
  color: var(--batch-mint);
}

.batch-workflow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .7rem;
  margin-bottom: 2.5rem;
}

.batch-workflow div {
  position: relative;
  display: grid;
  min-height: 116px;
  align-content: center;
  gap: .4rem;
  padding: 1rem;
  border: 1px solid rgba(180,204,226,.15);
  border-radius: 1rem;
  background: rgba(11,26,40,.74);
  text-align: center;
}

.batch-workflow div:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -.65rem;
  color: var(--batch-mint);
  content: "→";
  translate: 50% -50%;
}

.batch-workflow span {
  color: var(--batch-mint);
  font-size: .76rem;
  font-weight: 900;
}

.batch-workflow strong {
  font-size: .92rem;
}

.batch-compare-card {
  max-width: 1120px;
  margin: 0 auto 2.5rem;
  padding: 1rem;
}

.batch-image-compare {
  aspect-ratio: 3 / 2;
}

.batch-image-compare img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1100px) {
  .batch-hero__grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .batch-queue__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .batch-workflow {
    grid-template-columns: 1fr;
  }

  .batch-workflow div:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -.6rem;
    rotate: 90deg;
  }
}

@media (max-width: 560px) {
  .batch-hero {
    padding-top: 2rem;
  }

  .batch-hero h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .batch-hero__visual figcaption {
    flex-direction: column;
    gap: .25rem;
  }

  .batch-queue__top {
    flex-direction: column;
  }
}
