.page-products {
  --pp-black: var(--c-black);
  --pp-white: var(--c-white);
  --pp-red: var(--c-red);
  --pp-silver: var(--c-silver);
  --pp-night: var(--c-night);
  --pp-light: var(--c-light);
  --pp-dark: var(--c-dark);
  --pp-warn: var(--c-warn);
  --pp-container: var(--container-w);
  --pp-gap: 64px;
  --pp-gap-md: 44px;
  --pp-gap-sm: 28px;
  --pp-line: 1px solid var(--c-light);
  --pp-line-light: 1px solid rgba(255, 255, 255, 0.16);
}

.page-products .c-container {
  max-width: var(--pp-container);
  margin-inline: auto;
  padding-inline: 20px;
}

.page-products .c-breadcrumb {
  padding: 18px 0 0;
}

.page-products .c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 13px;
}

.page-products .c-breadcrumb__link {
  color: var(--pp-silver);
  text-decoration: none;
}

.page-products .c-breadcrumb__link:hover {
  color: var(--pp-red);
}

.page-products .c-breadcrumb__current {
  color: var(--pp-black);
}

.pp-hero {
  position: relative;
  background: var(--pp-black);
  color: var(--pp-white);
  padding: 56px 0 72px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), 0 100%);
}

.pp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(212, 0, 0, 0.5), transparent 62%);
  pointer-events: none;
}

.pp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.pp-hero__inner {
  position: relative;
  z-index: 1;
}

.pp-hero .c-kicker {
  color: var(--pp-red);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  margin: 0 0 12px;
}

.pp-hero h1 {
  margin: 0 0 16px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--pp-white);
  letter-spacing: 0.01em;
  max-width: 10em;
}

.pp-hero__desc {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.84);
  max-width: 560px;
}

.pp-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.pp-hero__stat strong {
  display: inline-block;
  color: var(--pp-white);
  background: var(--pp-red);
  padding: 2px 8px;
  margin-right: 6px;
  font-weight: 700;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 6px 100%);
}

.pp-hero__action {
  display: inline-block;
}

.pp-hero__stripes {
  position: absolute;
  right: -90px;
  top: 0;
  bottom: 0;
  width: 220px;
  opacity: 0.6;
  background-image: repeating-linear-gradient(-28deg, transparent 0 20px, var(--pp-red) 20px 23px);
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
}

.pp-section {
  padding: 56px 0;
}

.pp-section--schedule {
  background: var(--pp-light);
  position: relative;
}

.pp-section--schedule::before {
  content: "";
  display: block;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--pp-red) 0 18px, transparent 18px 32px);
}

.pp-section--standings {
  background: var(--pp-black);
  color: var(--pp-white);
  position: relative;
}

.pp-section--standings::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--pp-red) 0 30%, transparent 30% 62%, var(--pp-red) 62% 100%);
}

.pp-section--homeaway {
  background: var(--pp-white);
}

.pp-section--membership {
  background: var(--pp-night);
  color: var(--pp-white);
  position: relative;
  overflow: hidden;
}

.pp-section--membership::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 20%;
  width: 280px;
  height: 480px;
  background: linear-gradient(180deg, transparent, rgba(212, 0, 0, 0.2), transparent);
  transform: rotate(-18deg);
  pointer-events: none;
}

.pp-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.pp-section-head .c-kicker {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--pp-red);
}

.pp-section-head h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.pp-section-head--light h2 {
  color: var(--pp-white);
}

.pp-section-head--light .c-kicker {
  color: var(--pp-red);
}

.pp-section-desc {
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--pp-dark);
  max-width: 640px;
}

.pp-section--standings .pp-section-desc,
.pp-section--membership .pp-section-desc {
  color: rgba(255, 255, 255, 0.82);
}

.pp-more-link {
  color: var(--pp-dark);
  font-size: 13px;
  text-decoration: none;
  border-bottom: 2px solid var(--pp-red);
  padding-bottom: 2px;
  white-space: nowrap;
  font-weight: 700;
}

.pp-more-link:hover {
  color: var(--pp-red);
}

.pp-more-link--light {
  color: var(--pp-white);
}

.schedule-filters,
.pp-schedule-filters {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 30px;
  padding: 18px 16px 14px;
  background: var(--pp-white);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.pp-schedule-filter__group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pp-schedule-filter__label {
  flex: 0 0 auto;
  width: 72px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--pp-silver);
  letter-spacing: 0.1em;
}

