.page-products{
  --p-section-space: clamp(56px, 9vw, 104px);
  --p-line: var(--color-neon-soft);
  --p-glow: rgba(57, 255, 20, .12);
}
.page-products .section{
  padding-block: var(--p-section-space);
}
.page-products .page-header{
  margin: 52px 0 48px;
}
.page-products .page-title{
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.12;
  letter-spacing: -.02em;
}
.page-products .page-title span{
  display: block;
  color: var(--color-neon);
  font-size: clamp(18px, 2.6vw, 28px);
  letter-spacing: .01em;
  margin-top: 10px;
}
.page-products .page-intro{
  max-width: 760px;
  margin-top: 24px;
  color: var(--color-gray);
  font-size: 16px;
  line-height: 1.8;
}
.page-products .p-section-head{
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
}
.page-products .p-section-head h2{
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.2;
  color: var(--color-white);
  letter-spacing: -.01em;
}
.page-products .p-section-head p{
  max-width: 720px;
  color: var(--color-gray);
  line-height: 1.8;
}
.page-products .p-section-head .eyebrow{
  color: var(--color-flame);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .16em;
}
.page-products .p-features{
  background:
    radial-gradient(circle at 0% 20%, rgba(57, 255, 20, .1), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, .01), rgba(255, 255, 255, 0) 60%);
  border-top: 1px solid var(--p-line);
  border-bottom: 1px solid var(--p-line);
}
.page-products .p-tabs{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
  margin-top: 32px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--p-line);
  border-radius: var(--radius-pill);
}
.page-products .p-tab-link{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-gray);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 8px;
  border-radius: var(--radius-pill);
  transition: color var(--speed) var(--ease), background var(--speed) var(--ease);
}
.page-products .p-tab-link span{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-flame);
}
.page-products .p-tab-link:hover{
  color: var(--color-white);
  background: var(--p-glow);
}
.page-products .p-panel{
  margin-top: 18px;
  scroll-margin-top: 24px;
}
.page-products .p-grid--features{
  gap: 18px;
}
.page-products .p-feature-card{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--p-line);
  background: linear-gradient(135deg, var(--color-panel), rgba(10, 14, 20, .92));
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}
.page-products .p-feature-card h3{
  font-size: 22px;
  line-height: 1.3;
  color: var(--color-white);
  margin-top: 4px;
}
.page-products .p-feature-card p{
  color: var(--color-gray);
  font-size: 14px;
  line-height: 1.8;
}
.page-products .p-feature-card .status-badge{
  align-self: flex-start;
}
.page-products .p-points{
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  display: grid;
  gap: 10px;
  border-top: 1px dashed var(--p-line);
}
.page-products .p-points li{
  position: relative;
  padding-left: 22px;
  color: var(--color-gray);
  font-size: 14px;
  line-height: 1.7;
}
.page-products .p-points li::before{
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-neon);
  box-shadow: 0 0 10px rgba(57, 255, 20, .6);
}
.page-products .p-card__media{
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-panel);
  border: 1px solid var(--p-line);
}
.page-products .p-card__media--wide{
  aspect-ratio: 16 / 9;
}
.page-products .p-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-products .p-metric{
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 8px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(57, 255, 20, .08);
  border: 1px solid var(--p-line);
}
.page-products .p-metric__label{
  color: var(--color-gray);
  font-size: 13px;
}
.page-products .p-metric strong{
  font-family: var(--font-mono);
  font-size: 30px;
  color: var(--color-neon);
}
.page-products .p-stats{
  margin: 18px 0 0;
  display: grid;
}
.page-products .p-stats > div{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--p-line);
}
.page-products .p-stats dt{
  color: var(--color-muted);
  font-size: 13px;
}
.page-products .p-stats dd{
  margin: 0;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--color-white);
  text-align: right;
}
.page-products .p-download{
  border-top: 1px solid var(--p-line);
  border-bottom: 1px solid var(--p-line);
  background:
    radial-gradient(circle at 80% 10%, rgba(57, 255, 20, .08), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, 0) 30%);
}
.page-products .p-download__layout{
  display: grid;
  gap: 28px;
  align-items: start;
}
.page-products .p-download__visual{
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--p-line);
  box-shadow: var(--shadow);
}
.page-products .p-media-square{
  aspect-ratio: 1 / 1;
}
.page-products .p-media-square img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-products .p-download__codes{
  display: grid;
  gap: 16px;
}
.page-products .p-download__codes > p{
  color: var(--color-gray);
  line-height: 1.8;
}
.page-products .p-download__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-products .btn--primary{
  box-shadow: 0 0 0 0 var(--color-neon-soft);
  transition: box-shadow var(--speed) var(--ease), transform var(--speed) var(--ease);
}
.page-products .btn--primary:hover{
  box-shadow: 0 0 26px var(--color-neon-soft);
  transform: translateY(-2px);
}
.page-products .p-dl-card{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(26, 30, 38, .78);
  border: 1px solid var(--p-line);
  scroll-margin-top: 24px;
}
.page-products .p-dl-card h3{
  font-size: 17px;
  color: var(--color-white);
}
.page-products .p-dl-card p{
  grid-column: 1 / -1;
  color: var(--color-gray);
  font-size: 13px;
  line-height: 1.7;
}
.page-products .p-qr{
  width: 112px;
  height: 112px;
  border: 1px solid var(--color-neon-soft);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(57, 255, 20, .22) 1px, transparent 1px) 0 0 / 14px 14px,
    linear-gradient(rgba(57, 255, 20, .22) 1px, transparent 1px) 0 0 / 14px 14px;
  position: relative;
}
.page-products .p-qr::before{
  content: "";
  position: absolute;
  inset: 26px;
  background: var(--color-neon);
  border-radius: 6px;
  opacity: .85;
}
.page-products .p-qr::after{
  content: "SCAN";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--color-void);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}
