.page-products {
  --pd-font-display: var(--font-headline);
  --pd-grid-size: 34px;
  background: var(--space-blue);
  color: var(--text-primary);
  font-family: var(--font-body);
}

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

/* Hero */
.pd-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(160deg, var(--space-blue) 0%, var(--deep-navy) 100%);
}
.pd-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pd-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.42;
  filter: saturate(0.7) contrast(1.12);
}
.pd-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 38, 0.78) 0%, rgba(11, 30, 58, 0.38) 45%, rgba(11, 30, 58, 0.94) 100%);
}
.pd-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 3.2rem;
  padding-bottom: 2.4rem;
}
.pd-hero .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.pd-hero .breadcrumb__link {
  color: var(--electric-green);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.pd-hero .breadcrumb__link:hover {
  border-bottom-color: var(--electric-green);
}
.pd-hero .breadcrumb__sep {
  opacity: 0.55;
}
.pd-hero__kicker {
  margin-bottom: 0.6rem;
  font-family: var(--font-headline);
  font-size: 1rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--electric-green);
  text-shadow: 0 0 18px rgba(0, 255, 156, 0.4);
}
.pd-hero__title {
  margin: 0 0 0.8rem;
  font-family: var(--font-headline);
  font-size: clamp(1.65rem, 5.2vw, 3.2rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--text-primary);
}
.pd-hero__desc {
  max-width: 62ch;
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dim);
}

/* Shared section intro */
.pd-lead {
  margin-top: 0.7rem;
  max-width: 58ch;
  color: var(--text-dim);
}
.pd-center-head {
  text-align: center;
  max-width: 66ch;
  margin-inline: auto;
  margin-bottom: 2.25rem;
}
.pd-center-head .pd-lead {
  margin-inline: auto;
}

/* Features */
.pd-features {
  padding: 4rem 0;
  background-color: var(--space-blue);
  background-image:
    linear-gradient(rgba(0, 255, 156, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 156, 0.045) 1px, transparent 1px);
  background-size: var(--pd-grid-size) var(--pd-grid-size);
}
.pd-features .section__header {
  margin-bottom: 2.25rem;
}
.pd-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}

.pd-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--midnight-blue);
  border: 1px solid var(--line-glow);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.pd-feature::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-top: 14px solid var(--electric-green);
  border-left: 14px solid transparent;
  opacity: 0.88;
}
.pd-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 156, 0.65);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 255, 156, 0.12);
}
.pd-feature__icon {
  font-family: var(--font-headline);
  font-style: italic;
  font-weight: 900;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--electric-green);
}
.pd-feature h3 {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 1.12rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--text-primary);
}
.pd-feature p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}
.pd-feature__link {
  margin-top: auto;
  color: var(--electric-green);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  transition: border-color 0.2s ease;
}
.pd-feature__link:hover {
  border-bottom-color: var(--electric-green);
}

.pd-feature--wide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .pd-feature--wide {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}
.pd-feature__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid var(--line-glow);
  background: var(--deep-navy);
}
.pd-feature__copy {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.pd-feature__points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0;
  margin: 0.35rem 0 0;
  list-style: none;
}
.pd-feature__points li {
  padding: 0.28rem 0.6rem;
  border: 1px solid var(--line-glow);
  border-radius: 999px;
  background: var(--glass-tint);
  color: var(--text-dim);
  font-size: 0.78rem;
}

