.page-products {
  --prod-muted: #46556A;
  --prod-ruler: rgba(100, 116, 139, 0.32);
  position: relative;
  background: var(--c-paper);
  color: var(--c-ink);
  font-family: var(--font-body);
  padding-top: 32px;
  padding-bottom: 96px;
  overflow-x: clip;
}
.page-products .prod-shell {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}
.page-products img {
  max-width: 100%;
  height: auto;
}

.page-products .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.page-products .breadcrumb__link {
  color: var(--c-line);
  text-decoration: none;
  transition: color 0.2s;
}
.page-products .breadcrumb__link:hover,
.page-products .breadcrumb__link:focus-visible {
  color: var(--c-green);
}
.page-products .breadcrumb__current {
  color: var(--c-ink);
  font-weight: 600;
}
.page-products .breadcrumb__sep {
  color: var(--c-green);
  font-family: var(--font-num);
}

.page-products .prod-hero {
  position: relative;
  background:
    linear-gradient(rgba(57, 255, 136, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 136, 0.05) 1px, transparent 1px),
    var(--c-deep-950);
  background-size: 28px 28px;
  color: var(--c-paper);
  clip-path: var(--cut-corner);
  padding: clamp(28px, 5vw, 56px);
  margin-bottom: 48px;
  overflow: hidden;
}
.page-products .prod-hero__coord {
  position: absolute;
  z-index: 1;
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(245, 241, 232, 0.4);
}
.page-products .prod-hero__coord--x {
  top: 16px;
  right: 18px;
}
.page-products .prod-hero__coord--y {
  bottom: 16px;
  left: 18px;
}
.page-products .prod-hero__kicker {
  margin: 0 0 18px;
  font-family: var(--font-num);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--c-green);
}
.page-products .prod-hero h1 {
  margin: 0 0 18px;
  max-width: 13em;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(34px, 5.5vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--c-paper);
}
.page-products .prod-hero__lead {
  max-width: 58em;
  margin: 0 0 36px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(245, 241, 232, 0.82);
}
.page-products .prod-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  background: rgba(100, 116, 139, 0.5);
  border: 1px solid rgba(100, 116, 139, 0.5);
}
.page-products .prod-hero__stat {
  margin: 0;
  padding: 16px 18px;
  background: rgba(10, 17, 40, 0.88);
}
.page-products .prod-hero__stat dt {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.6);
}
.page-products .prod-hero__stat dd {
  margin: 6px 0 0;
  font-family: var(--font-num);
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
  color: var(--c-green);
  animation: prod-breathe 30s ease-in-out infinite;
}

.page-products .prod-flowline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 56px;
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--c-line);
}
.page-products .prod-flowline__dash {
  flex: 1 1 24px;
  min-width: 24px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--c-line) 0 6px, transparent 6px 12px);
  opacity: 0.6;
}

.page-products .prod-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px 44px;
  align-items: start;
}
.page-products .prod-main,
.page-products .prod-side {
  min-width: 0;
}

.page-products .prod-section {
  position: relative;
  margin: 0 0 72px;
  padding-top: 20px;
  border-top: 1px solid var(--prod-ruler);
}
.page-products .prod-section__header {
  position: relative;
  margin: 0 0 28px;
  padding-left: 18px;
  border-left: 3px solid var(--c-green);
}
.page-products .prod-section__index {
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--c-line);
}
.page-products .prod-section__header h2 {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.page-products .prod-section__desc {
  max-width: 52em;
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--prod-muted);
}

.page-products .prod-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.page-products .prod-overview > * {
  min-width: 0;
}
.page-products .prod-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-products .feat-card {
  position: relative;
  padding: 20px 18px 16px;
  background: rgba(234, 229, 217, 0.45);
  border: 1px solid var(--prod-ruler);
  clip-path: var(--cut-sm);
  transition: border-color 0.2s, background 0.2s;
}
.page-products .feat-card:hover {
  border-color: var(--c-green);
  background: var(--c-paper);
}
.page-products .feat-card__num {
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: var(--font-num);
  font-size: 22px;
  font-weight: 500;
  color: rgba(100, 116, 139, 0.45);
}
.page-products .feat-card h3 {
  margin: 0 0 10px;
  padding-right: 36px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}
