.page-products{
  --py-surface: rgba(18, 24, 56, 0.72);
  --py-surface-strong: rgba(13, 18, 44, 0.92);
  --py-line: rgba(0, 229, 255, 0.28);
  --py-line-orange: rgba(255, 106, 61, 0.38);
  --py-glow: 0 0 24px rgba(0, 229, 255, 0.16);
  color: var(--sy-text);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(46, 55, 164, 0.65), transparent 55%),
    radial-gradient(ellipse at 10% 12%, rgba(255, 106, 61, 0.16), transparent 40%),
    var(--sy-bg-deep);
}

.page-products .sy-container{
  max-width: 1320px;
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3.5vw, 2.5rem);
}

.page-products img{
  max-width: 100%;
  height: auto;
}

.page-products .py-breadcrumb{
  margin-bottom: 1.4rem;
}

.page-products .py-breadcrumb__list{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-products .py-breadcrumb__link{
  color: var(--sy-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.25s ease;
}

.page-products .py-breadcrumb__link:hover{
  color: var(--sy-cyan);
}

.page-products .py-breadcrumb__current{
  color: var(--sy-text);
  font-size: 0.85rem;
}

.page-products .py-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transform: skewX(-8deg);
  letter-spacing: 0.12em;
  font-weight: 700;
}

.page-products .py-eyebrow--orange{
  border-color: rgba(255, 106, 61, 0.5);
  color: var(--sy-accent-warm);
}

.page-products .py-eyebrow--cyan{
  border-color: rgba(0, 229, 255, 0.5);
  color: var(--sy-cyan);
}

.page-products .py-eyebrow--warm{
  border-color: rgba(255, 184, 107, 0.5);
  color: var(--sy-accent-warm);
}

.page-products .py-eyebrow--green{
  border-color: rgba(61, 220, 132, 0.5);
  color: var(--sy-success);
}

.page-products .py-eyebrow--blue{
  border-color: rgba(75, 94, 252, 0.5);
  color: #9aa8ff;
}

.page-products .py-section-head{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.page-products .py-section-head__title h2{
  margin: 0.5rem 0 0;
  font-family: var(--sy-font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.12;
}

.page-products .py-section-head__desc{
  max-width: 56rem;
  color: var(--sy-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

@media (min-width: 760px){
  .page-products .py-section-head{
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }
  .page-products .py-section-head__desc{
    max-width: 36rem;
    text-align: right;
  }
}

.page-products .py-hero{
  position: relative;
  padding: 3.5rem 0 4rem;
}

.page-products .py-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 62%, rgba(46, 55, 164, 0.45) 62% 100%),
    repeating-linear-gradient(90deg, rgba(0, 229, 255, 0.05) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(0, 229, 255, 0.04) 0 1px, transparent 1px 72px);
  pointer-events: none;
}

.page-products .py-hero::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sy-bg-bright), var(--sy-cyan), var(--sy-accent-orange));
  opacity: 0.8;
}

