.products-page .product-hero::after {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 222, 81, .22), transparent 68%);
}

.products-page .edu-header {
  width: min(960px, calc(100% - 48px));
}

.service-catalog {
  padding: 68px 0;
  border-top: 1px solid var(--black-6);
}

.service-catalog .edu-section__heading,
.service-catalog .edu-section__heading .sect-tag,
.service-catalog .edu-section__heading h2,
.service-catalog .edu-section__heading > p,
.product-section .edu-section__heading,
.product-section .edu-section__heading .sect-tag,
.product-section .edu-section__heading h2,
.product-section .edu-section__heading > p {
  position: relative;
  z-index: 2;
  opacity: 1 !important;
  visibility: visible !important;
}

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

.service-division {
  padding: 30px;
  scroll-margin-top: 100px;
}

.service-division__top {
  margin-bottom: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.service-division__number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #061009;
  background: var(--primary);
  font-family: monospace;
  font-size: 11px;
  font-weight: 800;
}

.service-division__count {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--black-50);
  background: var(--black-6);
  font-family: monospace;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-division__top,
.service-division__eyebrow,
.service-division h3,
.service-division__intro,
.service-list,
.service-division__action {
  position: relative;
  z-index: 2;
  opacity: 1 !important;
  visibility: visible !important;
}

.service-division__eyebrow {
  margin-bottom: 9px;
  color: var(--black-50);
  font-family: monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.service-division h3 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1;
}

.service-division__intro {
  min-height: 70px;
  margin-bottom: 28px;
  line-height: 1.55;
}

.service-list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--black-6);
}

.service-list li {
  min-height: 48px;
  padding-block: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--black-6);
  color: var(--black-72);
  font-size: 12px;
}

.service-list small {
  color: var(--black-40);
  font-family: monospace;
  font-size: 9px;
}

.service-division__action .text {
  padding-inline: 16px;
  white-space: nowrap;
}

.product-section {
  padding: 76px 0;
  border-top: 1px solid var(--black-6);
}

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

.product-card {
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 222, 81, .44);
}

.product-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
}

.product-card__media {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: #0c100d;
}

.product-card--featured .product-card__media {
  min-height: 520px;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform .6s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.035);
}

.product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .42), transparent 50%);
}

.product-status {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 18px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #061009;
  background: var(--primary);
  font-family: monospace;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card__body {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.product-card__meta,
.product-card__body h2,
.product-card__body > p,
.product-tags,
.product-card__footer {
  position: relative;
  z-index: 2;
  opacity: 1 !important;
  visibility: visible !important;
}

.product-card__meta {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--black-50);
  font-family: monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.product-card__body h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1;
}

.product-card__body > p {
  margin-bottom: 22px;
  line-height: 1.55;
}

.product-tags {
  margin-bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-tags span {
  padding: 7px 10px;
  border: 1px solid var(--black-6);
  border-radius: 999px;
  color: var(--black-56);
  background: var(--white-40);
  font-size: 10px;
}

.product-card__footer {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--black-6);
}

.product-card__footer > div {
  display: grid;
  gap: 3px;
}

.product-card__footer small {
  color: var(--black-40);
  font-family: monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.product-card__footer strong {
  color: var(--black-72);
  font-size: 11px;
  font-weight: 600;
}

.product-card__footer .tf-btn-action .text {
  padding-inline: 15px;
  white-space: nowrap;
}

.product-process {
  padding: 76px 0;
  color: var(--white);
  background: #070a08;
}

.product-process .sect-tag {
  color: var(--white-72);
  border-color: var(--white-8);
  background: rgba(255, 255, 255, .06);
}

.product-process {
  position: relative;
  z-index: 1;
}

.product-process .edu-section__heading,
.product-process .edu-section__heading .sect-tag,
.product-process .edu-section__heading h2 {
  position: relative;
  z-index: 2;
  opacity: 1 !important;
  visibility: visible !important;
}

.product-process .edu-section__heading {
  margin-bottom: 50px;
}

.process-marquee {
  width: 100%;
  overflow: hidden;
  padding: 12px 0 4px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.process-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: process-loop-ltr 26s linear infinite;
}

.process-marquee:hover .process-track {
  animation-play-state: paused;
}

.process-sequence {
  display: flex;
  align-items: flex-start;
  padding-right: 54px;
}

.process-step {
  width: 190px;
  flex: 0 0 190px;
  text-align: center;
}

.process-step + .process-step {
  margin-left: -24px;
}

.process-hex {
  position: relative;
  display: grid;
  width: 190px;
  height: 166px;
  place-items: center;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  background: var(--primary);
}

.process-hex::before {
  position: absolute;
  inset: 8px;
  content: "";
  clip-path: inherit;
  background: #0b0f0c;
}

.process-step:nth-child(even) .process-hex {
  background: #8cff66;
}

.process-step:nth-child(3n) .process-hex {
  background: #b6ef5c;
}

.process-hex > div {
  position: relative;
  z-index: 1;
  width: 118px;
}

.process-step__icon {
  display: block;
  margin-bottom: 7px;
  color: var(--primary);
  font-size: 25px;
  line-height: 1;
}

.process-step h3 {
  margin: 0 0 5px;
  color: var(--white);
  font-size: 20px;
}

.process-step p {
  margin: 0;
  color: var(--white-56);
  font-size: 11px;
  line-height: 1.35;
}

.process-step > strong {
  position: relative;
  display: inline-block;
  margin-top: 12px;
  padding-bottom: 9px;
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
}

.process-step > strong::after {
  position: absolute;
  right: -18px;
  bottom: 0;
  left: -18px;
  height: 3px;
  content: "";
  border-radius: 99px;
  background: var(--primary);
}

@keyframes process-loop-ltr {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.product-cta {
  margin-top: 0;
}

.dark-mode .product-tags span {
  border-color: var(--white-8);
  background: rgba(255, 255, 255, .04);
}

.dark-mode .service-list,
.dark-mode .service-list li {
  border-color: var(--white-8);
}

@media (max-width: 991px) {
  .products-page .edu-header {
    width: min(900px, calc(100% - 30px));
  }
  .products-page .edu-header__nav {
    gap: 9px;
  }
  .product-card--featured {
    grid-template-columns: 1fr;
  }
  .product-card--featured .product-card__media {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .products-page .edu-header {
    left: 15px;
    right: 15px;
    width: auto;
  }
  .products-page .edu-header__nav a:nth-child(n+4) {
    display: inline-flex;
  }
  .service-catalog,
  .product-section,
  .product-process {
    padding: 52px 0;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .service-catalog__grid {
    grid-template-columns: 1fr;
  }
  .service-division {
    padding: 24px;
  }
  .service-division__top {
    margin-bottom: 42px;
  }
  .service-division__intro {
    min-height: 0;
  }
  .product-card--featured {
    grid-column: auto;
  }
  .product-card__media,
  .product-card--featured .product-card__media {
    min-height: 290px;
  }
  .product-card__body {
    padding: 24px;
  }
  .product-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .process-step {
    width: 162px;
    flex-basis: 162px;
  }
  .process-step + .process-step {
    margin-left: -18px;
  }
  .process-hex {
    width: 162px;
    height: 142px;
  }
  .process-hex > div {
    width: 104px;
  }
  .process-step h3 {
    font-size: 17px;
  }
  .process-track {
    animation-duration: 22s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-card,
  .product-card__media img,
  .process-track {
    transition: none;
    animation: none;
  }
}
