.page-products {
  --prod-shadow: 0 14px 34px rgba(10, 37, 64, 0.1);
  --prod-shadow-raised: 0 20px 44px rgba(10, 37, 64, 0.16);
}

.page-products .prod-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 96px;
  background:
    radial-gradient(ellipse at 86% 12%, rgba(255, 107, 74, 0.18) 0%, transparent 46%),
    radial-gradient(ellipse at 10% 82%, rgba(255, 255, 255, 0.07) 0%, transparent 50%),
    var(--c-deep);
  color: var(--c-white);
}

.page-products .prod-hero__crumb {
  max-width: var(--max-width);
  margin: 0 auto 28px;
  padding: 0 24px;
  font-family: var(--font-mono);
  font-size: 13px;
}

.page-products .prod-hero__crumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-products .prod-hero__crumb a:hover {
  color: var(--c-coral);
}

.page-products .prod-hero__crumb .crumb__sep {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 8px;
}

.page-products .prod-hero__crumb span[aria-current="page"] {
  color: var(--c-coral);
  font-weight: 700;
}

.page-products .prod-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}

.page-products .prod-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--c-coral);
  text-transform: uppercase;
  margin: 0 0 12px;
}

.page-products .prod-hero__title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}

.page-products .prod-hero__lead {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 660px;
}

.page-products .prod-hero__list {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.page-products .prod-hero__list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px 16px;
  padding: 14px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.page-products .prod-hero__list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--c-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: color 0.2s ease;
}

.page-products .prod-hero__list a:hover {
  color: var(--c-coral);
}

.page-products .prod-hero__node {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-coral);
  box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.22);
  flex: none;
}

.page-products .prod-hero__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
}

.page-products .prod-hero__overview {
  position: relative;
  background: rgba(10, 37, 64, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) + 4px);
  padding: 28px 26px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.page-products .prod-hero__overview::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 26px;
  width: 56px;
  height: 3px;
  border-radius: 3px;
  background: var(--c-coral);
}

.page-products .prod-hero__overview-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--c-coral);
  text-transform: uppercase;
  margin: 0 0 20px;
}

.page-products .prod-hero__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.page-products .prod-hero__stat dt {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}

.page-products .prod-hero__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-coral);
}

.page-products .prod-hero__stat-unit {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

.page-products .prod-hero__note {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-products .prod-hero__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-coral);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.page-products .prod-hero__link:hover {
  border-bottom-color: var(--c-coral);
  color: var(--c-coral-hover);
}

.page-products .prod-hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  z-index: 2;
  pointer-events: none;
}

.page-products .prod-hero__wave svg {
  display: block;
  width: 100%;
  height: 56px;
}

.page-products .prod-ranking {
  padding: 64px 0;
  background: var(--c-light);
}

.page-products .prod-ranking__grid,
.page-products .prod-report__grid,
.page-products .prod-shot__grid,
.page-products .prod-shot__dim-grid,
.page-products .prod-scenes__panel-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.page-products .prod-ranking__desc,
.page-products .prod-report__desc {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--c-slate);
}

.page-products .prod-ranking__fields {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--c-line);
}

.page-products .prod-ranking__fields li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px 16px;
  padding: 14px 2px;
  border-bottom: 1px solid var(--c-line);
}

.page-products .prod-ranking__field-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-navy);
}

.page-products .prod-ranking__field-desc {
  font-size: 13px;
  color: var(--c-slate);
  text-align: right;
}

.page-products .prod-ranking__media,
.page-products .prod-report__media,
.page-products .prod-shot__media,
.page-products .prod-scenes__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-white);
  box-shadow: var(--prod-shadow);
}

.page-products .prod-ranking__media img,
.page-products .prod-report__media img,
.page-products .prod-shot__media img,
.page-products .prod-scenes__media img {
  display: block;
  width: 100%;
  height: auto;
}

.page-products .prod-ranking__media figcaption,
.page-products .prod-report__media figcaption,
.page-products .prod-shot__media figcaption,
.page-products .prod-scenes__media figcaption {
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-slate);
  border-top: 1px solid var(--c-line);
}

.page-products .prod-report {
  padding: 64px 0;
  background: var(--c-white);
}

.page-products .prod-report__media {
  max-width: 300px;
  margin: 0 auto;
}

.page-products .prod-report__features {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.page-products .prod-report__features li {
  position: relative;
  padding: 0 0 22px 26px;
}

.page-products .prod-report__features li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-coral);
}

.page-products .prod-report__features li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 18px;
  bottom: -4px;
  border-left: 2px dashed var(--c-line);
}

.page-products .prod-report__features li:last-child::after {
  display: none;
}

.page-products .prod-report__features strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 4px;
}

