.page-products {
  --grad-br: linear-gradient(135deg, #6FBF44, #F7D51E);
  --grad-soft: linear-gradient(135deg, rgba(111, 191, 68, 0.14), rgba(247, 213, 30, 0.09));
  padding-bottom: 4rem;
}

.page-products__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1.25rem;
  padding-bottom: 0.25rem;
  font-family: var(--font-index);
  font-size: 13px;
}

.page-products__breadcrumb .breadcrumb__link {
  color: var(--muted);
  text-decoration: none;
}

.page-products__breadcrumb .breadcrumb__link:hover {
  color: var(--brand-light);
}

.page-products__breadcrumb-sep {
  color: var(--muted);
}

.page-products__breadcrumb .breadcrumb__item {
  color: var(--text);
}

.page-products__hero {
  display: grid;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.page-products__title {
  font-size: clamp(2.6rem, 8vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.25rem;
}

.page-products__hero-copy .lead {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 32em;
}

.page-products__hero-cta {
  margin-top: 1.5rem;
}

.page-products__hero-index {
  border-top: 1px solid var(--line);
}

.page-products__hero-index-title {
  font-family: var(--font-index);
  font-size: 13px;
  color: var(--muted);
  padding: 0.75rem 0 0.5rem;
  margin: 0;
}

.page-products__hero-index-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.9rem 0.25rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.page-products__hero-index-item span {
  font-family: var(--font-index);
  font-size: 13px;
  color: var(--brand);
}

.page-products__hero-index-item em {
  font-style: normal;
  font-size: 15px;
}

.page-products__hero-index-item:hover {
  background: var(--panel);
}

.page-products__hero-index-item.is-active {
  color: var(--brand-light);
}

.page-products__hero-index-item.is-active span {
  color: var(--accent);
}

.page-products__section {
  padding-top: 3.5rem;
}

.page-products__img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 2rem;
  border: 1px solid var(--line);
  background: var(--panel);
}

.page-products__modules {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 2rem;
}

.page-products__module {
  background: var(--panel);
  padding: 1.5rem;
}

.page-products__module-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.page-products__module-num {
  font-family: var(--font-index);
  font-size: 1.25rem;
  color: var(--brand);
}

.page-products__module-icon {
  width: 26px;
  height: 26px;
  stroke: var(--brand-light);
  stroke-width: 1.5;
  fill: none;
}

.page-products__module h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

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

.page-products__detail {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
}

.page-products__detail summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-index);
  font-size: 13px;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.page-products__detail summary::-webkit-details-marker {
  display: none;
}

.page-products__detail summary::before {
  content: "+";
  font-size: 1rem;
  line-height: 1;
  color: var(--accent);
}

.page-products__detail[open] summary::before {
  content: "−";
}

