.page-products {
  --p-gold-light: #F2D28D;
  --p-gold-deep: #B57F1E;
  --p-blue-light: #2D3D66;
  --p-line-soft: rgba(184, 178, 166, .45);
  --p-bg-alt: #F0EDE6;
  --p-arrow-bg: rgba(224, 168, 62, .14);
  background: var(--c-snow);
  overflow-x: hidden;
}
.page-products .container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 4vw;
}
.page-products .section-kicker {
  display: inline-block;
  font-family: var(--font-data);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: .6rem;
}
.page-products .section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 900;
  color: var(--c-blue);
  letter-spacing: -.01em;
  margin: 0 0 1rem;
}
.page-products .section-desc {
  font-family: var(--font-body);
  font-size: .98rem;
  line-height: 1.85;
  color: #3A3F4A;
  max-width: 46em;
}
.page-products .section--alt {
  background: var(--p-bg-alt);
  border-block: 1px solid var(--p-line-soft);
}
.page-products .section--dark {
  background: var(--c-midnight);
  border-radius: 24px;
  margin: 2rem 4vw;
  padding-block: 2.5rem;
  position: relative;
  overflow: hidden;
}
.page-products .section--dark::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -80px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 168, 62, .16), transparent 70%);
  pointer-events: none;
}
.page-products .section-head--invert .section-title {
  color: var(--c-snow);
}
.page-products .section-head--invert .section-desc {
  color: rgba(247, 246, 242, .78);
}
.page-products .breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .6rem;
  padding: 0;
  margin: 0 0 1.4rem;
}
.page-products .breadcrumb li {
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--c-line);
}
.page-products .breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: .6rem;
  color: var(--c-line);
}
.page-products .breadcrumb a {
  color: var(--c-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.page-products .breadcrumb a:hover {
  color: var(--c-red);
  border-color: var(--c-red);
}
.page-products .breadcrumb [aria-current="page"] {
  color: var(--c-gold);
  font-weight: 600;
}

/* Hero */
.page-products .app-hero {
  padding: 2rem 0 3.2rem;
  position: relative;
}
.page-products .app-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(31, 42, 74, .06) 0%, transparent 32%),
    linear-gradient(45deg, transparent 60%, rgba(224, 168, 62, .1) 100%);
  pointer-events: none;
  z-index: 0;
  border-radius: 0 0 40px 0;
}
.page-products .app-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.page-products .app-hero__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--c-blue);
  margin: 0 0 .8rem;
}
.page-products .app-hero__lead {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.9;
  color: #3A3F4A;
  max-width: 33em;
  margin-bottom: 1.6rem;
}
.page-products .app-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 2rem;
}
.page-products .btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
  padding: .72rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s cubic-bezier(.2,.8,.2,1), background .3s;
}
.page-products .btn:hover {
  transform: translateY(-2px);
}
.page-products .btn--gold {
  background: var(--c-gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(224, 168, 62, .35);
}
.page-products .btn--gold:hover {
  box-shadow: 0 8px 24px rgba(224, 168, 62, .45);
}
.page-products .btn--ghost {
  background: transparent;
  color: var(--c-blue);
  border-color: var(--c-line);
}
.page-products .btn--ghost:hover {
  border-color: var(--c-blue);
  background: rgba(30, 42, 74, .04);
}
.page-products .btn--red {
  background: var(--c-red);
  color: #fff;
}
.page-products .btn--red:hover {
  box-shadow: 0 6px 18px rgba(196, 68, 59, .35);
}
.page-products .btn--sm {
  padding: .5rem 1rem;
  font-size: .84rem;
}
.page-products .app-hero__meta .data-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .6rem;
}
.page-products .data-cell {
  background: rgba(247, 246, 242, .85);
  border: 1px solid var(--p-line-soft);
  border-left: 3px solid var(--c-gold);
  padding: .75rem .5rem;
  border-radius: var(--radius-sm);
  text-align: center;
}
.page-products .data-value {
  display: block;
  font-family: var(--font-data);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-blue);
}
.page-products .data-label {
  display: block;
  font-family: var(--font-head);
  font-size: .7rem;
  color: #6A6F78;
  margin-top: .2rem;
}
.page-products .app-hero__visual {
  position: relative;
}
.page-products .hero-shot {
  margin: 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(30, 42, 74, .18);
  background: var(--c-blue);
}
.page-products .hero-shot img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  opacity: .92;
}
.page-products .hero-shot__tabs {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 10px;
  display: flex;
  gap: 6px;
  pointer-events: none;
}
.page-products .hero-shot__tab {
  font-family: var(--font-data);
  font-size: .64rem;
  font-weight: 600;
  padding: .26rem .55rem;
  border-radius: 3px;
  color: #fff;
  background: rgba(17, 26, 43, .64);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(3px);
  white-space: nowrap;
}
.page-products .hero-shot__tab--filter {
  border-left: 3px solid var(--c-gold);
}
.page-products .hero-shot__tab--match {
  border-left: 3px solid var(--c-red);
}
.page-products .hero-shot__tab--report {
  border-left: 3px solid var(--c-green);
}