.page-products .feat-card p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--prod-muted);
}
.page-products .feat-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin: 0;
  padding-top: 10px;
  border-top: 1px dashed var(--prod-ruler);
}
.page-products .feat-card__meta div {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.page-products .feat-card__meta dt {
  font-size: 12px;
  color: var(--c-line);
}
.page-products .feat-card__meta dd {
  margin: 0;
  font-family: var(--font-num);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-deep-950);
}
.page-products .prod-overview__figure {
  margin: 0;
}
.page-products .prod-overview__img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--c-paper-light);
  border: 1px solid var(--prod-ruler);
  clip-path: var(--cut-corner);
}
.page-products .prod-overview__figure figcaption {
  margin-top: 10px;
  padding-left: 12px;
  border-left: 2px solid var(--c-green);
  font-size: 12px;
  line-height: 1.6;
  color: var(--c-line);
}

.page-products .sub-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  padding: 28px;
  background: var(--c-deep-950);
  color: var(--c-paper);
  clip-path: var(--cut-corner);
}
.page-products .sub-panel > * {
  min-width: 0;
}
.page-products .sub-flow {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-products .sub-flow__step {
  position: relative;
  margin: 0;
  padding: 18px 16px 16px 52px;
  background: rgba(18, 42, 92, 0.55);
  border: 1px solid rgba(100, 116, 139, 0.4);
}
.page-products .sub-flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 26px;
  bottom: -22px;
  width: 0;
  height: 22px;
  border-left: 2px dashed rgba(57, 255, 136, 0.45);
}
.page-products .sub-flow__num {
  position: absolute;
  left: 14px;
  top: 18px;
  font-family: var(--font-num);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-green);
}
.page-products .sub-flow__step h3 {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--c-paper);
}
.page-products .sub-flow__step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 241, 232, 0.75);
}
.page-products .sub-panel__figure {
  align-self: center;
  margin: 0;
}
.page-products .sub-panel__figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(100, 116, 139, 0.45);
}
.page-products .sub-panel__figure figcaption {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.62);
}
.page-products .sub-panel__league {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(100, 116, 139, 0.45);
}
.page-products .sub-panel__league-title {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(245, 241, 232, 0.6);
}
.page-products .league-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-products .league-tags li {
  padding: 5px 10px;
  border: 1px solid rgba(57, 255, 136, 0.45);
  clip-path: var(--cut-sm);
  font-size: 13px;
  color: var(--c-green);
  background: rgba(57, 255, 136, 0.06);
}

.page-products .archive-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}
.page-products .archive-panel > * {
  min-width: 0;
}
.page-products .archive-panel__figure {
  margin: 0;
}
.page-products .archive-panel__figure img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--c-paper-light);
  border: 1px solid var(--prod-ruler);
  clip-path: var(--cut-corner);
}
.page-products .archive-panel__figure figcaption {
  margin-top: 10px;
  padding-left: 12px;
  border-left: 2px solid var(--c-orange);
  font-size: 12px;
  color: var(--c-line);
  line-height: 1.6;
}
.page-products .archive-panel__side {
  display: grid;
  gap: 20px;
  align-content: start;
}
.page-products .archive-panel__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--prod-ruler);
  border: 1px solid var(--prod-ruler);
}
.page-products .archive-panel__meta div {
  padding: 14px;
  background: var(--c-paper-light);
}
.page-products .archive-panel__meta dt {
  font-size: 12px;
  color: var(--c-line);
}
.page-products .archive-panel__meta dd {
  margin: 6px 0 0;
  font-family: var(--font-num);
  font-size: 22px;
  font-weight: 500;
  color: var(--c-deep-950);
}
.page-products .archive-panel__tip {
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--c-orange);
  background: rgba(234, 229, 217, 0.6);
  font-size: 13px;
  line-height: 1.7;
  color: var(--prod-muted);
}

.page-products .mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 160px;
  padding: 14px 14px 0;
  border-left: 1px solid var(--prod-ruler);
  border-bottom: 1px solid var(--prod-ruler);
  background: repeating-linear-gradient(
    to top,
    transparent 0,
    transparent 39px,
    rgba(100, 116, 139, 0.16) 39px,
    rgba(100, 116, 139, 0.16) 40px
  );
}
.page-products .mini-chart__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 56px;
  height: 100%;
  cursor: default;
}
.page-products .mini-chart__value {
  margin-bottom: 6px;
  font-family: var(--font-num);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-deep-950);
  transition: color 0.2s;
}
.page-products .mini-chart__bar {
  width: 34px;
  transition: filter 0.2s;
}
.page-products .mini-chart__bar--home {
  background: var(--c-green);
}
.page-products .mini-chart__bar--draw {
  background: #94A3B8;
}
.page-products .mini-chart__bar--away {
  background: var(--c-orange);
}
.page-products .mini-chart__col:hover .mini-chart__bar {
  filter: brightness(1.15);
}
.page-products .mini-chart__col:hover .mini-chart__value {
  color: var(--c-green);
}
.page-products .mini-chart__label {
  margin-top: 6px;
  font-size: 12px;
  color: var(--c-line);
}

