.nav-forge {
  color: var(--gold, #c99b47) !important;
}

.hero-actions {
  flex-wrap: wrap;
}

.forge-entry {
  border-color: rgba(201, 155, 71, .72) !important;
  color: #f1ca78 !important;
}

.services-link {
  align-self: center;
  color: rgba(255, 255, 255, .52);
  font: 700 10px/1.2 "Manrope", sans-serif;
  letter-spacing: .16em;
  text-decoration: none;
  transition: color .2s ease;
}

.services-link:hover {
  color: #fff;
}

.forgelab-promo {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(460px, 1.14fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
  min-height: 720px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  background:
    radial-gradient(circle at 82% 50%, rgba(199, 148, 54, .13), transparent 34%),
    radial-gradient(circle at 10% 100%, rgba(199, 25, 31, .12), transparent 31%),
    #080808;
}

.forgelab-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255, 255, 255, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .11) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 3%, #000 52%, transparent 100%);
}

.forge-orbit {
  position: absolute;
  top: 50%;
  right: -10vw;
  z-index: -1;
  width: min(60vw, 900px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  border: 1px solid rgba(201, 155, 71, .18);
  border-radius: 50%;
}

.forge-orbit::before,
.forge-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
}

.forge-orbit::before { inset: 10%; }
.forge-orbit::after { inset: 27%; }

.forge-orbit span {
  position: absolute;
  inset: 49% -2%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c99b47, transparent);
  transform: rotate(-13deg);
}

.forge-orbit i {
  position: absolute;
  top: 15%;
  left: 9%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e21c25;
  box-shadow: 0 0 26px #e21c25;
}

.forge-promo-copy {
  position: relative;
  z-index: 2;
}

.forge-kicker {
  margin: 42px 0 14px;
  color: #c99b47;
  font: 800 11px/1.2 "Manrope", sans-serif;
  letter-spacing: .24em;
}

.forge-promo-copy h2 {
  margin-bottom: 26px;
}

.forge-promo-copy > p:not(.forge-kicker) {
  max-width: 570px;
  color: rgba(255, 255, 255, .62);
  font: 400 15px/1.8 "Manrope", sans-serif;
}

.forge-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 590px;
  margin: 34px 0;
  border: 1px solid rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .09);
}

.forge-steps span {
  padding: 16px 14px;
  background: rgba(10, 10, 10, .9);
  color: rgba(255, 255, 255, .72);
  font: 700 9px/1.4 "Manrope", sans-serif;
  letter-spacing: .1em;
  white-space: nowrap;
}

.forge-steps b {
  display: block;
  margin-bottom: 6px;
  color: #c99b47;
  font-size: 9px;
}

.forge-launch {
  display: inline-flex;
  min-width: 240px;
  justify-content: space-between;
}

.forge-preview {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(201, 155, 71, .25);
  color: #fff;
  text-decoration: none;
  background: #050505;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .6);
  transform: perspective(1200px) rotateY(-4deg);
  transition: border-color .3s ease, transform .3s ease;
}

.forge-preview:hover {
  border-color: rgba(241, 202, 120, .7);
  transform: perspective(1200px) rotateY(0deg) translateY(-5px);
}

.forge-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), transparent 42%, rgba(0, 0, 0, .82));
  pointer-events: none;
}

.forge-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(1.08) saturate(.85);
  transition: transform .5s ease;
}

.forge-preview:hover img {
  transform: scale(1.025);
}

.forge-preview-top,
.forge-preview-bottom {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font: 700 9px/1.2 "Manrope", sans-serif;
  letter-spacing: .14em;
}

.forge-preview-top {
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(5, 5, 5, .64);
}

.forge-preview-top span { color: #c99b47; }
.forge-preview-top b { color: #fff; }

.forge-preview-bottom {
  bottom: 0;
  justify-content: flex-start;
  gap: 11px;
  color: rgba(255, 255, 255, .68);
}

.forge-preview-bottom i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c99b47;
}

@media (max-width: 980px) {
  .forgelab-promo {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .forge-preview {
    width: 100%;
    min-height: 360px;
    transform: none;
  }

  .forge-orbit {
    top: auto;
    right: -35vw;
    bottom: -25vw;
    width: 110vw;
    transform: none;
  }
}

@media (max-width: 640px) {
  .services-link {
    width: 100%;
    padding-top: 4px;
  }

  .forge-kicker {
    margin-top: 28px;
  }

  .forge-steps {
    grid-template-columns: 1fr;
  }

  .forge-preview {
    min-height: 270px;
    aspect-ratio: 4 / 3;
  }

  .forge-preview-top,
  .forge-preview-bottom {
    padding: 13px;
    font-size: 8px;
  }
}