.pp-schedule-filter__row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.pp-schedule-filter__row::-webkit-scrollbar {
  display: none;
}

.pp-schedule-filter__tag {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--pp-dark);
  background: var(--pp-light);
  white-space: nowrap;
  cursor: default;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}

.pp-schedule-filter__tag.is-active {
  background: var(--pp-red);
  color: var(--pp-white);
}

.pp-schedule-main {
  display: grid;
  gap: 26px;
}

.pp-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pp-match {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr 64px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 12px 12px;
  background: var(--pp-white);
  inset-inline-start: 0;
  transition: background 0.25s ease;
}

.pp-match:hover {
  background: #ffffff;
}

.pp-match--live::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--pp-red);
}

.pp-match__time {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pp-match__round {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--pp-silver);
}

.pp-match__hour {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--pp-dark);
}

.pp-match__team {
  font-size: 14px;
  font-weight: 700;
  color: var(--pp-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pp-match__score {
  text-align: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  color: var(--pp-red);
}

.pp-match__status {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--pp-silver);
  text-align: right;
}

.pp-match__status.is-live {
  color: var(--pp-red);
  font-weight: 700;
}

.pp-schedule-media {
  margin: 0;
  padding: 14px;
  background: var(--pp-white);
}

.pp-schedule-media img,
.pp-standing-media img,
.pp-ha-figure img,
.pp-member-push__visual,
.pp-member-notice__icon {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.pp-schedule-media img {
  height: auto;
}

.pp-standings-grid {
  display: grid;
  gap: 28px;
  margin-bottom: 30px;
}

.pp-standing-chart {
  position: relative;
  background: #121212;
  padding: 20px 16px 16px;
  border-left: 3px solid var(--pp-red);
}

.pp-standing-chart__title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 900;
  color: var(--pp-white);
}

.pp-chart__axis {
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 1;
  shape-rendering: crispEdges;
}

.pp-chart__axis-note {
  font-family: var(--font-mono);
  font-size: 11px;
  fill: rgba(255, 255, 255, 0.5);
}

.pp-chart__axis-note--right {
  text-anchor: end;
}

.pp-chart__team {
  font-size: 12px;
  font-weight: 700;
  fill: var(--pp-white);
}

.pp-chart__bar {
  fill: var(--pp-red);
  opacity: 0.88;
}

.pp-chart__pts {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  fill: var(--pp-white);
  text-anchor: end;
}

.pp-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pp-standing-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 13px;
}

.pp-standing-table caption {
  text-align: left;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  padding-bottom: 8px;
}

.pp-standing-table th {
  text-align: left;
  padding: 10px 10px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 12px;
  white-space: nowrap;
}