/* Interface overview */
.page-products .interface-overview {
  padding: 2.8rem 0;
}
.page-products .interface-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.page-products .interface-layout__canvas {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.35fr 1.05fr;
  gap: 8px;
  background: var(--c-mist);
  border: 1px solid var(--p-line-soft);
  border-radius: 16px;
  padding: 12px;
  min-height: 280px;
  box-shadow: var(--shadow);
}
.page-products .interface-layout__canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(224, 168, 62, .1), transparent 28%, transparent 72%, rgba(196, 68, 59, .08));
}
.page-products .plane {
  background: #fff;
  border-radius: 10px;
  padding: .7rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  border: 1px solid var(--p-line-soft);
  position: relative;
  min-width: 0;
}
.page-products .plane--left {
  border-top: 4px solid var(--c-gold);
}
.page-products .plane--middle {
  border-top: 4px solid var(--c-red);
}
.page-products .plane--right {
  border-top: 4px solid var(--c-green);
}
.page-products .plane__label {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 900;
  color: var(--c-blue);
  letter-spacing: .05em;
  border-bottom: 1px solid var(--p-line-soft);
  padding-bottom: .4rem;
}
.page-products .plane__list {
  list-style: none;
  margin: 0;
  padding: .5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: .3rem;
}
.page-products .plane__list li {
  font-family: var(--font-data);
  font-size: .76rem;
  padding: .28rem .5rem;
  border-radius: 3px;
  background: rgba(224, 168, 62, .1);
  color: var(--c-blue);
}
.page-products .plane__more {
  color: var(--c-gold);
  font-weight: 600;
}
.page-products .plane__match {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding: .5rem .3rem;
}
.page-products .plane__meta {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-data);
  font-size: .6rem;
  color: #6A6F78;
}
.page-products .swatch {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.page-products .swatch--gold {
  background: var(--c-gold);
}
.page-products .swatch--red {
  background: var(--c-red);
}
.page-products .swatch--blue {
  background: var(--c-flag-blue);
}
.page-products .plane__teams {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  color: var(--c-blue);
  padding-left: .85rem;
}
.page-products .plane__report {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding: .5rem .3rem;
}
.page-products .plane__chip {
  font-family: var(--font-data);
  font-size: .6rem;
  padding: .22rem .5rem;
  border-radius: 2px;
  background: rgba(47, 109, 74, .12);
  color: var(--c-green);
  font-weight: 600;
  align-self: flex-start;
}
.page-products .plane__headline {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--c-blue);
}
.page-products .interface-layout__guide {
  position: absolute;
  right: 14px;
  bottom: 6px;
  font-family: var(--font-data);
  font-size: .64rem;
  color: var(--c-gold);
  font-weight: 600;
  background: rgba(247, 246, 242, .86);
  padding: .2rem .55rem;
  border-radius: 3px;
  letter-spacing: .04em;
}
.page-products .interface-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.page-products .interface-detail__img {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.page-products .interface-detail__img img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.page-products .interface-detail__list {
  font-family: var(--font-body);
  font-size: .98rem;
  line-height: 1.9;
  color: #3A3F4A;
}
.page-products .interface-detail__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--c-blue);
  margin: 0 0 .8rem;
}
.page-products .text-em {
  color: var(--c-red);
  font-weight: 600;
  border-bottom: 1px dashed rgba(196, 68, 59, .4);
}
.page-products .interface-detail__note {
  font-family: var(--font-data);
  font-size: .84rem;
  color: var(--c-gold-deep);
  background: var(--p-arrow-bg);
  padding: .65rem .9rem;
  border-radius: 6px;
  margin-top: 1rem;
}

