.page-products {
  --pp-space: clamp(72px, 8vw, 120px);
  --pp-line: rgba(201, 160, 99, 0.34);
  --pp-ink: #E2DFD6;
  color: var(--navy);
  background: var(--warm);
  line-height: 1.7;
  scroll-behavior: smooth;
}

.page-products h1,
.page-products h2,
.page-products h3 {
  font-family: var(--f-head);
  font-weight: 700;
  letter-spacing: 0.01em;
}

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

.page-products .media-frame {
  width: 100%;
  overflow: hidden;
}

.page-products .media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-products a:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
  border-radius: 4px;
}

.pp-container {
  width: 100%;
  max-width: var(--cw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.pp-hero {
  position: relative;
  background: var(--navy);
  color: var(--warm);
  overflow: hidden;
  padding: clamp(40px, 7vw, 88px) 0 72px;
}

.pp-hero::before {
  content: "BALLBET";
  position: absolute;
  right: -2%;
  top: 14%;
  font-family: var(--f-head);
  font-size: clamp(120px, 24vw, 330px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 160, 99, 0.16);
  pointer-events: none;
  white-space: nowrap;
}

.pp-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green) 18%, var(--gold) 52%, transparent 100%);
}

.pp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(32px, 5vw, 64px);
}

.pp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 24px;
}

.pp-breadcrumb .crumb-link {
  color: rgba(244, 244, 240, 0.72);
  text-decoration: none;
  transition: color 0.24s var(--ease);
}

.pp-breadcrumb .crumb-link:hover {
  color: var(--green);
}

.pp-breadcrumb .crumb-current {
  color: var(--gold);
  font-family: var(--f-body);
  font-weight: 500;
}

.pp-break {
  color: rgba(201, 160, 99, 0.55);
}

.pp-hero-kicker {
  font-family: var(--f-num);
  font-size: 12px;
  letter-spacing: 0.38em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.pp-hero-left h1 {
  font-size: clamp(2.3rem, 6vw, 4.3rem);
  line-height: 1.14;
  margin: 0 0 24px;
  max-width: 16ch;
}

.pp-hero-left h1 span {
  color: var(--green);
}

.pp-hero-lead {
  font-size: clamp(15px, 1.4vw, 17px);
  color: rgba(244, 244, 240, 0.86);
  max-width: 62ch;
  margin: 0 0 30px;
}

.pp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  border-top: 1px solid rgba(201, 160, 99, 0.35);
  padding-top: 20px;
  margin-bottom: 34px;
  font-size: 14px;
  color: rgba(244, 244, 240, 0.7);
}

.pp-meta-num {
  font-family: var(--f-num);
  color: var(--green);
  font-weight: 600;
}

.pp-hero-left .btn--solid {
  background: var(--green);
  color: var(--navy);
  border: 2px solid var(--green);
  padding: 14px 30px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
  box-shadow: 0 0 0 rgba(57, 255, 136, 0);
}

.pp-hero-left .btn--solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(57, 255, 136, 0.24);
}

.pp-hero-right {
  display: flex;
  align-items: center;
}

.pp-hero-shot {
  border-radius: clamp(16px, 2vw, 28px);
  border: 1px solid rgba(201, 160, 99, 0.38);
  box-shadow: 0 32px 70px rgba(4, 10, 20, 0.46);
  aspect-ratio: 2 / 1;
}

.pp-workspace {
  padding-block: var(--pp-space);
  display: block;
}

.pp-aside {
  margin-bottom: 42px;
  position: relative;
  z-index: 12;
}

.pp-aside-title {
  display: none;
}

.pp-aside-nav {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0 4px 10px 0;
  scrollbar-width: none;
}

.pp-aside-nav::-webkit-scrollbar {
  display: none;
}

.pp-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  background: var(--warm);
  border: 1px solid var(--gold);
  color: var(--navy);
  padding: 12px 18px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.24s var(--ease), color 0.24s var(--ease), border-color 0.24s var(--ease);
}

.pp-nav-link:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--warm);
}