.pd-feature--stat {
  justify-content: center;
  background: linear-gradient(165deg, var(--midnight-blue) 0%, var(--deep-navy) 100%);
}
.pd-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.pd-stat + .pd-stat {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line-glow);
}
.pd-stat .data-value {
  font-family: var(--font-headline);
  font-style: italic;
  font-weight: 900;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--electric-green);
}
.pd-stat .data-label {
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
.pd-feature__note {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line-glow);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.pd-feature--expand::before {
  display: none;
}
.pd-feature-toggle summary {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  list-style: none;
  cursor: pointer;
}
.pd-feature-toggle summary::-webkit-details-marker {
  display: none;
}
.pd-feature-toggle[open] .pd-feature__more-indicator {
  transform: rotate(45deg);
}
.pd-feature__more-indicator {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid var(--line-glow);
  border-radius: 50%;
  background: var(--glass-tint);
  color: var(--electric-green);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease;
}
.pd-feature__more {
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--line-glow);
  color: var(--text-dim);
  font-size: 0.85rem;
}
.pd-feature__more p {
  margin: 0;
}

.pd-feature--banner {
  background: linear-gradient(100deg, rgba(255, 77, 0, 0.14) 0%, rgba(255, 77, 0, 0.03) 60%, transparent 100%);
  border-left: 3px solid var(--flame-orange);
}
.pd-feature--banner::before {
  display: none;
}
.pd-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}
@media (min-width: 720px) {
  .pd-banner__inner {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}
.pd-banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 77, 0, 0.5);
  border-radius: 50%;
  background: rgba(255, 77, 0, 0.18);
  color: var(--flame-orange);
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 900;
}
.pd-banner__copy {
  flex: 1;
}

/* Guide */
.pd-guide {
  padding: 4rem 0;
  background-color: var(--deep-navy);
  background-image: linear-gradient(rgba(0, 255, 156, 0.035) 1px, transparent 1px);
  background-size: var(--pd-grid-size) var(--pd-grid-size);
}
.pd-guide__wrap {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .pd-guide__wrap {
    grid-template-columns: 1.15fr 0.85fr;
  }
}
.pd-guide__steps {
  display: grid;
  gap: 0;
}
.pd-guide__connector {
  width: 2px;
  height: 1.6rem;
  margin-left: 3.1rem;
  background: linear-gradient(180deg, var(--electric-green), rgba(0, 255, 156, 0.15));
}
.pd-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  background: var(--midnight-blue);
  border: 1px solid var(--line-glow);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pd-step:hover {
  border-color: rgba(0, 255, 156, 0.6);
  transform: translateY(-2px);
}
.pd-step__num {
  min-width: 3rem;
  font-family: var(--font-headline);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 4rem);
  line-height: 1;
  color: var(--electric-green);
  opacity: 0.9;
  text-shadow: 0 0 22px rgba(0, 255, 156, 0.35);
}
.pd-step__body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-headline);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  color: var(--text-primary);
}
.pd-step__body p {
  margin: 0 0 0.35rem;
  color: var(--text-dim);
  line-height: 1.6;
  font-size: 0.95rem;
}
.pd-step__hint {
  margin-top: 0.6rem !important;
  border-left: 2px solid var(--electric-green);
  padding-left: 0.65rem;
  font-size: 0.85rem;
}
.pd-guide__phone {
  margin-top: 0.5rem;
  border: 1px solid var(--line-glow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--midnight-blue);
  box-shadow: var(--shadow);
}
.pd-guide__phone img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: var(--deep-navy);
}
.pd-guide__phone::after {
  content: "";
  display: block;
  height: 0.1rem;
  background: linear-gradient(90deg, transparent, var(--electric-green), transparent);
  opacity: 0.6;
}