.pp-standing-table td {
  padding: 10px;
  color: var(--pp-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.pp-standing-table td:first-child {
  color: var(--pp-red);
  font-weight: 700;
}

.pp-standing-table td:last-child {
  font-weight: 700;
  text-align: right;
}

.pp-standing-media {
  margin: 0 auto;
  max-width: 1000px;
}

.pp-ha-orbit {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--pp-silver);
}

.pp-ha-orbit__home {
  color: var(--pp-red);
  font-weight: 700;
}

.pp-ha-orbit__line {
  position: relative;
  flex: 1;
  height: 2px;
  background: var(--pp-light);
}

.pp-ha-orbit__line::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 8px;
  height: 8px;
  background: var(--pp-red);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.pp-ha-orbit__away {
  font-weight: 700;
}

.pp-ha-compare {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.pp-ha-card {
  padding: 22px 18px;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.pp-ha-card--home {
  background: var(--pp-black);
  color: var(--pp-white);
}

.pp-ha-card--home::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--pp-red);
}

.pp-ha-card--away {
  background: var(--pp-light);
  color: var(--pp-dark);
  clip-path: polygon(0 18px, 18px 0, 100% 0, 100% 100%, 0 100%);
}

.pp-ha-card__kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.pp-ha-card--away .pp-ha-card__kicker {
  color: var(--pp-red);
}

.pp-ha-metric {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.pp-ha-card--away .pp-ha-metric {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.pp-ha-metric:last-child {
  border-bottom: 0;
}

.pp-ha-metric__label {
  font-size: 13px;
  font-weight: 700;
}

.pp-ha-metric__value {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--pp-red);
}

.pp-ha-metric__note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.pp-ha-card--away .pp-ha-metric__note {
  color: rgba(0, 0, 0, 0.55);
}

.pp-ha-figure {
  margin: 0;
}

.pp-ha-figure img {
  max-width: 800px;
  margin-inline: auto;
}

.pp-ha-figure__caption {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--pp-silver);
  padding-top: 8px;
}

.pp-member-grid {
  display: grid;
  gap: 26px;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.pp-member-notice {
  position: relative;
  background: var(--pp-black);
  padding: 24px 20px 28px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.pp-member-notice__icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 14px;
}

.pp-member-notice__title {
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 10px;
  color: var(--pp-white);
}

.pp-member-notice__desc {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 18px;
}

.pp-member-panel {
  background: rgba(255, 255, 255, 0.06);
}

.pp-member-panel .c-panel__summary {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--pp-white);
  cursor: pointer;
  padding: 12px 14px;
}

.pp-member-panel .c-panel__body {
  padding: 0 14px 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.pp-member-panel__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 18px;
  margin: 0;
}

.pp-member-push {
  position: relative;
  background: linear-gradient(135deg, rgba(212, 0, 0, 0.22), rgba(255, 255, 255, 0.03));
  padding: 18px 16px 20px;
  border-top: 4px solid var(--pp-red);
}

.pp-member-push__visual {
  margin-bottom: 16px;
}

.pp-member-push__status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.pp-member-push__dot {
  width: 8px;
  height: 8px;
  background: var(--pp-red);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.pp-member-push__label {
  letter-spacing: 0.08em;
}

.pp-member-push__state {
  margin-left: auto;
  color: var(--pp-white);
  background: var(--pp-red);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 6px 100%);
}

.pp-member-push__time {
  width: 100%;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}

.pp-directory {
  background: var(--pp-black);
  color: var(--pp-white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.pp-directory::after {
  content: "MILAN";
  position: absolute;
  right: -30px;
  bottom: -30px;
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 92px;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}

.pp-directory .c-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--pp-red);
  letter-spacing: 0.14em;
  margin: 0 0 8px;
}

.pp-directory__title {
  font-size: 26px;
  margin: 0 0 22px;
  color: var(--pp-white);
}

.pp-directory__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.pp-directory__item {
  border-left: 3px solid transparent;
}

.pp-directory__item a {
  display: block;
  padding: 12px 12px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.25s ease, color 0.25s ease;
}

.pp-directory__item a:hover {
  background: var(--pp-red);
  color: var(--pp-white);
}

.page-products :focus-visible {
  outline: 2px solid var(--pp-red);
  outline-offset: 2px;
}

@media (min-width: 640px) {
  .page-products .c-container {
    padding-inline: 32px;
  }

  .pp-hero h1 {
    font-size: 38px;
  }

  .pp-section-head h2 {
    font-size: 30px;
  }

  .pp-schedule-main {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .pp-schedule-media {
    order: -1;
  }

  .pp-standings-grid {
    grid-template-columns: 5fr 7fr;
    align-items: start;
  }

  .pp-ha-compare {
    grid-template-columns: 1fr 1fr;
  }

  .pp-member-grid {
    grid-template-columns: 5fr 7fr;
    align-items: start;
  }

  .pp-directory__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .pp-hero {
    padding: 84px 0 110px;
  }

  .pp-hero h1 {
    font-size: 48px;
  }

  .pp-hero__desc {
    font-size: 16px;
  }

  .pp-section {
    padding: 84px 0;
  }

  .pp-section-desc {
    font-size: 15px;
  }

  .pp-schedule-filters {
    flex-direction: row;
    gap: 24px;
    padding: 20px 24px;
  }

  .pp-schedule-filter__group {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .pp-schedule-filter__label {
    width: auto;
  }

  .pp-standing-chart {
    padding: 24px 22px;
  }

  .pp-standing-table th,
  .pp-standing-table td {
    padding: 14px 12px;
  }

  .pp-ha-card {
    padding: 28px 24px;
  }

  .pp-ha-metric__value {
    font-size: 30px;
  }

  .pp-member-notice {
    padding: 30px 24px 34px;
  }

  .pp-directory {
    padding: 72px 0;
  }

  .pp-directory__title {
    font-size: 32px;
  }
}