.pp-nav-num {
  font-family: var(--f-num);
  font-size: 12px;
  color: var(--gold);
}

.pp-nav-link:hover .pp-nav-num {
  color: var(--green);
}

.page-products:has(#pp-overview:target) .pp-nav-link[href="#pp-overview"],
.page-products:has(#pp-collect:target) .pp-nav-link[href="#pp-collect"],
.page-products:has(#pp-injury:target) .pp-nav-link[href="#pp-injury"],
.page-products:has(#pp-stat:target) .pp-nav-link[href="#pp-stat"],
.page-products:has(#pp-team:target) .pp-nav-link[href="#pp-team"] {
  background: var(--green);
  border-color: var(--green);
  color: var(--navy);
}

.page-products:has(#pp-overview:target) .pp-nav-link[href="#pp-overview"] .pp-nav-num,
.page-products:has(#pp-collect:target) .pp-nav-link[href="#pp-collect"] .pp-nav-num,
.page-products:has(#pp-injury:target) .pp-nav-link[href="#pp-injury"] .pp-nav-num,
.page-products:has(#pp-stat:target) .pp-nav-link[href="#pp-stat"] .pp-nav-num,
.page-products:has(#pp-team:target) .pp-nav-link[href="#pp-team"] .pp-nav-num {
  color: var(--navy);
}

.pp-modules {
  display: flex;
  flex-direction: column;
  gap: 84px;
}

.pp-module {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.pp-module:target {
  animation: pp-pulse 1.2s var(--ease);
}

@keyframes pp-pulse {
  0% {
    background-color: rgba(57, 255, 136, 0.3);
    border-radius: 24px;
  }
  100% {
    background-color: transparent;
    border-radius: 24px;
  }
}

.pp-section-head,
.pp-module-head {
  display: flex;
  align-items: flex-start;
  gap: clamp(18px, 3vw, 38px);
  margin-bottom: clamp(34px, 4vw, 52px);
}

.page-products .sec-index {
  font-family: var(--f-head);
  font-size: clamp(64px, 10vw, 120px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.page-products .sec-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin: 0 0 10px;
}

.page-products .sec-note {
  font-size: 15px;
  color: var(--gray);
  margin: 0;
  max-width: 72ch;
}

.pp-module-divider {
  height: 42px;
  background: repeating-linear-gradient(135deg, var(--gold) 0 6px, transparent 6px 14px);
  opacity: 0.38;
  clip-path: polygon(0 18%, 100% 0, 100% 82%, 0 100%);
  margin-block: 6px;
}

.pp-card-grid {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.pp-feature-card {
  background: var(--white);
  border: 1px solid var(--pp-ink);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.pp-feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 18px 36px rgba(11, 31, 58, 0.1);
}

.pp-feature-icon {
  display: inline-flex;
  color: var(--navy);
  margin-bottom: 16px;
  transition: color 0.3s var(--ease);
}

.pp-feature-card:hover .pp-feature-icon {
  color: var(--green);
}

.pp-feature-title {
  font-size: 19px;
  margin: 0 0 10px;
}

.pp-feature-desc {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
  line-height: 1.75;
}

.pp-stats-row {
  display: grid;
  gap: 1px;
  background: rgba(11, 31, 58, 0.08);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.pp-stat-item {
  background: var(--warm);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.pp-stat-num {
  font-family: var(--f-num);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
}

.pp-stat-plus {
  color: var(--green);
}

.pp-stat-label {
  font-size: 13px;
  color: var(--gray);
}

.pp-dev-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}

.pp-dev-label {
  font-family: var(--f-num);
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0;
}

.pp-dev-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
  position: relative;
}

.pp-dev-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 22px;
  border-left: 2px solid rgba(201, 160, 99, 0.4);
}

.pp-dev-item::before {
  content: "";
  position: absolute;
  left: -5px;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  margin-top: 4px;
}

.pp-dev-item .pp-dev-item::before {
  position: static;
  margin-top: 0;
}

.pp-dev-year {
  font-family: var(--f-num);
  font-size: 15px;
  color: var(--navy);
  font-weight: 700;
}

.pp-dev-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.pp-dev-block .btn--ghost {
  border: 1px solid transparent;
  border-bottom-color: var(--gold);
  color: var(--navy);
  padding: 8px 2px;
  font-size: 14px;
}

.pp-slot-grid {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(36px, 4vw, 56px);
}

.pp-slot-card {
  background: var(--white);
  border: 1px solid var(--pp-ink);
  border-top: 3px solid var(--gold);
  border-radius: var(--r-lg);
  padding: 26px;
  transition: border-top-color 0.28s var(--ease), transform 0.28s var(--ease);
}

.pp-slot-card:hover {
  border-top-color: var(--green);
  transform: translateY(-4px);
}

.pp-slot-tag {
  font-family: var(--f-num);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 12px;
}

.pp-slot-name {
  font-size: 22px;
  margin: 0 0 8px;
}

.pp-slot-note {
  font-size: 14px;
  color: var(--gray);
  margin: 0 0 18px;
  line-height: 1.75;
}

.pp-slot-detail {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px dashed rgba(11, 31, 58, 0.16);
  padding-top: 14px;
}

.pp-slot-detail li {
  font-size: 13px;
  color: var(--navy);
  padding: 5px 0 5px 18px;
  position: relative;
}

.pp-slot-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.pp-clip-grid {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.pp-clip-title {
  font-size: 22px;
  margin: 0 0 18px;
}

.pp-clip-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.pp-clip-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.7;
}

.pp-num {
  font-family: var(--f-num);
  font-size: 13px;
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 600;
}

.pp-clip-grid .btn--outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.24s var(--ease), color 0.24s var(--ease);
}

.pp-clip-grid .btn--outline:hover {
  background: var(--navy);
  color: var(--warm);
}

.pp-clip-media {
  border-radius: var(--r-lg);
  border: 1px solid var(--pp-line);
  box-shadow: 0 22px 44px rgba(11, 31, 58, 0.12);
  aspect-ratio: 8 / 5;
}

.pp-injury {
  background: var(--navy);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 44px);
  color: var(--warm);
  box-shadow: 0 28px 60px rgba(11, 31, 58, 0.2);
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.pp-injury .sec-note,
.pp-injury .pp-update-label,
.pp-injury .pp-status-label,
.pp-injury .pp-tag-row .tag {
  color: rgba(244, 244, 240, 0.82);
}

.pp-module:target.pp-injury {
  animation: pp-injury-pulse 1.2s var(--ease);
}

@keyframes pp-injury-pulse {
  0% {
    box-shadow: 0 0 0 6px rgba(57, 255, 136, 0.4);
  }
  100% {
    box-shadow: 0 28px 60px rgba(11, 31, 58, 0.2);
  }
}

.pp-injury-grid {
  display: grid;
  gap: clamp(22px, 3vw, 36px);
  align-items: center;
  margin-bottom: 24px;
}

.pp-injury-panel {
  background: rgba(244, 244, 240, 0.04);
  border: 1px solid rgba(201, 160, 99, 0.28);
  border-radius: 20px;
  padding: 22px;
}

.pp-update-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(244, 244, 240, 0.1);
  font-size: 14px;
}

.pp-update-row:last-of-type {
  border-bottom: 0;
}

.pp-update-label {
  color: var(--gray);
}

.pp-update-value {
  font-family: var(--f-num);
  color: var(--green);
  font-weight: 600;
}

.pp-status-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0 20px;
}

.pp-status-item {
  background: rgba(201, 160, 99, 0.14);
  border-radius: 14px;
  padding: 14px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pp-status-time {
  font-family: var(--f-num);
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
}

.pp-status-label {
  font-size: 12px;
  color: rgba(244, 244, 240, 0.72);
}

.pp-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pp-tag-row .tag {
  font-size: 12px;
  border-radius: var(--r-pill);
  padding: 6px 12px;
  background: rgba(124, 77, 255, 0.18);
  color: #D8C6FF;
}

.pp-injury-visual {
  border-radius: 20px;
  border: 1px solid rgba(201, 160, 99, 0.3);
  aspect-ratio: 3 / 2;
}

.pp-injury-note {
  background: linear-gradient(90deg, rgba(57, 255, 136, 0.12), transparent 60%);
  border-left: 3px solid var(--green);
  padding: 16px 20px;
  border-radius: 0 14px 14px 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(244, 244, 240, 0.86);
}

.pp-injury-note strong {
  color: var(--green);
}

.pp-stat-layout {
  display: grid;
  gap: clamp(24px, 3.5vw, 48px);
  align-items: start;
}

.pp-fields-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pp-field-group {
  background: var(--white);
  border: 1px solid var(--pp-ink);
  border-radius: 16px;
  overflow: hidden;
}

.pp-field-group[open] {
  border-color: var(--green);
}

.pp-field-group summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  transition: background 0.2s var(--ease);
}

.pp-field-group summary::-webkit-details-marker {
  display: none;
}

.pp-field-group summary::after {
  content: "+";
  font-family: var(--f-num);
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}

.pp-field-group[open] summary::after {
  transform: rotate(45deg);
  color: var(--green);
}

.pp-field-group summary:hover {
  background: rgba(57, 255, 136, 0.06);
}

.pp-field-count {
  font-family: var(--f-num);
  font-size: 13px;
  color: var(--green);
  background: rgba(57, 255, 136, 0.12);
  padding: 3px 9px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.pp-field-list {
  list-style: none;
  margin: 0;
  padding: 0 20px 18px;
  display: grid;
  gap: 10px;
}

.pp-field-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--gray);
  border-bottom: 1px dashed rgba(11, 31, 58, 0.1);
  padding-bottom: 8px;
}

.pp-field-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.pp-fields-note {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.75;
  margin: 6px 0 10px;
}

.pp-fields-list .btn--ghost {
  align-self: flex-start;
  border-bottom: 1px solid var(--gold);
  color: var(--navy);
  font-size: 14px;
  padding: 8px 2px;
}

.pp-heat-wrap {
  background: var(--white);
  border: 1px solid var(--pp-ink);
  border-radius: var(--r-lg);
  padding: 22px;
}

.pp-heat-head {
  margin-bottom: 18px;
}

.pp-heat-title {
  font-size: 19px;
  margin: 0 0 6px;
}

.pp-heat-desc {
  font-size: 13px;
  color: var(--gray);
  margin: 0;
  line-height: 1.7;
}

.pp-heat-fig {
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
}

.pp-heat {
  width: 100%;
  display: block;
  height: auto;
}

.pp-heat-group-title {
  font-family: var(--f-num);
  font-size: 15px;
  fill: var(--warm);
  font-weight: 600;
  letter-spacing: 0.14em;
}

.pp-heat-cell rect {
  transition: fill 0.2s ease, filter 0.2s ease;
  cursor: default;
}

.pp-heat-cell:hover rect {
  fill: var(--green) !important;
  filter: drop-shadow(0 0 8px rgba(57, 255, 136, 0.6));
}

.pp-heat-cell text {
  font-family: var(--f-num);
  font-size: 13px;
  text-anchor: middle;
  fill: var(--white);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
  font-weight: 700;
}

.pp-heat-cell:hover text {
  opacity: 1;
}

.pp-heat-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  padding: 14px 16px;
  background: rgba(11, 31, 58, 0.05);
  border-radius: 0 0 16px 16px;
}

.pp-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--gray);
}

.pp-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
}

.pp-legend-dot--green {
  background: var(--green);
}

.pp-legend-dot--blue {
  background: var(--blue);
}

.pp-legend-swatch {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gray);
  display: inline-block;
}

.pp-dist-visual {
  margin-top: 16px;
  border-radius: 16px;
  border: 1px solid var(--pp-line);
  aspect-ratio: 14 / 9;
}

.pp-team-card {
  background: var(--dark);
  border: 1px solid var(--pp-line);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 44px);
  color: var(--warm);
  scroll-margin-top: calc(var(--header-h) + 18px);
  box-shadow: 0 28px 60px rgba(10, 15, 20, 0.24);
}

