.page-products {
  position: relative;
}

.page-products .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 22px 0 6px;
  font-size: 13px;
  color: var(--c-muted);
}

.page-products .breadcrumb__item {
  color: var(--c-muted);
  text-decoration: none;
  transition: color 0.25s var(--ease-out);
}

.page-products .breadcrumb__item:hover {
  color: var(--c-cyan-soft);
}

.page-products .breadcrumb__item[aria-current="page"] {
  color: var(--c-text);
  pointer-events: none;
}

.page-products .page-head {
  padding: 18px 0 28px;
}

.page-products .page-head__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-cyan);
  margin-bottom: 10px;
}

.page-products .display-title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}

.page-products .page-head__lede {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-muted);
}

.page-products .entry-gate {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 520px;
  margin: 20px 0 64px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-cyan);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 106, 0, 0.25), transparent 42%),
    linear-gradient(145deg, rgba(74, 43, 107, 0.88), rgba(27, 15, 46, 0.94));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.page-products .entry-gate__spark {
  position: absolute;
  top: 12%;
  right: 8%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 229, 233, 0.4), transparent 68%);
  filter: blur(2px);
  z-index: 1;
  pointer-events: none;
}

.page-products .entry-gate__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-products .entry-gate__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.page-products .entry-gate__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px 22px 34px;
  background: linear-gradient(to top, rgba(27, 15, 46, 0.96) 0%, rgba(27, 15, 46, 0.35) 78%, transparent 100%);
}

.page-products .entry-gate__title {
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 14px 0 10px;
}

.page-products .entry-gate__desc {
  max-width: 580px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-muted);
}

.page-products .entry-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 20px;
}

.page-products .entry-gate__meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: var(--c-muted);
}

.page-products .entry-gate__meta strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 600;
  color: var(--c-orange);
  line-height: 1.2;
}

.page-products .category-map {
  position: relative;
  margin: 56px 0 72px;
  padding: 12px 0 8px;
}

.page-products .category-map__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  pointer-events: none;
  border-radius: var(--radius-lg);
}

.page-products .section-head {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.page-products .section-head__index {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--c-orange-soft);
  margin-bottom: 8px;
}

.page-products .section-head__title {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 8px;
}

.page-products .section-head__copy {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-muted);
}

.page-products .category-strip {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 12px 4px 24px;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.page-products .category-tile {
  position: relative;
  flex: 0 0 232px;
  scroll-snap-align: start;
  padding: 18px 16px 16px;
  border-radius: var(--radius-md);
  background: var(--surface-glass);
  border: 1px solid var(--line-glass);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px rgba(0, 194, 209, 0.08);
  transition: transform 0.32s var(--ease-out), border-color 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out);
  transform: perspective(700px) rotateY(-5deg) rotateZ(-1.5deg);
}

.page-products .category-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(0, 194, 209, 0.5), transparent 40%, rgba(255, 106, 0, 0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.page-products .category-tile:nth-child(even) {
  transform: perspective(700px) rotateY(5deg) rotateZ(2deg);
}

.page-products .category-tile:nth-child(3n) {
  transform: perspective(700px) rotateY(-6deg) rotateZ(3deg);
}

.page-products .category-tile:hover {
  transform: perspective(700px) rotateY(0deg) rotateZ(0deg) translateY(-5px);
  border-color: var(--line-cyan);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(0, 194, 209, 0.2);
}

.page-products .category-tile__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.page-products .category-tile__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-cyan);
}

.page-products .category-tile__icon {
  width: 40px;
  height: 40px;
  padding: 9px;
  color: var(--c-orange-soft);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 106, 0, 0.16), rgba(0, 194, 209, 0.1));
  border: 1px solid rgba(255, 158, 94, 0.22);
}

.page-products .category-tile__name {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 6px;
  color: var(--c-text);
}

.page-products .category-tile__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-muted);
  margin: 0 0 12px;
  min-height: 88px;
}

.page-products .category-tile__link {
  display: inline-block;
  font-size: 14px;
  color: var(--c-cyan-soft);
  text-decoration: none;
  transition: color 0.25s var(--ease-out);
}

.page-products .category-tile__link:hover {
  color: var(--c-text);
}

.page-products .category-map__tip {
  position: relative;
  z-index: 1;
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--c-muted);
  text-align: center;
}

.page-products .app-download {
  margin: 0 0 64px;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(74, 43, 107, 0.55), rgba(27, 15, 46, 0.55));
  border: 1px solid var(--line-glass);
}

.page-products .app-download__grid {
  display: grid;
  gap: 26px;
  margin-top: 24px;
}

.page-products .app-download__copy ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.page-products .app-download__copy li {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line-glass);
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-muted);
}

.page-products .app-download__copy li::before {
  content: "→";
  color: var(--c-cyan);
  flex-shrink: 0;
}

.page-products .app-download__note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--c-muted);
}

.page-products .app-download__note a {
  color: var(--c-cyan-soft);
  text-decoration: none;
}

.page-products .app-download__art {
  margin: 0;
  text-align: center;
}

.page-products .app-download__art figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--c-muted);
}

.page-products .media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-products .tech-experience {
  margin-bottom: 64px;
}

.page-products .tech-experience__grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-products .tech-experience__art {
  margin: 0;
}

.page-products .tech-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.page-products .tech-metric {
  padding: 16px 10px;
  border-radius: var(--radius-md);
  background: rgba(74, 43, 107, 0.45);
  border: 1px solid var(--line-glass);
  text-align: center;
}

.page-products .tech-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  font-style: italic;
  color: var(--c-orange);
  line-height: 1.2;
}

.page-products .tech-metric span {
  font-size: 13px;
  color: var(--c-muted);
}

.page-products .tech-experience__foot {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-muted);
}

.page-products .tech-experience__foot a {
  color: var(--c-cyan-soft);
  text-decoration: none;
}

.page-products .quick-support {
  position: relative;
  margin-bottom: 12px;
  padding: 36px 20px 32px;
  text-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-cyan);
  background: linear-gradient(160deg, rgba(74, 43, 107, 0.85), rgba(27, 15, 46, 0.92));
}

.page-products .quick-support__texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  pointer-events: none;
}

.page-products .quick-support__inner {
  position: relative;
  z-index: 1;
}

.page-products .quick-support .section-head__copy {
  margin-left: auto;
  margin-right: auto;
}

.page-products .quick-support__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 18px 0 16px;
}

.page-products .quick-support__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--c-cyan-soft);
}

.page-products .quick-support__note {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-muted);
}

@media (min-width: 900px) {
  .page-products .page-head {
    padding: 36px 0 32px;
  }

  .page-products .entry-gate {
    align-items: center;
    min-height: 520px;
  }

  .page-products .entry-gate__inner {
    padding: 60px 64px;
    background: linear-gradient(90deg, rgba(27, 15, 46, 0.94) 0%, rgba(27, 15, 46, 0.55) 62%, transparent 100%);
  }

  .page-products .entry-gate__visual img {
    opacity: 0.6;
  }

  .page-products .category-map {
    padding-top: 20px;
  }

  .page-products .category-strip {
    gap: 20px;
    padding-bottom: 30px;
  }

  .page-products .category-tile {
    flex-basis: 250px;
  }

  .page-products .app-download {
    padding: 40px 44px;
  }

  .page-products .app-download__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
    align-items: center;
  }

  .page-products .tech-experience__grid {
    grid-template-columns: 400px 1fr;
    gap: 56px;
  }

  .page-products .tech-metrics {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-products .quick-support {
    padding: 48px 44px 44px;
  }
}