.page-products .prod-report__features span {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-slate);
}

.page-products .prod-shot {
  padding: 72px 0 80px;
  background:
    radial-gradient(ellipse at 90% 8%, rgba(255, 107, 74, 0.12) 0%, transparent 44%),
    var(--c-deep);
  color: var(--c-white);
}

.page-products .prod-shot .tag {
  color: rgba(255, 255, 255, 0.82);
}

.page-products .prod-shot__desc {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
}

.page-products .prod-shot__grid {
  margin-top: 40px;
}

.page-products .prod-shot__media {
  background: var(--c-navy);
}

.page-products .prod-shot__media figcaption {
  color: rgba(255, 255, 255, 0.62);
  border-top-color: rgba(255, 255, 255, 0.14);
}

.page-products .prod-shot__fields {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-products .prod-shot__field {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.page-products .prod-shot__field summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding-left: 30px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-white);
  transition: color 0.2s ease;
}

.page-products .prod-shot__field summary::-webkit-details-marker {
  display: none;
}

.page-products .prod-shot__field summary:hover {
  color: var(--c-coral);
}

.page-products .prod-shot__field summary::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 20px;
  line-height: 1;
  color: var(--c-coral);
}

.page-products .prod-shot__field[open] summary::before {
  content: "−";
}

.page-products .prod-shot__field p {
  margin: 12px 0 4px 30px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
}

.page-products .prod-shot__dimensions {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.page-products .prod-shot__dim-title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 900;
  color: var(--c-white);
}

.page-products .prod-shot__dim-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.page-products .prod-shot__dim-card:hover {
  border-color: var(--c-coral);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.page-products .prod-shot__dim-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--c-coral);
  color: var(--c-white);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
}

.page-products .prod-shot__dim-name {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-white);
}

.page-products .prod-shot__dim-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.66);
}

.page-products .prod-shot__note {
  margin: 24px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
}

.page-products .prod-shot__link {
  color: var(--c-coral);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.page-products .prod-shot__link:hover {
  border-bottom-color: var(--c-coral);
  color: var(--c-coral-hover);
}

.page-products .prod-scenes {
  padding: 64px 0;
  background: var(--c-light);
}

.page-products .prod-scenes__lead {
  max-width: 720px;
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--c-slate);
}

.page-products .prod-scenes__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.page-products .prod-scenes__radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  clip: rect(0 0 0 0);
  pointer-events: none;
}

.page-products .prod-scenes__tab {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: var(--c-white);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-slate);
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.page-products .prod-scenes__tab:hover {
  border-color: var(--c-coral);
  color: var(--c-deep);
}

.page-products .prod-scenes__radio:checked + .prod-scenes__tab {
  background: var(--c-deep);
  border-color: var(--c-deep);
  color: var(--c-white);
}

.page-products .prod-scenes__panel {
  display: none;
  flex-basis: 100%;
}

.page-products #ps-team:checked ~ .prod-scenes__panel--team,
.page-products #ps-player:checked ~ .prod-scenes__panel--player,
.page-products #ps-league:checked ~ .prod-scenes__panel--league {
  display: block;
}

.page-products .prod-scenes__panel-inner {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 2px dashed var(--c-coral);
}

.page-products .prod-scenes__copy h3 {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 900;
  color: var(--c-navy);
}

.page-products .prod-scenes__copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-slate);
}

.page-products .prod-scenes__points {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-products .prod-scenes__points li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-navy);
}

.page-products .prod-scenes__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-coral);
}

.page-products .prod-cta {
  padding: 56px 0 72px;
  background: var(--c-white);
}

.page-products .prod-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.page-products .prod-cta__statement {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.65;
  color: var(--c-navy);
}

.page-products .prod-cta__credential {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-slate);
}

.page-products .prod-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
}

@media (min-width: 960px) {
  .page-products .prod-hero {
    padding: 64px 0 110px;
  }

  .page-products .prod-hero__title {
    font-size: 38px;
  }

  .page-products .prod-hero__inner {
    grid-template-columns: 7fr 5fr;
    gap: 56px;
    align-items: start;
  }

  .page-products .prod-ranking__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 52px;
    align-items: center;
  }

  .page-products .prod-report__grid {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 56px;
    align-items: start;
  }

  .page-products .prod-report__media {
    max-width: 340px;
    margin: 0;
    position: sticky;
    top: 140px;
  }

  .page-products .prod-shot__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
  }

  .page-products .prod-shot__dim-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .page-products .prod-scenes__panel-inner {
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: center;
  }

  .page-products .prod-scenes__panel--team .prod-scenes__panel-inner {
    grid-template-columns: 1fr;
  }
}