.pp-team-card .sec-note {
  color: rgba(244, 244, 240, 0.74);
}

.pp-team-visual {
  border-radius: 20px;
  border: 1px solid rgba(201, 160, 99, 0.28);
  aspect-ratio: 8 / 5;
  margin-bottom: 32px;
}

.pp-path-steps {
  display: grid;
  gap: 14px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.pp-path-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(244, 244, 240, 0.06);
  border-radius: 14px;
  padding: 14px 18px;
}

.pp-path-num {
  font-family: var(--f-num);
  font-size: 14px;
  color: var(--navy);
  background: var(--green);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.pp-path-text {
  font-size: 14px;
  color: rgba(244, 244, 240, 0.86);
  line-height: 1.6;
}

.pp-team-features {
  display: grid;
  gap: 14px;
}

.pp-team-feature {
  background: rgba(244, 244, 240, 0.04);
  border: 1px solid rgba(201, 160, 99, 0.2);
  border-radius: 16px;
  padding: 18px;
}

.pp-team-feature p {
  font-size: 13px;
  color: rgba(244, 244, 240, 0.7);
  margin: 10px 0 0;
  line-height: 1.7;
}

.pp-team-feature .tag {
  font-size: 12px;
  border-radius: var(--r-pill);
  padding: 5px 12px;
}

.tag--green {
  background: rgba(57, 255, 136, 0.14);
  color: var(--green);
}

.tag--gold {
  background: rgba(201, 160, 99, 0.16);
  color: var(--gold);
}

.pp-next-links {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.pp-next-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--navy);
  color: var(--warm);
  border-radius: 18px;
  padding: 22px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.pp-next-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  background: var(--dark);
}

