.page-products {
  --pp-orange: #ff7a1a;
  --pp-orange-soft: #ffb35c;
  --pp-green: #2effb0;
  --pp-blue: #3b6ea5;
  --pp-glow: rgba(255, 122, 26, 0.25);
  position: relative;
  display: block;
  padding-top: 88px;
  background:
    radial-gradient(1200px 500px at 85% -5%, rgba(61, 110, 165, 0.35), transparent 60%),
    radial-gradient(900px 400px at -10% 20%, rgba(255, 122, 26, 0.08), transparent 55%),
    linear-gradient(180deg, #0a0e1a 0%, #0d2a44 45%, #0a0e1a 100%);
  color: var(--muted);
  font-family: var(--font-sans);
  line-height: 1.6;
}

.page-products .section {
  padding-block: 64px 48px;
}

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

.page-products .product-breadcrumb {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
}

.page-products .product-breadcrumb__link {
  color: var(--link);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-products .product-breadcrumb__link:hover {
  color: var(--pp-orange);
}

.page-products .product-breadcrumb__current {
  color: var(--pp-orange);
  font-weight: 700;
}

.page-products .product-breadcrumb__sep {
  color: var(--border);
}

.page-products .product-hero {
  position: relative;
  overflow: hidden;
}

.page-products .product-hero__inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 56px 20px 68px;
  display: grid;
  gap: 48px;
  align-items: center;
  grid-template-columns: 1fr;
}

.page-products .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pp-orange);
  margin: 0 0 18px;
}

.page-products .eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--pp-orange);
  flex-shrink: 0;
}

.page-products .product-hero__title {
  margin: 0 0 22px;
  font-size: clamp(28px, 7vw, 58px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--near-white);
  font-weight: 900;
}

.page-products .product-hero__lead {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 58ch;
}

.page-products .product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.page-products .product-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--border);
}

.page-products .hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-products .hero-stat__label {
  font-size: 13px;
  color: var(--muted);
}

.page-products .hero-stat__value {
  font-family: var(--font-mono);
  font-size: 32px;
  color: var(--pp-orange);
  font-weight: 800;
}

.page-products .hero-stat__value .data-number {
  font-family: var(--font-mono);
  font-size: 32px;
  color: var(--pp-orange);
}

.page-products .hero-stat__value .data-number__unit {
  font-size: 18px;
  color: var(--pp-orange-soft);
  margin-left: 2px;
}

.page-products .product-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-products .orbital {
  position: relative;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.18), transparent 65%);
}

.page-products .orbital__ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.page-products .orbital__ring--outer {
  inset: 0;
  border: 1px solid rgba(255, 122, 26, 0.4);
  animation: pp-orbit-spin 24s linear infinite;
}

.page-products .orbital__ring--mid {
  inset: 25px;
  border: 1px dashed rgba(61, 110, 165, 0.7);
  animation: pp-orbit-spin 16s linear infinite reverse;
}

.page-products .orbital__ring--core {
  inset: 62px;
  background: var(--pp-orange);
  box-shadow: 0 0 28px var(--pp-glow);
  border: none;
}

.page-products .orbital__dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pp-green);
  box-shadow: 0 0 12px var(--pp-green);
}

.page-products .orbital__dot--a {
  top: 24px;
  left: 30px;
}

.page-products .orbital__dot--b {
  bottom: 48px;
  right: 12px;
}

.page-products .orbital__label {
  position: absolute;
  inset: 98px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--pp-orange-soft);
  text-align: center;
}

.page-products .core-tools__head {
  margin-bottom: 36px;
}

.page-products .section-title {
  margin: 10px 0 12px;
  font-size: 28px;
  line-height: 1.25;
  color: var(--near-white);
  font-weight: 900;
}

.page-products .section-title__index {
  font-family: var(--font-mono);
  color: var(--pp-orange);
  font-size: 22px;
  font-weight: 700;
  margin-right: 12px;
}

.page-products .section-title__sub {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
}

.page-products .core-tools__path {
  margin: 18px 0 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--pp-orange-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.page-products .core-tools__path span[aria-hidden="true"] {
  color: var(--pp-orange);
}

.page-products .core-tools__grid {
  display: grid;
  gap: 22px;
}

.page-products .tool-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(19, 28, 46, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.page-products .tool-card:hover {
  border-color: rgba(255, 122, 26, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255, 122, 26, 0.15);
}

.page-products .tool-card__slant {
  position: absolute;
  top: -46px;
  right: -18px;
  width: 150px;
  height: 110px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.28), rgba(61, 110, 165, 0.4));
  clip-path: polygon(30% 100%, 100% 0, 100% 100%, 0 100%);
  transform: rotate(7deg);
  pointer-events: none;
}

