.page-products {
  --page-gap: clamp(3.75rem, 8vw, 6.5rem);
  background: var(--c-bg);
}

.page-products .download-hero {
  position: relative;
  background: var(--c-deep);
  color: var(--c-white);
  overflow: hidden;
  padding-top: 1.5rem;
  padding-bottom: 4.25rem;
}

.page-products .download-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -6%;
  width: 58%;
  height: 82%;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.9), rgba(230, 57, 70, 0));
  clip-path: polygon(25% 0, 100% 0, 100% 72%, 0 100%);
  pointer-events: none;
}

.page-products .download-hero::after {
  content: '';
  position: absolute;
  left: 6%;
  bottom: 6%;
  width: 170px;
  height: 2px;
  background: var(--c-neon);
  box-shadow: 0 12px 0 var(--c-neon), 0 24px 0 rgba(6, 214, 160, 0.45);
  transform: rotate(-8deg);
  pointer-events: none;
}

.page-products .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2rem;
}

.page-products .breadcrumb a {
  color: var(--c-neon);
  text-decoration: none;
  transition: opacity 0.3s var(--ease);
}

.page-products .breadcrumb a:hover {
  opacity: 0.8;
}

.page-products .breadcrumb__sep {
  opacity: 0.5;
}

.page-products .hero-grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.page-products .hero-copy {
  position: relative;
  z-index: 2;
}

.page-products .hero-status {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--c-neon);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
}

.page-products .hero-status__text {
  white-space: nowrap;
}

.page-products .hero-copy h1 {
  margin: 1.1rem 0 1.25rem;
  font-family: var(--font-title);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.85rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.page-products .hero-lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.page-products .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.page-products .hero-actions .btn--primary {
  animation: page-products-pulse 2.6s var(--ease) infinite;
}

@keyframes page-products-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(230, 57, 70, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
  }
}

.page-products .hero-meta {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.page-products .hero-visual {
  position: relative;
  z-index: 1;
}

.page-products .hero-visual__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
}

.page-products .hero-qr {
  position: absolute;
  right: 7%;
  bottom: -10%;
  width: 118px;
  padding: 0.9rem 0.85rem 0.7rem;
  background: var(--c-white);
  color: var(--c-dark);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
  z-index: 3;
  text-align: center;
}

.page-products .hero-qr__grid {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto 0.45rem;
  border: 2px solid var(--c-dark);
  background:
    radial-gradient(circle, var(--c-primary) 5px, transparent 6px) 8px 8px / 26px 26px,
    radial-gradient(circle, var(--c-dark) 3px, transparent 4px) 20px 20px / 34px 34px,
    radial-gradient(circle, var(--c-dark) 4px, transparent 5px) 30px 8px / 30px 30px,
    radial-gradient(circle, var(--c-primary) 2px, transparent 3px) 10px 60px / 24px 24px,
    radial-gradient(circle, var(--c-dark) 5px, transparent 6px) 48px 48px / 28px 28px;
}

.page-products .hero-qr__grid::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 26px;
  height: 26px;
  border: 2px solid transparent;
  border-top-color: var(--c-dark);
  border-left-color: var(--c-dark);
}

.page-products .hero-qr__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.page-products .hero-trust {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.page-products .hero-trust p {
  margin: 0;
}

.page-products .hero-trust__link {
  color: var(--c-neon);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}

.page-products .hero-trust__link:hover {
  color: var(--c-secondary);
}

.page-products .usage-path,
.page-products .app-features,
.page-products .version-history,
.page-products .page-cta {
  padding-block: var(--page-gap);
}

.page-products .widescreen-guide {
  background: var(--c-deep);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
  padding-block: var(--page-gap);
}

.page-products .widescreen-guide::before {
  content: '';
  position: absolute;
  right: -8%;
  top: -10%;
  width: 44%;
  height: 64%;
  background: linear-gradient(135deg, rgba(247, 127, 0, 0.55), transparent 70%);
  clip-path: polygon(10% 0, 100% 0, 82% 100%, 0 100%);
  pointer-events: none;
}

.page-products .section-lead {
  margin: 0.9rem 0 0;
  color: var(--c-muted);
  font-size: 1rem;
  max-width: 40rem;
  line-height: 1.7;
}

.page-products .section-lead--light {
  color: rgba(255, 255, 255, 0.72);
}

.page-products .section-title--light {
  color: var(--c-white);
}

.page-products .path-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.4rem;
}

.page-products .path-item {
  position: relative;
  background: var(--c-white);
  border-left: 4px solid var(--c-primary);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  display: grid;
  gap: 0.4rem 1rem;
  grid-template-columns: auto 1fr;
}

.page-products .path-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 2.6rem;
  bottom: -1.35rem;
  width: 2px;
  height: 1.35rem;
  background: var(--c-secondary);
  opacity: 0.75;
}

.page-products .path-item__num {
  grid-row: span 2;
  font-family: var(--font-num);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
  color: var(--c-secondary);
}

.page-products .path-item__title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0;
}