/* Version history */
.page-products .version-history {
  padding: 3rem 0;
}
.page-products .version-timeline__legend {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.1rem;
  margin-bottom: 1.6rem;
}
.page-products .legend-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  color: var(--c-blue);
}
.page-products .legend-chip::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.page-products .legend-chip--current::before {
  background: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(224, 168, 62, .25);
}
.page-products .legend-chip--stable::before {
  background: var(--c-red);
}
.page-products .legend-chip--archive::before {
  background: var(--c-line);
}
.page-products .version-track {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 1.8rem;
}
.page-products .version-track::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-line), var(--c-gold), var(--c-red));
  opacity: .45;
}
.page-products .version-node {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-head);
  font-size: .9rem;
  color: var(--c-blue);
}
.page-products .version-node__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--c-snow);
  box-shadow: 0 0 0 2px var(--p-line-soft);
  background: var(--c-line);
}
.page-products .version-node--archive .version-node__dot {
  background: var(--c-line);
}
.page-products .version-node--stable .version-node__dot {
  background: var(--c-red);
}
.page-products .version-node--current .version-node__dot {
  background: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(224, 168, 62, .3);
}
.page-products .version-node--current .version-node__tag {
  font-weight: 900;
  color: var(--c-gold-deep);
}
.page-products .version-node__year {
  font-family: var(--font-data);
  font-size: .78rem;
  color: #6A6F78;
  white-space: nowrap;
}
.page-products .version-timeline__img {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.page-products .version-timeline__img img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Install section */
.page-products .install-section {
  padding: 3rem 0;
}
.page-products .install-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1.8rem;
}
.page-products .install-steps {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: relative;
}
.page-products .install-steps::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: repeating-linear-gradient(to bottom, var(--p-line-soft), var(--p-line-soft) 6px, transparent 6px, transparent 12px);
}
.page-products .install-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
  position: relative;
}
.page-products .install-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-blue);
  color: var(--c-gold);
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 6px 16px rgba(30, 42, 74, .2);
  border: 3px solid var(--c-snow);
}
.page-products .install-step__title {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 900;
  color: var(--c-blue);
  margin: .2rem 0 .35rem;
}
.page-products .install-step__text {
  font-family: var(--font-body);
  font-size: .96rem;
  line-height: 1.85;
  color: #3A3F4A;
  margin: 0;
}
.page-products .sys-needs {
  background: var(--p-bg-alt);
  border-radius: 16px;
  padding: 1.4rem;
  border: 1px solid var(--p-line-soft);
}
.page-products .sys-needs__img {
  margin: 0 0 1.2rem;
  border-radius: 12px;
  overflow: hidden;
  max-width: 300px;
}
.page-products .sys-needs__img img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.page-products .sys-needs__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--c-blue);
  margin: 0 0 1rem;
}
.page-products .sys-list {
  display: flex;
  flex-direction: column;
}
.page-products .sys-list__row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: .6rem;
  padding: .6rem 0;
  border-bottom: 1px dashed var(--p-line-soft);
}
.page-products .sys-list__row:last-child {
  border-bottom: none;
}
.page-products .sys-list__row dt {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  color: var(--c-gold-deep);
}
.page-products .sys-list__row dd {
  font-family: var(--font-body);
  font-size: .88rem;
  line-height: 1.6;
  color: var(--c-blue);
  margin: 0;
}

/* Member entry */
.page-products .member-entry {
  padding: 2.8rem 1rem;
}
.page-products .section-head--invert .section-kicker {
  color: var(--c-gold);
}
.page-products .entry-paths {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  margin-top: 2.2rem;
}
.page-products .entry-path {
  background: rgba(247, 246, 242, .07);
  border: 1px solid rgba(247, 246, 242, .13);
  border-radius: 16px;
  padding: 1.3rem;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), background .3s;
}
.page-products .entry-path:hover {
  transform: translateY(-3px);
  background: rgba(247, 246, 242, .1);
}
.page-products .entry-path__route {
  display: inline-block;
  font-family: var(--font-data);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .13em;
  color: var(--c-gold);
  background: rgba(224, 168, 62, .12);
  padding: .28rem .65rem;
  border-radius: 3px;
  margin-bottom: .7rem;
}
.page-products .entry-path__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--c-snow);
  margin: 0 0 .9rem;
}
.page-products .entry-path__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.page-products .entry-path__steps li {
  display: flex;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .92rem;
  line-height: 1.75;
  color: rgba(247, 246, 242, .75);
}
.page-products .entry-path__steps li .entry-path__arrow {
  color: var(--c-red);
  font-family: var(--font-data);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1rem;
}
.page-products .entry-paths__fig {
  margin: .8rem 0 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
}
.page-products .entry-paths__fig img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* FAQ preview */
.page-products .faq-preview {
  padding: 3rem 0 2rem;
}
.page-products .faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.8rem;
}
.page-products .faq-card {
  background: #fff;
  border: 1px solid var(--p-line-soft);
  border-left: 4px solid var(--c-gold);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  transition: box-shadow .3s var(--ease);
}
.page-products .faq-card:hover {
  box-shadow: var(--shadow);
}
.page-products .faq-card__q {
  font-family: var(--font-head);
  font-size: .98rem;
  font-weight: 800;
  color: var(--c-blue);
  margin: 0 0 .45rem;
}
.page-products .faq-card__a {
  font-family: var(--font-body);
  font-size: .9rem;
  line-height: 1.8;
  color: #4A4F58;
  margin: 0;
}
.page-products .faq-preview__more {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  border-top: 1px dashed var(--p-line-soft);
  padding-top: 1.4rem;
}
.page-products .faq-preview__more p {
  font-family: var(--font-body);
  font-size: .95rem;
  color: #4A4F58;
  margin: 0;
}