.page-products .p-sys-grid{
  gap: 18px;
}
.page-products .p-sys-card{
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--p-line);
  background: var(--color-panel);
}
.page-products .p-sys-card h3{
  font-size: 22px;
  color: var(--color-white);
  margin-top: 14px;
}
.page-products .p-sys-icon{
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--grad-neon);
  color: var(--color-void);
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(57, 255, 20, .22);
}
.page-products .p-specs{
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}
.page-products .p-specs div{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--p-line);
}
.page-products .p-specs dt{
  color: var(--color-muted);
  font-size: 14px;
}
.page-products .p-specs dd{
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-mono);
  font-size: 14px;
  text-align: right;
}
.page-products .p-versions{
  position: relative;
  overflow: hidden;
}
.page-products .p-versions__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .32;
}
.page-products .p-versions__bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-products .p-versions .content-shell{
  position: relative;
  z-index: 1;
}
.page-products .p-version-grid{
  display: grid;
  gap: 14px;
  margin-top: 30px;
}
.page-products .p-version-item{
  border-radius: var(--radius-lg);
  border: 1px solid var(--p-line);
  background: rgba(10, 14, 20, .78);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.page-products .p-version-head{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}
.page-products .p-version-head::-webkit-details-marker{
  display: none;
}
.page-products .p-version__gen{
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-neon);
  letter-spacing: .08em;
}
.page-products .p-version__year{
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-flame);
}
.page-products .p-version__title{
  flex: 1 0 100%;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-white);
}
.page-products .p-version-body{
  border-top: 1px solid var(--color-neon-soft);
  padding: 0 18px 18px;
}
.page-products .p-version-body ul{
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.page-products .p-version-body li{
  position: relative;
  padding-left: 14px;
  color: var(--color-gray);
  font-size: 14px;
  line-height: 1.65;
}
.page-products .p-version-body li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-neon);
}
.page-products .p-scenario-grid{
  gap: 16px;
}
.page-products .p-scenario-card{
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--p-line);
  background: linear-gradient(145deg, rgba(26, 30, 38, .9), rgba(10, 14, 20, .82));
  overflow: hidden;
}
.page-products .p-scenario-card::before{
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent 50%, var(--color-flame-soft) 50%);
}
.page-products .p-scenario-card::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--grad-neon);
}
.page-products .p-scenario__no{
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--color-flame);
  letter-spacing: .12em;
}
.page-products .p-scenario-card h3{
  font-size: 20px;
  margin-top: 10px;
  color: var(--color-white);
}
.page-products .p-scenario-card p{
  margin-top: 12px;
  color: var(--color-gray);
  font-size: 14px;
  line-height: 1.8;
}
.page-products .p-more{
  border-top: 1px solid var(--p-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .01), rgba(255, 255, 255, 0) 40%);
}
.page-products .p-explore-list{
  display: grid;
  gap: 12px;
}
.page-products .p-explore-item{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 14px;
  row-gap: 4px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, .02);
  color: var(--color-gray);
  text-decoration: none;
  transition: border-color var(--speed) var(--ease), background var(--speed) var(--ease), transform var(--speed) var(--ease);
}
.page-products .p-explore-item:hover{
  border-color: var(--color-neon-soft);
  background: rgba(57, 255, 20, .05);
  transform: translateX(4px);
}
.page-products .p-explore__no{
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-flame);
}
.page-products .p-explore__name{
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--color-white);
}
.page-products .p-explore__desc{
  grid-column: 2;
  font-size: 14px;
}

@media (min-width: 768px){
  .page-products .p-tab-link{
    font-size: 14px;
  }
  .page-products .p-download__layout{
    grid-template-columns: minmax(260px, 340px) 1fr;
  }
  .page-products .p-download__codes{
    gap: 18px;
  }
  .page-products .p-sys-grid{
    gap: 24px;
  }
  .page-products .p-scenario-grid{
    gap: 20px;
  }
  .page-products .p-explore-list{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 920px){
  .page-products .p-version-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
  }
  .page-products .p-version-item{
    height: 100%;
  }
}