.page-products .collect-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}
.page-products .collect-panel > * {
  min-width: 0;
}
.page-products .collect-card {
  position: relative;
  max-width: 360px;
  padding: 26px;
  background: var(--c-deep-950);
  color: var(--c-paper);
  clip-path: var(--cut-corner);
}
.page-products .collect-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.page-products .collect-card__badge {
  padding: 4px 8px;
  border: 1px solid var(--c-green);
  color: var(--c-green);
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: 0.12em;
  clip-path: var(--cut-sm);
}
.page-products .collect-card__lock {
  font-family: var(--font-num);
  font-size: 13px;
  color: var(--c-orange);
}
.page-products .collect-card__title {
  margin: 0 0 28px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
}
.page-products .collect-card__switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px dashed rgba(57, 255, 136, 0.6);
  background: rgba(245, 241, 232, 0.06);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
}
.page-products .collect-card__switch .is-active {
  color: var(--c-green);
}
.page-products .collect-card__divider {
  color: rgba(245, 241, 232, 0.4);
}
.page-products .collect-card__note {
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.62);
}
.page-products .collect-points {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-products .collect-point {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 14px;
  margin: 0;
  padding: 18px;
  background: rgba(234, 229, 217, 0.6);
  border-left: 3px solid var(--c-orange);
}
.page-products .collect-point__index {
  font-family: var(--font-num);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-orange);
}
.page-products .collect-point h3 {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
}
.page-products .collect-point p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--prod-muted);
}

.page-products .mobile-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 28px;
  background:
    linear-gradient(rgba(57, 255, 136, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 136, 0.04) 1px, transparent 1px),
    var(--c-deep-700);
  background-size: 24px 24px;
  color: var(--c-paper);
  clip-path: var(--cut-corner);
}
.page-products .mobile-panel > * {
  min-width: 0;
}
.page-products .mobile-panel__figure {
  margin: 0;
  text-align: center;
}
.page-products .mobile-panel__figure img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto;
  padding: 8px;
  background: var(--c-paper);
  border: 1px solid rgba(57, 255, 136, 0.5);
  clip-path: var(--cut-corner);
}
.page-products .mobile-panel__figure figcaption {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(245, 241, 232, 0.62);
}
.page-products .mobile-panel__content {
  min-width: 0;
}
.page-products .mobile-steps {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}
.page-products .mobile-steps li {
  position: relative;
  padding: 18px 0 18px 60px;
  border-bottom: 1px solid rgba(100, 116, 139, 0.4);
}
.page-products .mobile-steps li:first-child {
  border-top: 1px solid rgba(100, 116, 139, 0.4);
}
.page-products .mobile-steps__num {
  position: absolute;
  left: 0;
  top: 16px;
  font-family: var(--font-num);
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  color: var(--c-green);
  opacity: 0.9;
}
.page-products .mobile-steps h3 {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
}
.page-products .mobile-steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 241, 232, 0.78);
}
.page-products .mobile-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: rgba(100, 116, 139, 0.45);
  border: 1px solid rgba(100, 116, 139, 0.45);
}
.page-products .mobile-metrics div {
  padding: 14px 8px;
  text-align: center;
  background: rgba(10, 17, 40, 0.6);
}
.page-products .mobile-metrics dt {
  font-size: 11px;
  color: rgba(245, 241, 232, 0.62);
}
.page-products .mobile-metrics dd {
  margin: 6px 0 0;
  font-family: var(--font-num);
  font-size: 24px;
  color: var(--c-green);
}