/* CTA strip */
.page-products .cta-strip {
  padding: 2rem 0 3rem;
}
.page-products .cta-strip__inner {
  background: var(--c-blue);
  border-radius: 18px;
  padding: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
}
.page-products .cta-strip__inner::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 160px;
  height: 160px;
  border: 24px solid rgba(224, 168, 62, .12);
  border-radius: 50%;
  pointer-events: none;
}
.page-products .cta-strip__highlight {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--c-snow);
  position: relative;
  z-index: 1;
}
.page-products .cta-strip__sub {
  font-family: var(--font-body);
  font-size: .9rem;
  color: rgba(247, 246, 242, .72);
  position: relative;
  z-index: 1;
  margin-top: .3rem;
}
.page-products .cta-strip__links {
  display: flex;
  gap: .7rem;
  position: relative;
  z-index: 1;
}
.page-products .cta-strip .btn--ghost {
  color: var(--c-snow);
  border-color: rgba(247, 246, 242, .3);
}

/* Media queries */
@media (min-width: 768px) {
  .page-products .app-hero__inner {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 2.5rem;
  }
  .page-products .hero-shot__tabs {
    left: 12px;
    bottom: 14px;
  }
  .page-products .hero-shot__tab {
    font-size: .7rem;
    padding: .32rem .7rem;
  }
  .page-products .interface-layout {
    grid-template-columns: 1.6fr .9fr;
    align-items: start;
  }
  .page-products .interface-layout__canvas {
    grid-column: 1 / -1;
  }
  .page-products .interface-detail {
    grid-template-columns: 220px 1fr;
    align-items: center;
  }
  .page-products .version-track {
    padding-left: 2rem;
  }
  .page-products .install-wrap {
    grid-template-columns: 1.3fr .7fr;
    align-items: start;
  }
  .page-products .entry-paths {
    grid-template-columns: 1fr 1fr;
  }
  .page-products .entry-paths__fig {
    grid-column: 1 / -1;
  }
  .page-products .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-products .faq-preview__more {
    justify-content: space-between;
  }
}
@media (min-width: 1080px) {
  .page-products .app-hero {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }
  .page-products .app-hero__title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
  }
  .page-products .version-track {
    display: grid;
    grid-template-columns: repeat(7, minmax(140px, 1fr));
    gap: .3rem;
    padding-left: 0;
    padding-top: 2rem;
    margin-bottom: 2rem;
  }
  .page-products .version-track::before {
    left: 2px;
    right: 2px;
    top: 4px;
    bottom: auto;
    width: auto;
    height: 2px;
    margin: 0 auto;
    background: linear-gradient(to right, var(--c-line), var(--c-gold), var(--c-red));
    opacity: .4;
  }
  .page-products .version-node {
    grid-template-columns: 1fr;
    grid-template-rows: 22px 1fr auto;
    gap: .2rem;
    text-align: left;
    padding-top: .3rem;
    position: relative;
  }
  .page-products .version-node__dot {
    grid-row: 1;
  }
  .page-products .version-node__tag {
    grid-row: 2;
    font-size: .84rem;
    line-height: 1.4;
    padding-right: .6rem;
  }
  .page-products .version-node__year {
    grid-row: 3;
    font-size: .74rem;
    opacity: .8;
  }
  .page-products .version-timeline__img {
    max-width: 42vw;
    margin-inline: auto;
  }
  .page-products .sys-needs__img {
    max-width: 100%;
  }
  .page-products .entry-paths {
    grid-template-columns: 1fr 1fr 1.2fr;
    align-items: center;
  }
  .page-products .entry-paths__fig {
    grid-column: auto;
    margin: 0;
  }
  .page-products .faq-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
  }
}

.page-products {
  --c-gold-deep: currentColor;
}