.page-products__detail p {
  margin-top: 0.75rem;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.page-products__section-foot {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  border-left: 2px solid var(--brand);
  background: var(--panel);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.page-products__section-foot a {
  color: var(--brand-light);
}

.page-products__league-grid,
.page-products__record-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.page-products__dim {
  border-left: 2px solid var(--brand);
  background: var(--panel);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.page-products__dim-num {
  font-family: var(--font-index);
  font-size: 13px;
  color: var(--accent);
}

.page-products__dim h3 {
  margin: 0.35rem 0 0.5rem;
  font-size: 1rem;
}

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

.page-products__league-side,
.page-products__record-side {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.page-products__stat-card {
  border: 1px solid var(--line);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--panel);
}

.page-products__stat-card--accent {
  background: linear-gradient(135deg, rgba(111, 191, 68, 0.2), rgba(247, 213, 30, 0.12));
  border-color: rgba(167, 215, 102, 0.4);
}

.page-products__stat-num {
  font-family: var(--font-index);
  font-size: 1.75rem;
  color: var(--brand-light);
  line-height: 1.2;
}

.page-products__stat-label {
  font-size: 13px;
  color: var(--muted);
}

.page-products__update-line {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: baseline;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 1.5rem;
  margin-top: 2.5rem;
}

.page-products__update-line > span {
  font-family: var(--font-index);
  font-size: 13px;
  color: var(--accent);
  white-space: nowrap;
}

.page-products__update-line p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

.page-products__update-line a,
.page-products__record-note a,
.page-products__record-side-note a {
  color: var(--brand-light);
}

.page-products__timeline {
  position: relative;
  padding-left: 1.75rem;
  border-left: 1px solid var(--line);
}

.page-products__timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.page-products__timeline-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.page-products__timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.page-products__timeline-dot {
  position: absolute;
  left: -1.99rem;
  top: 0.25rem;
  width: 10px;
  height: 10px;
  background: var(--grad-br);
}

.page-products__record-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.page-products__record-side-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.page-products__section--v {
  position: relative;
  margin-top: 3rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(167, 215, 102, 0.28);
  background: linear-gradient(135deg, rgba(111, 191, 68, 0.1), rgba(247, 213, 30, 0.06)), var(--panel);
  padding: 2.5rem 1.25rem;
}

.page-products__compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.page-products__compare-col {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 1.5rem;
}

.page-products__compare-col h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.page-products__compare-col--v {
  border-color: rgba(167, 215, 102, 0.5);
  background: linear-gradient(135deg, rgba(111, 191, 68, 0.18), rgba(247, 213, 30, 0.12));
}

.page-products__path {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  counter-reset: step;
}

.page-products__path li {
  counter-increment: step;
  position: relative;
  padding: 0 0 0.85rem 2rem;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.page-products__path li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-index);
  font-size: 13px;
  color: var(--brand);
}

.page-products__path-steps {
  display: inline-block;
  width: 100%;
  font-family: var(--font-index);
  font-size: 13px;
  color: var(--accent);
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
}

.page-products__compare-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-products__compare-arrow span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--grad-br);
  color: #0B100C;
  font-family: var(--font-index);
  font-weight: 700;
  font-size: 14px;
  animation: page-products__pulse 2s ease-in-out infinite;
}

.page-products__img--v,
.page-products__img--access {
  margin-top: 2rem;
}

.page-products__v-scenarios {
  margin-top: 2rem;
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}

.page-products__v-scenarios h3 {
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

.page-products__v-scenarios ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-products__v-scenarios li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.page-products__v-scenarios li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.page-products__v-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.page-products__access-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 2rem;
}

.page-products__access-item {
  background: var(--panel);
  padding: 1.5rem;
}

.page-products__access-icon {
  width: 28px;
  height: 28px;
  stroke: var(--brand-light);
  stroke-width: 1.5;
  fill: none;
  margin-bottom: 1rem;
}

.page-products__access-item h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.page-products__access-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

@keyframes page-products__pulse {
  0%,
  100% {
    transform: scale(0.75);
    opacity: 0.6;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (min-width: 760px) {
  .page-products__modules {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products__module:last-child {
    grid-column: 1 / -1;
  }

  .page-products__access-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-products__compare {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
}

@media (min-width: 960px) {
  .page-products__hero {
    grid-template-columns: 7fr 5fr;
    gap: 3rem;
    align-items: center;
    padding-top: 3rem;
  }

  .page-products__hero-index-title {
    padding-top: 1rem;
  }

  .page-products__modules {
    grid-template-columns: repeat(6, 1fr);
  }

  .page-products__module:nth-child(-n+3) {
    grid-column: span 2;
  }

  .page-products__module:nth-child(n+4) {
    grid-column: span 3;
  }

  .page-products__module:last-child {
    grid-column: span 3;
  }

  .page-products__league-grid,
  .page-products__record-grid {
    grid-template-columns: 7fr 5fr;
  }

  .page-products__section--v {
    padding: 3.5rem 3rem;
  }
}
