.page-products {
  --prods-card-skew: 28px;
}

.page-products .prods-wrap {
  width: min(var(--container-w), calc(100% - (var(--gutter) * 2)));
  margin-left: auto;
  margin-right: auto;
}

.page-products .prods-section {
  padding: 48px 0;
}

.page-products .prods-section--alt {
  background:
    linear-gradient(135deg, rgba(57, 255, 20, 0.04) 25%, transparent 25%) 0 0 / 32px 32px,
    rgba(15, 31, 58, 0.65);
}

.page-products .prods-section-head {
  margin-bottom: 28px;
}

.page-products .prods-section-head .section-label {
  display: inline-block;
  color: var(--c-neon);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.page-products .prods-section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.1;
  color: var(--c-paper);
  margin: 0;
}

.page-products .prods-section .section-intro {
  margin: -8px 0 28px;
  max-width: 720px;
  color: var(--c-body);
  line-height: 1.7;
}

/* ===== Hero ===== */
.page-products .prods-hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 40px;
  background-color: var(--c-space-900);
}

.page-products .prods-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(58, 95, 138, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 95, 138, 0.22) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.page-products .prods-hero-mark {
  position: absolute;
  right: -6px;
  top: 8px;
  font-family: var(--font-display);
  font-size: clamp(84px, 22vw, 260px);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(57, 255, 20, 0.42);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

.page-products .prods-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 28px;
}

.page-products .prods-hero-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--c-orange);
  margin: 0 0 12px;
  text-transform: uppercase;
}

.page-products .prods-hero-title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 58px);
  line-height: 1.06;
  color: var(--c-paper);
  margin: 0;
}

.page-products .prods-hero-title::before {
  content: "";
  display: block;
  width: 84px;
  height: 8px;
  background: var(--c-neon);
  margin-bottom: 20px;
}

.page-products .prods-hero-desc {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--c-body);
  font-size: 17px;
  line-height: 1.7;
}

.page-products .prods-hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-products .prods-hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 36px 0 0;
  padding: 20px 0 0;
  border-top: 2px solid var(--c-neon);
}

.page-products .prods-stat {
  padding: 8px 16px 8px 0;
}

.page-products .prods-stat + .prods-stat {
  border-left: 1px solid rgba(138, 155, 168, 0.25);
  padding-left: 16px;
}

.page-products .prods-stat dt {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-gray);
}

.page-products .prods-stat dd {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  color: var(--c-neon);
}

/* ===== Split layout ===== */
.page-products .prods-split {
  display: grid;
  gap: 28px;
}