.pp-next-label {
  font-family: var(--f-num);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.pp-next-card strong {
  font-family: var(--f-head);
  font-size: 19px;
}

.pp-next-arrow {
  font-family: var(--f-num);
  color: var(--green);
  font-size: 18px;
}

.pp-footnote {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
  margin: 28px 0 0;
}

.pp-footnote a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pp-footnote a:hover {
  color: var(--green);
}

.pp-footnote--legal {
  font-family: var(--f-num);
  font-size: 12px;
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .pp-hero-grid {
    grid-template-columns: 7fr 5fr;
    align-items: center;
  }

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

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

  .pp-dev-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .pp-dev-item {
    border-left: 0;
    border-top: 2px solid rgba(201, 160, 99, 0.4);
    padding-left: 0;
    padding-top: 18px;
  }

  .pp-dev-item::before {
    left: 0;
    top: -6px;
    margin-top: 0;
  }

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

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

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

  .pp-stat-layout {
    grid-template-columns: 1fr 1fr;
  }

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

  .pp-team-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .pp-next-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 920px) {
  .pp-workspace {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 80px);
    align-items: start;
  }

  .pp-aside {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    background: var(--navy);
    border-radius: var(--r-lg);
    padding: 22px;
    border-top: 3px solid var(--green);
    box-shadow: 0 18px 40px rgba(11, 31, 58, 0.14);
    margin-bottom: 0;
  }

  .pp-aside-title {
    display: block;
    font-family: var(--f-num);
    font-size: 11px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(201, 160, 99, 0.26);
  }

  .pp-aside-nav {
    flex-direction: column;
    gap: 8px;
    overflow: visible;
    padding: 0;
  }

  .pp-nav-link {
    background: transparent;
    border: 1px solid rgba(244, 244, 240, 0.18);
    color: var(--warm);
    width: 100%;
    justify-content: flex-start;
    border-radius: var(--r-md);
  }

  .pp-nav-link:hover {
    background: rgba(57, 255, 136, 0.12);
    border-color: var(--green);
    color: var(--green);
  }

  .pp-modules {
    gap: 100px;
  }
}

@media (min-width: 1100px) {
  .pp-card-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pp-next-links {
    grid-template-columns: repeat(4, 1fr);
  }

  .pp-hero-meta {
    gap: 12px 40px;
  }
}