/* Alert */
.pd-alert {
  padding: 4rem 0;
  background-color: var(--space-blue);
  background-image:
    radial-gradient(circle at 80% 12%, rgba(0, 255, 156, 0.08), transparent 26%),
    linear-gradient(rgba(0, 255, 156, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 156, 0.03) 1px, transparent 1px);
  background-size: auto, var(--pd-grid-size) var(--pd-grid-size), var(--pd-grid-size) var(--pd-grid-size);
}
.pd-alert .section__header {
  margin-bottom: 2rem;
}
.pd-alert__layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 860px) {
  .pd-alert__layout {
    grid-template-columns: 1fr 1.05fr;
  }
}
.pd-alert__copy h3 {
  margin: 1.5rem 0 0.4rem;
  font-family: var(--font-headline);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--electric-green);
}
.pd-alert__copy p {
  margin: 0 0 0.6rem;
  color: var(--text-dim);
  line-height: 1.65;
  font-size: 0.95rem;
}
.pd-alert__copy .btn {
  margin-top: 0.5rem;
  margin-right: 0.5rem;
}
.pd-alert__stage {
  position: relative;
  padding-bottom: 3.2rem;
}
.pd-alert__screen {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-glow);
  border-radius: var(--radius-lg);
  background: var(--deep-navy);
  box-shadow: var(--shadow);
}
.pd-alert__screen img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.65);
}
.pd-alert__screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 17, 38, 0.8) 0%, rgba(11, 30, 58, 0.25) 60%, rgba(0, 255, 156, 0.06) 100%);
  pointer-events: none;
}
.pd-alert__caption {
  position: absolute;
  left: 1rem;
  bottom: 0.75rem;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--line-glow);
  border-radius: 999px;
  background: rgba(7, 17, 38, 0.72);
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.pd-popup {
  position: absolute;
  z-index: 2;
  right: 12%;
  left: 12%;
  bottom: -14%;
}
.pd-popup[open] {
  animation: pd-pop-in 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.pd-popup__inner {
  position: relative;
  border: 1px solid rgba(255, 77, 0, 0.55);
  border-radius: var(--radius);
  background: rgba(11, 30, 58, 0.94);
  padding: 1.2rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 77, 0, 0.14);
}
.pd-popup__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--flame-orange), rgba(255, 77, 0, 0.15));
}
.pd-popup__inner .tag {
  margin-bottom: 0.5rem;
}
.pd-popup__league {
  margin: 0.65rem 0 0.15rem;
  color: var(--text-dim);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pd-popup__match {
  margin: 0 0 0.35rem;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 700;
}
.pd-popup__time {
  margin: 0 0 0.35rem;
  color: var(--flame-orange);
  font-size: 1.35rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.pd-popup__time s {
  margin-right: 0.45rem;
  color: var(--text-dim);
  font-weight: 400;
  text-decoration-thickness: 1.5px;
}
.pd-popup__note {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.8rem;
}
.pd-popup__close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 77, 0, 0.18);
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.pd-popup__close:hover {
  background: var(--flame-orange);
  color: #fff;
  transform: scale(1.1);
}
.pd-popup__close::-webkit-details-marker {
  display: none;
}
@keyframes pd-pop-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Download */
.pd-download {
  padding: 4rem 0;
  background-color: var(--deep-navy);
  background-image: linear-gradient(90deg, rgba(255, 77, 0, 0.05) 1px, transparent 1px);
  background-size: 44px 100%;
}
.pd-download__layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 860px) {
  .pd-download__layout {
    grid-template-columns: 0.75fr 1.25fr;
  }
}
.pd-qr {
  background: var(--midnight-blue);
  border: 1px solid var(--line-glow);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pd-qr:hover {
  border-color: rgba(0, 255, 156, 0.55);
  transform: translateY(-3px);
}
.pd-qr img {
  display: block;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border: 1px solid var(--line-glow);
  border-radius: calc(var(--radius) - 4px);
  object-fit: cover;
  background: var(--deep-navy);
}
.pd-qr__label {
  margin: 0.85rem 0 0;
  color: var(--text-dim);
  font-size: 0.8rem;
}
.pd-support h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-primary);
}
.pd-support > p {
  margin: 0 0 0.6rem;
  color: var(--text-dim);
  line-height: 1.65;
}
.pd-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.pd-platforms span {
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--line-glow);
  border-radius: 999px;
  background: var(--glass-tint);
  color: var(--text-dim);
  font-size: 0.78rem;
  white-space: nowrap;
}
.pd-support__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}
.pd-support__meta {
  margin-top: 1.4rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line-glow);
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.75;
}