.page-products .tool-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-products .tool-card__kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--pp-orange);
  background: rgba(255, 122, 26, 0.1);
  padding: 5px 12px 5px 10px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.page-products .tool-card__title {
  margin: 0;
  font-size: 24px;
  color: var(--near-white);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.page-products .tool-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.page-products .tool-card__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(31, 42, 68, 0.6);
  background: #0a0e1a;
}

.page-products .tool-card__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-products .tool-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-products .tool-card__features li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--near-white);
}

.page-products .tool-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pp-orange);
  box-shadow: 0 0 8px rgba(255, 122, 26, 0.6);
}

.page-products .tool-card__action {
  align-self: flex-start;
  text-decoration: none;
}

.page-products .tool-card__icon {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(10, 14, 26, 0.6);
  border: 1px solid var(--border);
}

.page-products .tool-card__icon-file {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 122, 26, 0.14);
  color: var(--pp-orange-soft);
  border: 1px solid rgba(255, 122, 26, 0.35);
}

.page-products .tool-card__icon-file--csv {
  background: rgba(61, 110, 165, 0.18);
  border-color: rgba(61, 110, 165, 0.5);
  color: #8fb8e8;
}

.page-products .tool-card__icon-file--png {
  background: rgba(46, 255, 176, 0.1);
  border-color: rgba(46, 255, 176, 0.35);
  color: var(--pp-green);
}

.page-products .view-switch {
  border-radius: var(--radius);
  background: rgba(10, 14, 26, 0.7);
  border: 1px solid var(--border);
  padding: 12px;
}

.page-products .view-switch__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.page-products .view-switch__tab {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 9px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: default;
}

.page-products .view-switch__tab.is-active {
  background: var(--pp-orange);
  border-color: var(--pp-orange);
  color: #0a0e1a;
  font-weight: 700;
}

.page-products .view-switch__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.page-products .mini-cal {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(19, 28, 46, 0.5);
  padding: 10px;
}

.page-products .mini-cal__week,
.page-products .mini-cal__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.page-products .mini-cal__week {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 8px;
}

.page-products .mini-cal__day {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--near-white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
}

.page-products .mini-cal__day.is-muted {
  opacity: 0.32;
}

.page-products .mini-cal__day.is-match {
  background: var(--pp-orange);
  color: #0a0e1a;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(255, 122, 26, 0.45);
}

.page-products .mini-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(19, 28, 46, 0.5);
  display: flex;
  flex-direction: column;
}

.page-products .mini-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 10px;
  padding: 13px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.page-products .mini-list li:last-child {
  border-bottom: none;
}

.page-products .mini-list__date {
  font-family: var(--font-mono);
  color: var(--pp-orange);
}

.page-products .mini-list__pair {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--near-white);
}

.page-products .mini-list__score {
  font-family: var(--font-mono);
  color: var(--pp-green);
  font-weight: 700;
}

.page-products .schedule-compare {
  background: linear-gradient(180deg, transparent, rgba(13, 42, 68, 0.55), transparent);
  border-top: 1px solid rgba(31, 42, 68, 0.5);
  border-bottom: 1px solid rgba(31, 42, 68, 0.5);
}

.page-products .schedule-compare__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.page-products .schedule-compare__lead {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--near-white);
}

.page-products .schedule-compare__content > p:not(.schedule-compare__lead) {
  margin: 0 0 22px;
  color: var(--muted);
}