/* ===== Card ===== */
.page-products .prods-card {
  position: relative;
  padding: 24px;
  background-color: var(--c-space-700);
  background-image:
    linear-gradient(rgba(138, 155, 168, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 155, 168, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  border: 1px solid rgba(138, 155, 168, 0.26);
  clip-path: polygon(0 0, calc(100% - var(--prods-card-skew)) 0, 100% var(--prods-card-skew), 100% 100%, 0 100%);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.page-products .prods-card:hover {
  border-color: rgba(57, 255, 20, 0.6);
  transform: translateY(-3px);
}

.page-products .prods-card--v4 {
  background:
    linear-gradient(135deg, rgba(30, 58, 95, 0.6), transparent 60%),
    var(--c-space-700);
}

.page-products .prods-card-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.page-products .prods-card-code {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  color: var(--c-neon);
  border: 1px solid rgba(57, 255, 20, 0.45);
  padding: 5px 9px;
  transform: skewX(-6deg);
  transition: background-color 0.25s ease, color 0.25s ease;
}

.page-products .prods-card:hover .prods-card-code {
  background-color: var(--c-neon);
  color: var(--c-space-900);
}

.page-products .prods-card-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--c-paper);
}

.page-products .prods-card p {
  color: var(--c-body);
  font-size: 15px;
  line-height: 1.7;
  margin: 10px 0 0;
}

.page-products .prods-card .prods-steps {
  margin-top: 0;
}

/* ===== Copy column ===== */
.page-products .prods-copy {
  display: grid;
  gap: 22px;
  align-content: start;
}

.page-products .prods-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-products .prods-points li {
  padding-left: 18px;
  border-left: 2px solid var(--c-neon);
  color: var(--c-body);
  font-size: 15px;
  line-height: 1.65;
}

.page-products .prods-points li > span {
  display: block;
  font-weight: 700;
  color: var(--c-paper);
  margin-bottom: 4px;
}

.page-products .prods-note {
  padding: 18px 20px;
  background: rgba(30, 58, 95, 0.45);
  border-left: 3px solid var(--c-orange);
}

.page-products .prods-note strong {
  color: var(--c-orange);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.page-products .prods-note p {
  margin: 6px 0 0;
  color: var(--c-body);
  font-size: 15px;
  line-height: 1.7;
}

.page-products .prods-more-link {
  color: var(--c-neon);
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
}

.page-products .prods-more-link:hover {
  text-decoration: underline;
}

/* ===== Figure ===== */
.page-products .prods-figure {
  margin: 20px 0 0;
  border: 1px solid rgba(138, 155, 168, 0.28);
  background: rgba(10, 20, 40, 0.5);
}

.page-products .prods-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

.page-products .prods-figure figcaption {
  padding: 8px 12px;
  font-size: 12px;
  color: var(--c-gray);
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(138, 155, 168, 0.18);
}

/* ===== Tag filter ===== */
.page-products .prods-filter {
  margin-top: 18px;
}

.page-products .prods-filter-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.page-products .prods-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.page-products .prods-filter-btn {
  display: inline-block;
  padding: 6px 14px;
  background: var(--c-space-500);
  color: var(--c-body);
  border: 1px solid rgba(138, 155, 168, 0.35);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-products .prods-filter-btn:hover {
  border-color: var(--c-neon);
  color: var(--c-neon);
}

.page-products #tab-all:checked ~ .prods-filter-bar label[for="tab-all"],
.page-products #tab-football:checked ~ .prods-filter-bar label[for="tab-football"],
.page-products #tab-basketball:checked ~ .prods-filter-bar label[for="tab-basketball"],
.page-products #tab-tennis:checked ~ .prods-filter-bar label[for="tab-tennis"] {
  background: var(--c-neon);
  color: var(--c-space-900);
  border-color: var(--c-neon);
}

.page-products .prods-filter-panel {
  display: none;
  padding: 16px;
  background: rgba(15, 31, 58, 0.8);
  border: 1px solid rgba(138, 155, 168, 0.2);
}

.page-products #tab-all:checked ~ .prods-filter-body .prods-filter-panel--all,
.page-products #tab-football:checked ~ .prods-filter-body .prods-filter-panel--football,
.page-products #tab-basketball:checked ~ .prods-filter-body .prods-filter-panel--basketball,
.page-products #tab-tennis:checked ~ .prods-filter-body .prods-filter-panel--tennis {
  display: flex;
  flex-wrap: wrap;
}

.page-products .prods-filter-panel .tag {
  margin: 0 8px 8px 0;
}

.page-products .tag--orange {
  background-color: var(--c-orange);
  color: var(--c-space-900);
  border-color: transparent;
}

/* ===== Callout ===== */
.page-products .prods-callout {
  margin-top: 28px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.08), rgba(57, 255, 20, 0.02));
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-left: 4px solid var(--c-neon);
}

.page-products .prods-callout p {
  margin: 0;
  color: var(--c-body);
  line-height: 1.7;
}