.page-products .py-hero__grid{
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.page-products .py-hero__content{
  position: relative;
  z-index: 1;
}

.page-products .py-hero__badge{
  margin-bottom: 1rem;
  color: var(--sy-cyan);
  border-color: rgba(0, 229, 255, 0.42);
  background: rgba(0, 229, 255, 0.08);
  transform: skewX(-6deg);
}

.page-products .py-hero h1{
  margin: 0.8rem 0 1.2rem;
  font-family: var(--sy-font-display);
  font-size: clamp(2.2rem, 6.4vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.page-products .py-hero__accent{
  display: block;
  background: linear-gradient(100deg, var(--sy-cyan) 0%, var(--sy-bg-bright) 45%, var(--sy-accent-orange) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(1.1rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-top: 0.5rem;
}

.page-products .py-hero__lead{
  max-width: 42rem;
  color: var(--sy-muted);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.page-products .py-hero__quick{
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.page-products .py-hero__quicklink{
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(75, 94, 252, 0.4);
  border-radius: 999px;
  background: rgba(11, 15, 42, 0.58);
  color: var(--sy-text);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-products .py-hero__quicklink:hover,
.page-products .py-hero__quicklink:focus-visible{
  background: rgba(75, 94, 252, 0.18);
  border-color: var(--sy-cyan);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 229, 255, 0.12);
}

.page-products .py-hero__board{
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.page-products .py-hero__card{
  position: relative;
  padding: 1.2rem 1rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(75, 94, 252, 0.18), rgba(11, 15, 42, 0.5));
  backdrop-filter: blur(6px);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-products .py-hero__card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--sy-cyan), var(--sy-bg-bright));
  opacity: 0.7;
}

.page-products .py-hero__card:nth-child(2)::before{
  background: linear-gradient(180deg, var(--sy-accent-warm), var(--sy-accent-orange));
}

.page-products .py-hero__card:nth-child(3)::before{
  background: linear-gradient(180deg, var(--sy-success), var(--sy-cyan));
}

.page-products .py-hero__card:nth-child(4)::before{
  background: linear-gradient(180deg, var(--sy-accent-orange), var(--sy-bg-bright));
}

.page-products .py-hero__card:hover,
.page-products .py-hero__card:focus-within{
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.36);
  box-shadow: var(--py-glow);
}

.page-products .py-hero__cardlabel{
  display: block;
  color: var(--sy-muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.page-products .py-hero__cardnum{
  display: block;
  font-family: var(--sy-font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--sy-text);
  line-height: 1;
}

.page-products .py-hero__cardunit{
  font-size: 1.2rem;
  color: var(--sy-cyan);
  margin-left: 0.15rem;
}

.page-products .py-hero__cardsub{
  display: block;
  color: var(--sy-muted);
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

@media (min-width: 900px){
  .page-products .py-hero__grid{
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.75fr);
    gap: 3rem;
  }
  .page-products .py-hero__board{
    gap: 1rem;
  }
}

@media (min-width: 1100px){
  .page-products .py-hero__board{
    grid-template-columns: repeat(2, 1fr);
  }
  .page-products .py-hero__card{
    padding: 1.5rem 1.25rem 1.25rem;
  }
}

.page-products .py-overview{
  position: relative;
  padding: 5rem 0 3rem;
  background:
    linear-gradient(180deg, rgba(46, 55, 164, 0.18), transparent 80%),
    repeating-linear-gradient(135deg, rgba(0, 229, 255, 0.035) 0 1px, transparent 1px 24px);
}

.page-products .py-overview::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.5), transparent);
}

.page-products .py-overview__layout{
  display: grid;
  gap: 2rem;
}

.page-products .py-overview__cards{
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 620px){
  .page-products .py-overview__cards{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px){
  .page-products .py-overview__layout{
    grid-template-columns: 1fr 360px;
    align-items: start;
  }
  .page-products .py-overview__media{
    position: sticky;
    top: 2rem;
  }
}

.page-products .py-feature{
  position: relative;
  min-height: 160px;
  padding: 1.5rem 1.3rem 1.2rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--py-surface);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.page-products .py-feature::after{
  content: "";
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.24), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.page-products .py-feature:hover,
.page-products .py-feature:focus-within{
  transform: perspective(700px) rotateX(5deg) rotateY(-3deg) translateY(-5px);
  border-color: rgba(0, 229, 255, 0.42);
  box-shadow: 0 18px 36px rgba(5, 8, 28, 0.5), var(--py-glow);
  background: linear-gradient(150deg, rgba(75, 94, 252, 0.18), rgba(11, 15, 42, 0.72));
}

.page-products .py-feature:hover::after,
.page-products .py-feature:focus-within::after{
  opacity: 1;
}

.page-products .py-feature__num{
  position: absolute;
  top: 0.6rem;
  right: 0.9rem;
  color: rgba(230, 233, 255, 0.22);
  font-family: var(--sy-font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.page-products .py-feature__icon{
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 1rem;
  color: var(--sy-cyan);
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.5));
  transition: color 0.3s ease, transform 0.3s ease;
}

.page-products .py-feature:hover .py-feature__icon{
  color: var(--sy-accent-warm);
  transform: scale(1.08);
}

.page-products .py-feature:nth-child(2) .py-feature__icon,
.page-products .py-feature:nth-child(3) .py-feature__icon{
  color: var(--sy-accent-warm);
}

.page-products .py-feature:nth-child(2):hover .py-feature__icon,
.page-products .py-feature:nth-child(3):hover .py-feature__icon{
  color: var(--sy-cyan);
}

.page-products .py-feature__title{
  margin: 0 0 0.5rem;
  font-family: var(--sy-font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.page-products .py-feature__title a{
  color: var(--sy-text);
  text-decoration: none;
  background: linear-gradient(0deg, var(--sy-cyan) 0 2px, transparent 2px) no-repeat left bottom / 0 100%;
  transition: background-size 0.3s ease, color 0.3s ease;
}

.page-products .py-feature__title a:hover,
.page-products .py-feature__title a:focus-visible{
  color: var(--sy-cyan);
  background-size: 100% 100%;
}

.page-products .py-feature__desc{
  color: var(--sy-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

.page-products .py-overview__media{
  margin: 0;
  position: relative;
  border: 1px solid rgba(75, 94, 252, 0.3);
  background: var(--sy-surface-strong);
}

.page-products .py-overview__media::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(75, 94, 252, 0.18), transparent 45%, rgba(255, 106, 61, 0.14));
  pointer-events: none;
  z-index: 1;
}

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

.page-products .py-overview__media figcaption,
.page-products .py-live__figure figcaption,
.page-products .py-tablet__figure figcaption,
.page-products .py-replay__media figcaption,
.page-products .py-feedback__media figcaption{
  padding: 0.75rem 1rem;
  color: var(--sy-muted);
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 15, 42, 0.6);
}

.page-products .py-member{
  position: relative;
  padding: 4.5rem 0;
}

.page-products .py-member::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background:
    linear-gradient(135deg, rgba(255, 106, 61, 0.14) 0%, transparent 42%),
    linear-gradient(315deg, rgba(46, 55, 164, 0.28) 0%, transparent 60%);
  pointer-events: none;
}

.page-products .py-member__panel{
  position: relative;
  padding: clamp(1.4rem, 4vw, 2.6rem);
  border: 1px solid rgba(255, 106, 61, 0.28);
  background: rgba(13, 18, 44, 0.78);
  box-shadow: 0 24px 60px rgba(5, 8, 28, 0.38);
  overflow: hidden;
}

.page-products .py-member__panel::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sy-accent-orange), var(--sy-accent-warm), transparent);
}

.page-products .py-member__header h2{
  margin: 0.5rem 0 0.75rem;
  font-family: var(--sy-font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
}

.page-products .py-member__header p{
  max-width: 44rem;
  color: var(--sy-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.page-products .py-member__grid{
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px){
  .page-products .py-member__grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-products .py-member__item{
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 106, 61, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.page-products .py-member__item:hover,
.page-products .py-member__item:focus-within{
  transform: translateY(-4px);
  border-color: rgba(255, 184, 107, 0.34);
  background: rgba(255, 106, 61, 0.1);
}

.page-products .py-member__item h3{
  margin: 0 0 0.5rem;
  font-family: var(--sy-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sy-accent-warm);
}

.page-products .py-member__item p{
  color: var(--sy-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.page-products .py-member .sy-link-cta{
  display: inline-block;
  margin-top: 1.5rem;
}

.page-products .py-live{
  position: relative;
  padding: 5rem 0;
  clip-path: polygon(0 0, 100% 3.5%, 100% 96%, 0 100%);
  background:
    linear-gradient(100deg, rgba(46, 55, 164, 0.55), rgba(11, 15, 42, 0.92) 70%),
    repeating-linear-gradient(0deg, rgba(0, 229, 255, 0.05) 0 1px, transparent 1px 40px);
  margin-block: 1rem;
}

.page-products .py-live__grid{
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.page-products .py-live__content h2{
  margin: 0.5rem 0 1rem;
  font-family: var(--sy-font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
}

.page-products .py-live__content p{
  color: var(--sy-muted);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.page-products .py-live__list{
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: grid;
  gap: 0.7rem;
}

.page-products .py-live__list li{
  position: relative;
  padding-left: 1.8rem;
  color: var(--sy-text);
  font-size: 0.95rem;
}

.page-products .py-live__list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  background: var(--sy-cyan);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

@media (min-width: 960px){
  .page-products .py-live__grid{
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }
}

.page-products .py-live__visual{
  position: relative;
  display: grid;
  gap: 1rem;
}

.page-products .py-live__panel{
  border: 1px solid rgba(0, 229, 255, 0.24);
  background: linear-gradient(150deg, rgba(75, 94, 252, 0.2), rgba(11, 15, 42, 0.7));
  padding: 1.4rem;
  box-shadow: var(--py-glow);
}

.page-products .py-live__scorehead{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--sy-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.7rem;
  margin-bottom: 1rem;
}

.page-products .py-live__live{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--sy-success);
  font-weight: 700;
}

.page-products .py-live__scorebody{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}

.page-products .py-live__team{
  color: var(--sy-text);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

.page-products .py-live__team span{
  display: block;
  color: var(--sy-muted);
  font-size: 0.75rem;
}

.page-products .py-live__score{
  font-family: var(--sy-font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--sy-light);
}

.page-products .py-live__score span{
  color: var(--sy-accent-orange);
}

.page-products .py-live__meta{
  text-align: center;
  color: var(--sy-muted);
  font-size: 0.8rem;
  margin-top: 1rem;
}

.page-products .py-live__figure{
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--sy-surface-strong);
}

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

.page-products .py-tablet{
  position: relative;
  padding: 5rem 0;
}

.page-products .py-tablet::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 25%, rgba(255, 184, 107, 0.18), transparent 45%),
    linear-gradient(90deg, transparent, rgba(75, 94, 252, 0.1) 50%, transparent);
  pointer-events: none;
}

.page-products .py-tablet__grid{
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 960px){
  .page-products .py-tablet__grid{
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.page-products .py-tablet__visual{
  order: 1;
}

@media (min-width: 960px){
  .page-products .py-tablet__visual{
    order: 1;
  }
  .page-products .py-tablet__content{
    order: 2;
  }
}

.page-products .py-tablet__figure{
  margin: 0;
  border: 1px solid rgba(255, 184, 107, 0.25);
  background: rgba(13, 18, 44, 0.72);
  transform: perspective(900px) rotateY(-3deg);
  transition: transform 0.4s ease;
}

.page-products .py-tablet__figure:hover{
  transform: perspective(900px) rotateY(0) translateY(-4px);
}

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

.page-products .py-tablet__content h2{
  margin: 0.5rem 0 1rem;
  font-family: var(--sy-font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
}

.page-products .py-tablet__content p{
  color: var(--sy-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.page-products .py-tablet__picker{
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 1.2rem 0;
}

.page-products .py-tablet__chip{
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(11, 15, 42, 0.6);
  color: var(--sy-muted);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-products .py-tablet__chip--active,
.page-products .py-tablet__chip:hover,
.page-products .py-tablet__chip:focus-visible{
  background: linear-gradient(120deg, rgba(255, 106, 61, 0.22), rgba(255, 184, 107, 0.12));
  border-color: rgba(255, 106, 61, 0.5);
  color: var(--sy-accent-warm);
  box-shadow: 0 8px 20px rgba(255, 106, 61, 0.14);
}

.page-products .py-tablet__tags{
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
  display: grid;
  gap: 0.6rem;
}

@media (min-width: 620px){
  .page-products .py-tablet__tags{
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-products .py-tablet__tags li{
  position: relative;
  padding: 0.7rem 0.8rem 0.7rem 2rem;
  border-left: 3px solid var(--sy-cyan);
  background: rgba(75, 94, 252, 0.08);
  color: var(--sy-text);
  font-size: 0.88rem;
}

.page-products .py-tablet__tags li::before{
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sy-cyan);
  transform: translateY(-50%);
}

.page-products .py-tablet__hint{
  border: 1px dashed rgba(255, 184, 107, 0.32);
  background: rgba(255, 184, 107, 0.04);
  padding: 0.6rem 1rem;
  margin: 1.4rem 0;
  color: var(--sy-muted);
}

.page-products .py-tablet__hint summary{
  cursor: pointer;
  color: var(--sy-accent-warm);
  font-weight: 600;
  font-size: 0.9rem;
}

.page-products .py-tablet__hint p{
  margin-top: 0.7rem;
  font-size: 0.88rem;
  line-height: 1.7;
}

.page-products .py-replay{
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(200deg, rgba(61, 220, 132, 0.08), transparent 30%, rgba(75, 94, 252, 0.12) 100%);
}

.page-products .py-replay__head{
  margin-bottom: 2.5rem;
}

.page-products .py-replay__head h2{
  margin: 0.5rem 0 0.8rem;
  font-family: var(--sy-font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
}

.page-products .py-replay__head p{
  max-width: 46rem;
  color: var(--sy-muted);
  line-height: 1.7;
  margin: 0;
}

.page-products .py-replay__layout{
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px){
  .page-products .py-replay__layout{
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
  }
}

.page-products .py-replay__timeline{
  position: relative;
  padding: 0.5rem 0;
}

.page-products .py-replay__timeline::before{
  content: "";
  position: absolute;
  left: 9px;
  top: 1.2rem;
  bottom: 1.2rem;
  width: 2px;
  background: linear-gradient(180deg, var(--sy-success), var(--sy-cyan), var(--sy-accent-warm));
  opacity: 0.5;
}

.page-products .py-replay__item{
  position: relative;
  padding: 0.6rem 0 1.4rem 2.4rem;
}

.page-products .py-replay__dot{
  position: absolute;
  left: 0;
  top: 1rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 4px solid rgba(61, 220, 132, 0.35);
  background: rgba(61, 220, 132, 0.65);
  box-shadow: 0 0 0 4px rgba(61, 220, 132, 0.1);
}

.page-products .py-replay__dot--orange{
  border-color: rgba(255, 106, 61, 0.3);
  background: rgba(255, 106, 61, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 106, 61, 0.1);
}

.page-products .py-replay__dot--cyan{
  border-color: rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.09);
}

.page-products .py-replay__info{
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(11, 15, 42, 0.55);
  padding: 1rem 1.2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-products .py-replay__info:hover,
.page-products .py-replay__info:focus-within{
  transform: translateX(4px);
  border-color: rgba(61, 220, 132, 0.4);
}

.page-products .py-replay__tag{
  display: inline-block;
  font-size: 0.72rem;
  color: var(--sy-success);
  border: 1px solid rgba(61, 220, 132, 0.35);
  border-radius: 999px;
  padding: 0.1rem 0.6rem;
  margin-bottom: 0.4rem;
}

.page-products .py-replay__item:nth-child(2) .py-replay__tag{
  color: var(--sy-accent-warm);
  border-color: rgba(255, 106, 61, 0.35);
}

.page-products .py-replay__item:nth-child(3) .py-replay__tag{
  color: var(--sy-cyan);
  border-color: rgba(0, 229, 255, 0.35);
}

.page-products .py-replay__info h3{
  margin: 0.1rem 0 0.3rem;
  font-family: var(--sy-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--sy-text);
}

.page-products .py-replay__info p{
  margin: 0;
  color: var(--sy-muted);
  font-size: 0.85rem;
}

.page-products .py-replay__tip{
  margin-top: 1rem;
  border: 1px solid rgba(0, 229, 255, 0.2);
  background: rgba(0, 229, 255, 0.05);
  padding: 0.6rem 1rem;
  color: var(--sy-muted);
}

.page-products .py-replay__tip summary{
  cursor: pointer;
  color: var(--sy-cyan);
  font-weight: 600;
  font-size: 0.9rem;
}

.page-products .py-replay__tip p{
  margin-top: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.7;
}

.page-products .py-replay__media{
  margin: 0;
  border: 1px solid rgba(75, 94, 252, 0.3);
  background: var(--sy-surface-strong);
  overflow: hidden;
}

.page-products .py-replay__media img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-products .py-feedback{
  padding: 4.5rem 0 5.5rem;
}

.page-products .py-feedback__panel{
  position: relative;
  display: grid;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(75, 94, 252, 0.3);
  background: linear-gradient(140deg, rgba(46, 55, 164, 0.32), rgba(11, 15, 42, 0.88));
  overflow: hidden;
}

.page-products .py-feedback__panel::before{
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.22), transparent 70%);
  pointer-events: none;
}

.page-products .py-feedback__content{
  position: relative;
  z-index: 1;
}

.page-products .py-feedback__content h2{
  margin: 0.5rem 0 0.8rem;
  font-family: var(--sy-font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
}

.page-products .py-feedback__content p{
  color: var(--sy-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 36rem;
}

.page-products .py-feedback__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.page-products .py-feedback__media{
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 15, 42, 0.6);
  overflow: hidden;
}

.page-products .py-feedback__media img{
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
  align-self: center;
}

.page-products .py-feedback__media figcaption{
  border-top: 0;
  text-align: center;
}

@media (min-width: 760px){
  .page-products .py-feedback__panel{
    grid-template-columns: 1fr 300px;
    align-items: center;
  }
  .page-products .py-feedback__media img{
    max-width: 260px;
  }
}

@media (max-width: 480px){
  .page-products .py-hero{
    padding-top: 2.5rem;
  }

  .page-products .py-hero__quicklink{
    font-size: 0.78rem;
    padding: 0.4rem 0.75rem;
  }

  .page-products .py-feature{
    min-height: 140px;
    padding: 1.2rem 1rem 1rem;
  }

  .page-products .py-live__score{
    font-size: 2.1rem;
  }

  .page-products .py-live__team{
    font-size: 0.8rem;
  }

  .page-products .py-feedback__actions{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce){
  .page-products *,
  .page-products *::before,
  .page-products *::after{
    animation: none !important;
    transition: none !important;
  }
}

.page-products {
  --sy-surface-strong: var(--py-surface-strong);
}