.page-products .download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: var(--c-paper-light);
  border: 1px solid var(--prod-ruler);
  clip-path: var(--cut-corner);
}
.page-products .download-panel > * {
  min-width: 0;
}
.page-products .download-panel__figure {
  margin: 0;
}
.page-products .download-panel__figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--prod-ruler);
  background: var(--c-paper);
  clip-path: var(--cut-corner);
}
.page-products .download-panel__figure figcaption {
  margin-top: 10px;
  font-size: 12px;
  color: var(--c-line);
}
.page-products .download-panel__info {
  min-width: 0;
}
.page-products .compat-list {
  margin: 0;
}
.page-products .compat-list div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--prod-ruler);
}
.page-products .compat-list dt {
  font-size: 14px;
  font-weight: 600;
}
.page-products .compat-list dd {
  margin: 0;
  font-family: var(--font-num);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-deep-950);
}
.page-products .download-panel__note {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--c-green);
  background: rgba(245, 241, 232, 0.8);
  font-size: 13px;
  line-height: 1.7;
  color: var(--prod-muted);
}

.page-products .prod-side {
  display: grid;
  gap: 20px;
  align-content: start;
}
.page-products .prod-side__pulse {
  position: relative;
  padding: 28px 20px;
  text-align: center;
  background: var(--c-deep-950);
  border: 1px solid rgba(57, 255, 136, 0.35);
  color: var(--c-paper);
  clip-path: var(--cut-corner);
}
.page-products .prod-side__pulse-dot {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto 14px;
  background: var(--c-green);
  animation: prod-pulse-dot 1.6s var(--ease-out) infinite;
}
.page-products .prod-side__pulse p {
  margin: 0 0 10px;
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.65);
}
.page-products .prod-side__pulse strong {
  display: block;
  margin: 0 0 8px;
  font-family: var(--font-num);
  font-size: 58px;
  line-height: 1;
  font-weight: 500;
  color: var(--c-green);
}
.page-products .prod-side__pulse > span:last-child {
  font-size: 13px;
  color: rgba(245, 241, 232, 0.72);
}
.page-products .prod-side__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--prod-ruler);
  border: 1px solid var(--prod-ruler);
}
.page-products .prod-side__metrics div {
  padding: 12px 14px;
  background: var(--c-paper-light);
}
.page-products .prod-side__metrics dt {
  font-size: 12px;
  color: var(--c-line);
}
.page-products .prod-side__metrics dd {
  margin: 4px 0 0;
  font-family: var(--font-num);
  font-size: 20px;
  font-weight: 500;
  color: var(--c-deep-950);
}
.page-products .prod-side__index {
  padding: 18px;
  background: rgba(234, 229, 217, 0.55);
  border: 1px solid var(--prod-ruler);
}
.page-products .prod-side__index h2 {
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-line);
}
.page-products .prod-side__index ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: prodside;
}
.page-products .prod-side__index li {
  counter-increment: prodside;
}
.page-products .prod-side__index a {
  position: relative;
  display: block;
  padding: 9px 0;
  border-bottom: 1px dashed var(--prod-ruler);
  color: var(--c-ink);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.page-products .prod-side__index a::after {
  content: counter(prodside, decimal-leading-zero);
  position: absolute;
  right: 0;
  top: 9px;
  font-family: var(--font-num);
  font-size: 12px;
  color: var(--c-line);
}
.page-products .prod-side__index a:hover,
.page-products .prod-side__index a:focus-visible {
  color: var(--c-green);
}

.page-products .prod-next {
  margin-top: 80px;
  padding-top: 28px;
  border-top: 2px solid var(--c-deep-950);
}
.page-products .prod-next__title {
  margin: 0 0 18px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-line);
}
.page-products .prod-next__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-products .prod-next__list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(245, 241, 232, 0.65);
  border: 1px solid var(--prod-ruler);
  clip-path: var(--cut-sm);
  color: var(--c-ink);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.page-products .prod-next__list a::after {
  content: "→";
  font-family: var(--font-num);
  color: var(--c-green);
}
.page-products .prod-next__list a:hover,
.page-products .prod-next__list a:focus-visible {
  background: var(--c-paper);
  border-color: var(--c-green);
}

@keyframes prod-pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.72);
  }
}
@keyframes prod-breathe {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.62;
  }
}

@media (min-width: 640px) {
  .page-products .prod-hero__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .page-products .prod-overview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .page-products .sub-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .page-products .prod-next__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .page-products .prod-overview {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }
  .page-products .archive-panel {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
  .page-products .collect-panel {
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  }
  .page-products .collect-card {
    transform: rotate(-1deg);
  }
  .page-products .mobile-panel {
    grid-template-columns: 240px minmax(0, 1fr);
    padding: 40px;
  }
  .page-products .download-panel {
    grid-template-columns: 260px minmax(0, 1fr);
    padding: 36px;
  }
}

@media (min-width: 1024px) {
  .page-products .prod-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
  }
  .page-products .prod-side {
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }
}