.page-products .path-item__desc {
  margin: 0;
  color: var(--c-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.page-products .features-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.page-products .feature-card {
  background: var(--c-bg);
  border-top: 4px solid var(--c-primary);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.page-products .feature-card::after {
  content: '';
  position: absolute;
  right: -1.25rem;
  bottom: -1.25rem;
  width: 3.25rem;
  height: 3.25rem;
  background: var(--c-primary);
  opacity: 0.12;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.page-products .feature-card__media {
  margin: -1.5rem -1.5rem 1.25rem;
  background: var(--c-deep);
}

.page-products .feature-card__media img {
  display: block;
  width: 100%;
  max-height: 260px;
  height: auto;
  object-fit: cover;
}

.page-products .feature-card__body {
  position: relative;
}

.page-products .feature-card__icon {
  margin-bottom: 1rem;
}

.page-products .feature-card__icon img {
  display: block;
  width: 100%;
  max-width: 150px;
  height: auto;
}

.page-products .feature-card__title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.18rem;
  margin: 0 0 0.5rem;
}

.page-products .feature-card__desc {
  color: var(--c-muted);
  font-size: 0.94rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.page-products .feature-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-products .feature-card--tall {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top-color: var(--c-neon);
}

.page-products .feature-card--tall::after {
  background: var(--c-neon);
}

.page-products .feature-card--wide {
  border-top-color: var(--c-secondary);
}

.page-products .feature-card--wide::after {
  background: var(--c-secondary);
}

.page-products .widescreen-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.page-products .widescreen-copy__text {
  color: rgba(255, 255, 255, 0.8);
  max-width: 36rem;
  line-height: 1.8;
  margin-top: 1.25rem;
}

.page-products .widescreen-steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.page-products .widescreen-step {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.06);
  padding: 1rem;
}

.page-products .widescreen-step__num {
  font-family: var(--font-num);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-secondary);
  background: rgba(255, 255, 255, 0.12);
  width: 2.3rem;
  height: 2.3rem;
  flex: 0 0 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-products .widescreen-step h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.page-products .widescreen-step p {
  margin: 0.3rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.page-products .screen-frame {
  border: 8px solid var(--c-bg);
  border-radius: 14px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  background: var(--c-white);
}

.page-products .screen-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.page-products .widescreen-visual__caption {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.85rem;
}

.page-products .version-media {
  margin-top: 2rem;
  background: var(--c-deep);
  padding: 1rem;
}

.page-products .version-media img {
  display: block;
  width: 100%;
  height: auto;
}

.page-products .timeline {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.page-products .timeline-item {
  background: var(--c-white);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--c-secondary);
}

.page-products .timeline-item details > summary {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}

.page-products .timeline-item details > summary:hover {
  background: rgba(247, 127, 0, 0.08);
}

.page-products .timeline-item details > summary::-webkit-details-marker {
  display: none;
}

.page-products .timeline__version {
  font-family: var(--font-num);
  font-weight: 600;
  color: var(--c-primary);
  font-size: 0.95rem;
  min-width: 3.2rem;
  background: rgba(230, 57, 70, 0.08);
  padding: 0.2rem 0.35rem;
  text-align: center;
  white-space: nowrap;
}

.page-products .timeline__title {
  font-weight: 700;
  flex: 1;
}

.page-products .timeline-toggle {
  font-family: var(--font-num);
  color: var(--c-secondary);
  font-size: 1.15rem;
  transition: transform 0.35s var(--ease);
}

.page-products .timeline-item details[open] .timeline-toggle {
  transform: rotate(45deg);
}

.page-products .timeline__desc {
  margin: 0;
  padding: 0 1.25rem 1rem 4.5rem;
  color: var(--c-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.page-products .version-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

.page-products .page-cta {
  background: var(--c-deep);
  color: var(--c-white);
}

.page-products .page-cta__title {
  font-family: var(--font-title);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  margin: 0 0 1rem;
}

.page-products .page-cta__desc {
  color: rgba(255, 255, 255, 0.72);
  max-width: 48rem;
  line-height: 1.8;
}

.page-products .cta-links {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.page-products .cta-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: baseline;
  background: rgba(255, 255, 255, 0.06);
  padding: 1.1rem 1.25rem;
  color: var(--c-white);
  text-decoration: none;
  border-top: 2px solid var(--c-secondary);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.page-products .cta-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-products .cta-link__tag {
  font-family: var(--font-num);
  font-size: 0.82rem;
  color: var(--c-neon);
}

.page-products .cta-link__title {
  font-weight: 600;
  line-height: 1.5;
}

.page-products .cta-link__arrow {
  color: var(--c-secondary);
  font-family: var(--font-num);
}

@media (min-width: 640px) {
  .page-products .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
  }

  .page-products .hero-visual {
    margin-top: 0;
  }

  .page-products .hero-qr {
    right: 5%;
    bottom: -8%;
  }

  .page-products .widescreen-grid {
    align-items: center;
  }
}

@media (min-width: 900px) {
  .page-products .path-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .page-products .path-item {
    min-height: 210px;
    align-content: start;
  }

  .page-products .path-item:not(:last-child)::after {
    left: auto;
    bottom: auto;
    top: 50%;
    right: -1.25rem;
    width: 1.25rem;
    height: 2px;
    transform: translateY(-50%);
  }

  .page-products .features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
  }

  .page-products .feature-card--media {
    grid-column: span 3;
  }

  .page-products .feature-card--tall {
    grid-column: span 3;
  }

  .page-products .feature-card--wide {
    grid-column: span 4;
  }

  .page-products .feature-card:not(.feature-card--media):not(.feature-card--tall):not(.feature-card--wide) {
    grid-column: span 2;
  }

  .page-products .feature-card__media img {
    max-height: 340px;
  }

  .page-products .widescreen-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 5rem);
  }

  .page-products .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .page-products .cta-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .page-products .path-item {
    min-height: 250px;
  }

  .page-products .widescreen-grid {
    gap: 6rem;
  }

  .page-products .hero-actions {
    margin-bottom: 1rem;
  }
}