.page-products .schedule-compare__points {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-products .schedule-compare__points li {
  padding: 16px 18px;
  background: rgba(19, 28, 46, 0.85);
  border: 1px solid var(--border);
  border-left: 3px solid var(--pp-orange);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.page-products .schedule-compare__points strong {
  color: var(--pp-orange);
  font-weight: 700;
  margin-right: 6px;
}

.page-products .schedule-compare__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-products .schedule-compare__figure {
  margin: 0;
}

.page-products .schedule-compare__img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  object-fit: cover;
}

.page-products .schedule-compare__figure figcaption {
  margin-top: 12px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.page-products .squad-center__grid,
.page-products .version-sync__body {
  display: grid;
  gap: 40px;
  align-items: center;
}

.page-products .pitch-map {
  max-width: 400px;
  margin: 0 auto;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(13, 42, 68, 0.9), rgba(10, 14, 26, 0.95));
  border: 1px solid var(--border);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

.page-products .pitch-map__svg {
  width: 100%;
  height: auto;
  display: block;
}

.page-products .squad-center__content > p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.page-products .squad-center__dims {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.page-products .dim-card {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(19, 28, 46, 0.85);
  border: 1px solid var(--border);
}

.page-products .dim-card__no {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--pp-orange);
  font-weight: 700;
}

.page-products .dim-card__title {
  margin: 6px 0 8px;
  font-size: 16px;
  color: var(--near-white);
}

.page-products .dim-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.page-products .download-service {
  background: rgba(13, 42, 68, 0.35);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.page-products .download-service__grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.page-products .download-service__content > p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.page-products .download-service__list {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.page-products .dl-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(19, 28, 46, 0.9);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease;
}

.page-products .dl-row:hover {
  border-color: rgba(255, 122, 26, 0.55);
}

.page-products .dl-row__type {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--pp-orange);
  color: #0a0e1a;
}

.page-products .dl-row__title {
  margin: 0 0 6px;
  font-size: 15px;
  color: var(--near-white);
}

.page-products .dl-row p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.page-products .download-service__rules {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: rgba(46, 255, 176, 0.06);
  border: 1px solid rgba(46, 255, 176, 0.3);
  margin-bottom: 22px;
}

.page-products .download-service__rules p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.page-products .download-service__grid .btn {
  margin-right: 10px;
  margin-bottom: 10px;
  text-decoration: none;
}

.page-products .download-service__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-products .download-service__img {
  width: 100%;
  max-width: 300px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.page-products .version-sync__head {
  margin-bottom: 36px;
}

.page-products .version-sync__visual {
  display: flex;
  justify-content: center;
}

.page-products .version-sync__visual img {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  object-fit: cover;
}

.page-products .version-sync__content > p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 24px;
}

.page-products .version-sync__timeline {
  list-style: none;
  margin: 0 0 28px;
  padding: 0 0 0 4px;
  border-left: 2px solid rgba(31, 42, 68, 0.8);
}

.page-products .version-sync__timeline li {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0 12px 24px;
}

.page-products .version-sync__timeline li::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 21px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--pp-orange);
  box-shadow: 0 0 10px rgba(255, 122, 26, 0.4);
}

.page-products .version-sync__year {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 800;
  color: var(--pp-orange);
  min-width: 52px;
}

.page-products .version-sync__event {
  color: var(--muted);
  font-size: 15px;
}

.page-products .version-sync__status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.page-products .version-sync__status-text {
  font-size: 14px;
  color: var(--pp-green);
}

.page-products .version-sync__content .btn {
  text-decoration: none;
}

@keyframes pp-orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 760px) {
  .page-products .section {
    padding-block: 88px 72px;
  }

  .page-products .product-hero__inner {
    padding-top: 72px;
    padding-bottom: 88px;
  }

  .page-products .view-switch__panel {
    grid-template-columns: 1fr 1fr;
  }

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

  .page-products .download-service__grid .btn {
    display: inline-block;
  }
}

@media (min-width: 1024px) {
  .page-products .product-hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    padding-inline: 20px;
  }

  .page-products .product-hero__visual {
    justify-content: flex-end;
  }

  .page-products .orbital {
    width: 300px;
    height: 300px;
  }

  .page-products .core-tools__grid {
    grid-template-columns: 1fr 1.6fr 1fr;
    grid-template-rows: auto auto;
    gap: 26px;
  }

  .page-products .tool-card--team {
    grid-column: 1;
    grid-row: 1;
  }

  .page-products .tool-card--schedule {
    grid-column: 2 / 4;
    grid-row: 1 / 3;
  }

  .page-products .tool-card--download {
    grid-column: 1;
    grid-row: 2;
  }

  .page-products .schedule-compare__grid,
  .page-products .squad-center__grid,
  .page-products .download-service__grid,
  .page-products .version-sync__body {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .page-products .download-service__visual {
    justify-content: center;
  }
}