/* ===== Steps ===== */
.page-products .prods-steps {
  list-style: none;
  counter-reset: prods-step;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-products .prods-steps li {
  counter-increment: prods-step;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}

.page-products .prods-steps li::before {
  content: counter(prods-step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--c-space-500);
  border: 1px solid var(--c-neon);
  color: var(--c-neon);
  font-family: var(--font-display);
  font-size: 14px;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}

.page-products .prods-step-text {
  color: var(--c-body);
  font-size: 15px;
  line-height: 1.6;
}

.page-products .prods-step-text strong {
  color: var(--c-paper);
  margin-right: 4px;
}

/* ===== Data section ===== */
.page-products .prods-data-intro {
  max-width: 760px;
}

.page-products .prods-data-grid {
  gap: 24px;
}

.page-products .prods-data-card {
  background: var(--c-space-700);
  border: 1px solid rgba(58, 95, 138, 0.4);
  padding: 24px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.page-products .prods-data-card:hover {
  border-color: var(--c-neon);
  transform: translateY(-3px);
}

.page-products .prods-data-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.page-products .prods-data-metric {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--c-neon);
}

.page-products .prods-data-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--c-paper);
  margin: 16px 0 6px;
}

.page-products .prods-data-card p {
  color: var(--c-body);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.page-products .prods-assurance {
  margin-top: 28px;
  padding: 22px;
  background: var(--c-space-700);
  border-top: 3px solid var(--c-orange);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.page-products .prods-assurance p {
  margin: 0;
  color: var(--c-body);
  max-width: 62ch;
  line-height: 1.7;
}

.page-products .prods-assurance strong {
  color: var(--c-paper);
}

/* ===== Device cards ===== */
.page-products .prods-device-grid {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.page-products .prods-device-card {
  padding: 26px 24px;
  border: 1px solid rgba(138, 155, 168, 0.28);
  background: var(--c-space-700);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.page-products .prods-device-card:hover {
  border-color: rgba(57, 255, 20, 0.6);
  transform: translateY(-3px);
}

.page-products .prods-device-svg {
  width: 44px;
  height: 40px;
  color: var(--c-neon);
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: square;
  transition: color 0.25s ease;
}

.page-products .prods-device-card:hover .prods-device-svg {
  color: var(--c-orange);
}

.page-products .prods-device-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--c-paper);
  margin: 16px 0 8px;
}

.page-products .prods-device-card p {
  margin: 0;
  color: var(--c-body);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== Closing banner ===== */
.page-products .prods-closing {
  padding: 64px 0;
  background-color: var(--c-space-900);
  border-top: 1px solid rgba(138, 155, 168, 0.22);
}

.page-products .prods-closing-inner {
  width: min(760px, calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  text-align: center;
}

.page-products .prods-closing .section-label {
  display: inline-block;
  color: var(--c-neon);
  letter-spacing: 0.12em;
}

.page-products .prods-closing h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.15;
  color: var(--c-paper);
  margin: 10px 0 16px;
}

.page-products .prods-closing p {
  color: var(--c-body);
  line-height: 1.7;
}

.page-products .prods-closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 28px 0 20px;
}

.page-products .prods-closing-note {
  font-size: 13px;
  color: var(--c-gray);
  max-width: 54ch;
  margin: 0 auto;
}

/* ===== Responsive ===== */
@media (min-width: 720px) {
  .page-products .prods-hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-products .prods-hero-stats .prods-stat + .prods-stat {
    border-left: 1px solid rgba(138, 155, 168, 0.25);
  }

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

@media (min-width: 900px) {
  .page-products .prods-section {
    padding: 72px 0;
  }

  .page-products .prods-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }

  .page-products .prods-card,
  .page-products .prods-data-card,
  .page-products .prods-device-card {
    padding: 30px;
  }

  .page-products .prods-hero {
    padding: 52px 0 48px;
  }

  .page-products .prods-hero-title {
    font-size: clamp(40px, 5vw, 58px);
  }

  .page-products .prods-hero-inner {
    padding-top: 40px;
  }

  .page-products .prods-closing {
    padding: 80px 0;
  }
}
