.page-products {
  --prod-bg: #0a0a0a;
  --prod-bg2: #141414;
  --prod-neon: #39ff14;
  --prod-cyan: #00f0ff;
  --prod-orange: #ff6a00;
  --prod-text: #f5f5f5;
  --prod-muted: #a0a0a0;
  overflow-x: clip;
}

/* ============ HERO ============ */
.page-products .prod-hero {
  position: relative;
  padding: 118px 0 52px;
  background:
    radial-gradient(ellipse at 85% 18%, rgba(0, 240, 255, .13), transparent 46%),
    radial-gradient(ellipse at 8% 82%, rgba(57, 255, 20, .1), transparent 44%),
    var(--prod-bg);
  border-bottom: 1px solid rgba(57, 255, 20, .22);
  overflow: hidden;
}
.page-products .prod-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 255, 20, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, .05) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: skewY(-4deg) scale(1.08);
  opacity: .7;
  pointer-events: none;
}
.page-products .prod-hero .container {
  position: relative;
  z-index: 2;
}
.page-products .prod-kicker {
  font-family: var(--font-mono);
  color: var(--prod-neon);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.page-products .prod-hero__grid {
  display: grid;
  gap: 32px;
  align-items: center;
}
.page-products .prod-hero h1 {
  margin: 0 0 20px;
  font-family: var(--font-head);
  font-size: 2.6rem;
  line-height: 1.12;
  color: var(--color-white);
  transform: skewX(var(--skew));
}
.page-products .prod-hero__highlight {
  display: inline-block;
  color: var(--prod-neon);
  background: linear-gradient(90deg, rgba(57, 255, 20, .18), transparent 72%);
  padding-right: .3em;
}
.page-products .prod-hero__lead {
  max-width: 48ch;
  margin: 0 0 26px;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: #e6e8e6;
}
.page-products .prod-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.page-products .prod-hero__stats {
  list-style: none;
  margin: 0;
  padding: 18px 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 14px;
  background: rgba(20, 20, 20, .7);
  border: 1px solid rgba(57, 255, 20, .22);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}
.page-products .prod-hero__stat {
  margin: 0;
}
.page-products .prod-hero__stat dt {
  font-family: var(--font-mono);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--prod-neon);
}
.page-products .prod-hero__stat dd {
  margin: 6px 0 0;
  font-size: .8rem;
  line-height: 1.4;
  color: var(--prod-muted);
}
.page-products .prod-hero__visual {
  position: relative;
  transform: rotate(1.6deg);
}
.page-products .prod-hero__glow {
  position: absolute;
  top: 20px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 240, 255, .22), transparent 72%);
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}

/* console mock */
.page-products .prod-console {
  background: rgba(10, 10, 10, .9);
  border: 1px solid rgba(57, 255, 20, .28);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .5), 0 0 34px rgba(57, 255, 20, .08);
  padding: 20px 18px 18px;
  backdrop-filter: blur(6px);
}
.page-products .prod-console__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(57, 255, 20, .22);
}
.page-products .prod-console__title {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .14em;
  color: var(--prod-cyan);
}
.page-products .prod-console__signal {
  color: var(--prod-neon);
  font-size: .9rem;
  animation: prod-blink 1.4s infinite steps(2, start);
}
.page-products .prod-console__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.page-products .prod-console__row--live {
  background: linear-gradient(90deg, rgba(57, 255, 20, .07), transparent);
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 8px;
}
.page-products .prod-console__tag {
  font-family: var(--font-head);
  font-size: .9rem;
  color: var(--color-white);
  background: rgba(57, 255, 20, .1);
  border: 1px solid rgba(57, 255, 20, .25);
  border-radius: 6px;
  padding: 4px 10px;
}
.page-products .prod-console__tag--cyan {
  background: rgba(0, 240, 255, .1);
  border-color: rgba(0, 240, 255, .3);
}
.page-products .prod-console__tag--orange {
  background: rgba(255, 106, 0, .1);
  border-color: rgba(255, 106, 0, .3);
}
.page-products .prod-console__time {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: #d9d9d9;
}
.page-products .prod-console__badge {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  color: #0a0a0a;
  background: var(--prod-neon);
  border-radius: 4px;
  padding: 3px 7px;
  font-weight: 700;
}
.page-products .prod-console__badge--cyan {
  color: #0a0a0a;
  background: var(--prod-cyan);
}
.page-products .prod-console__chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 74px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(57, 255, 20, .2);
}
.page-products .prod-console__chart i {
  flex: 1;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--prod-neon), rgba(57, 255, 20, .18));
  animation: prod-pulse 2.8s ease-in-out infinite alternate;
}
.page-products .prod-console__chart i:nth-child(1) { height: 26px; }
.page-products .prod-console__chart i:nth-child(2) { height: 44px; animation-delay: .2s; }
.page-products .prod-console__chart i:nth-child(3) { height: 34px; }
.page-products .prod-console__chart i:nth-child(4) { height: 56px; animation-delay: .35s; }
.page-products .prod-console__chart i:nth-child(5) { height: 42px; }
.page-products .prod-console__chart i:nth-child(6) { height: 64px; animation-delay: .5s; }
.page-products .prod-console__chart i:nth-child(7) { height: 30px; }

@keyframes prod-pulse {
  from { opacity: .55; transform: translateY(0); }
  to { opacity: 1; transform: translateY(-4px); }
}
@keyframes prod-blink {
  50% { opacity: .25; }
}

/* ============ FEATURES ============ */
.page-products .prod-features {
  position: relative;
  padding: 60px 0 56px;
  background: linear-gradient(180deg, #0a0a0a 0%, #0e0f0e 100%);
}
.page-products .prod-features .section__head,
.page-products .prod-coverage .section__head,
.page-products .prod-guide .section__head,
.page-products .prod-timeline .section__head,
.page-products .prod-support .section__head,
.page-products .prod-ref .section__head {
  margin-bottom: 30px;
}
.page-products .prod-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* feature card base */
.page-products .prod-feature {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--prod-bg2);
  border: 1px solid rgba(57, 255, 20, .16);
  transition: border-color .25s, box-shadow .25s;
}
.page-products .prod-feature:hover,
.page-products .prod-feature:focus-within {
  border-color: rgba(57, 255, 20, .55);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .35), 0 0 22px rgba(57, 255, 20, .07);
}

/* flip card */
.page-products .prod-feature--flip {
  min-height: 290px;
  perspective: 1100px;
}
.page-products .prod-feature__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 290px;
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.2, .8, .2, 1);
}
.page-products .prod-feature--flip:hover .prod-feature__inner,
.page-products .prod-feature--flip:focus-within .prod-feature__inner {
  transform: rotateY(180deg);
}
.page-products .prod-feature__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px 24px;
  text-align: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.page-products .prod-feature__face--front {
  background:
    linear-gradient(145deg, rgba(57, 255, 20, .07), rgba(10, 10, 10, .25)),
    var(--prod-bg2);
  transform: rotateY(0);
}
.page-products .prod-feature__face--back {
  background:
    linear-gradient(145deg, rgba(57, 255, 20, .14), rgba(0, 240, 255, .06)),
    var(--prod-bg2);
  transform: rotateY(180deg);
}
.page-products .prod-feature__face h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--color-white);
  margin: 0;
}
.page-products .prod-feature__face p {
  font-family: var(--font-body);
  font-size: .92rem;
  line-height: 1.7;
  color: #c9cdc9;
  margin: 0;
}
.page-products .prod-feature__tip {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--prod-muted);
}
.page-products .prod-feature__svg {
  width: 58px;
  height: 58px;
  margin-bottom: 6px;
}

/* media card */
.page-products .prod-feature--media {
  display: flex;
  flex-direction: column;
}
.page-products .prod-feature__media {
  aspect-ratio: 5 / 3;
  overflow: hidden;
  border-bottom: 1px solid rgba(57, 255, 20, .12);
}
.page-products .prod-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.page-products .prod-feature--media:hover .prod-feature__media img {
  transform: scale(1.04);
}
.page-products .prod-feature__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 24px;
}
.page-products .prod-feature__body h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--color-white);
  margin: 0 0 10px;
}
.page-products .prod-feature__body p {
  font-family: var(--font-body);
  font-size: .9rem;
  line-height: 1.7;
  color: #c9cdc9;
  margin: 0 0 16px;
}
.page-products .prod-feature__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 600;
  color: var(--prod-cyan);
  text-decoration: none;
}
.page-products .prod-feature__link::after {
  content: "→";
  transition: transform .2s;
}
.page-products .prod-feature__link:hover::after,
.page-products .prod-feature__link:focus-visible::after {
  transform: translateX(4px);
}

/* ============ COVERAGE ============ */
.page-products .prod-coverage {
  position: relative;
  padding: 56px 0 48px;
  background:
    radial-gradient(ellipse at 12% 24%, rgba(255, 106, 0, .11), transparent 42%),
    radial-gradient(ellipse at 88% 72%, rgba(0, 240, 255, .1), transparent 42%),
    var(--prod-bg);
  border-top: 1px solid rgba(0, 240, 255, .16);
  border-bottom: 1px solid rgba(0, 240, 255, .16);
}
.page-products .prod-coverage__layout {
  display: grid;
  gap: 28px;
}
.page-products .prod-coverage__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.page-products .prod-coverage__stats .stat {
  text-align: left;
  padding: 18px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(57, 255, 20, .16);
  background: rgba(20, 20, 20, .72);
}
.page-products .prod-coverage__stats .stat__num {
  font-family: var(--font-mono);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--prod-neon);
  display: block;
}
.page-products .prod-coverage__stats .stat__label {
  display: block;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--prod-muted);
}
.page-products .prod-coverage__visual {
  display: grid;
  gap: 16px;
}
.page-products .prod-coverage__img {
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, .2);
}
.page-products .prod-coverage__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-products .prod-coverage__text {
  font-family: var(--font-body);
  font-size: .92rem;
  line-height: 1.8;
  color: #d9dcd9;
  margin: 0;
}
.page-products .prod-coverage__honors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-products .prod-coverage__more {
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--prod-muted);
  margin: 0;
}
.page-products .prod-coverage__more a {
  color: var(--prod-cyan);
  text-decoration: none;
  border-bottom: 1px dotted rgba(0, 240, 255, .45);
}

/* ============ GUIDE ============ */
.page-products .prod-guide {
  padding: 60px 0 56px;
  background: linear-gradient(180deg, #0c0d0c, #0a0a0a);
}
.page-products .prod-guide__grid {
  display: grid;
  gap: 32px;
}
.page-products .prod-guide__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.page-products .prod-guide__steps li {
  position: relative;
  padding: 0 0 26px 60px;
}
.page-products .prod-guide__steps li:not(:last-child) {
  border-left: 1px solid rgba(57, 255, 20, .28);
  margin-left: 20px;
}
.page-products .prod-guide__steps li:last-child {
  border-left: 1px solid transparent;
  margin-left: 20px;
}
.page-products .prod-guide__num {
  position: absolute;
  left: -20px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--prod-bg2);
  border: 1px solid var(--prod-neon);
  box-shadow: 0 0 14px rgba(57, 255, 20, .3);
  color: var(--prod-neon);
  font-family: var(--font-mono);
  font-size: .9rem;
  font-weight: 700;
}
.page-products .prod-guide__step-body h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--color-white);
  margin: 0 0 8px;
}
.page-products .prod-guide__step-body p {
  font-family: var(--font-body);
  font-size: .9rem;
  line-height: 1.7;
  color: #c9cdc9;
  margin: 0;
}
.page-products .prod-guide__visual {
  display: grid;
  gap: 16px;
}
.page-products .prod-guide__img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(57, 255, 20, .2);
}
.page-products .prod-guide__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-products .prod-guide__tip {
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(0, 240, 255, .2);
  background: rgba(0, 240, 255, .06);
}
.page-products .prod-guide__tip p {
  margin: 0;
  font-family: var(--font-body);
  font-size: .88rem;
  line-height: 1.7;
  color: #d2f6fa;
}
.page-products .prod-guide__devices {
  margin: 0;
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .06em;
  color: var(--prod-muted);
}

/* ============ TIMELINE ============ */
.page-products .prod-timeline {
  position: relative;
  padding: 60px 0 56px;
  background: #0b0c0b;
  border-top: 1px solid rgba(57, 255, 20, .12);
}
.page-products .prod-timeline__list {
  position: relative;
  margin: 0;
  padding-left: 30px;
}
.page-products .prod-timeline__list::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(57, 255, 20, .85), rgba(0, 240, 255, .3));
  border-radius: 2px;
}
.page-products .prod-timeline__item {
  position: relative;
  margin-bottom: 14px;
  border-radius: 12px;
  border: 1px solid rgba(57, 255, 20, .12);
  background: rgba(20, 20, 20, .72);
  transition: border-color .2s, box-shadow .2s;
}
.page-products .prod-timeline__item:hover,
.page-products .prod-timeline__item[open] {
  border-color: rgba(57, 255, 20, .4);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .3), 0 0 18px rgba(57, 255, 20, .06);
}
.page-products .prod-timeline__item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--prod-neon);
  box-shadow: 0 0 12px rgba(57, 255, 20, .65);
}
.page-products .prod-timeline__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
}
.page-products .prod-timeline__item summary::-webkit-details-marker {
  display: none;
}
.page-products .prod-timeline__year {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--prod-neon);
  background: rgba(57, 255, 20, .1);
  border: 1px solid rgba(57, 255, 20, .2);
  border-radius: 8px;
  padding: 4px 10px;
  white-space: nowrap;
}
.page-products .prod-timeline__title {
  font-family: var(--font-head);
  font-size: .98rem;
  color: var(--color-white);
  line-height: 1.4;
}
.page-products .prod-timeline__icon {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--prod-cyan);
  flex: none;
}
.page-products .prod-timeline__icon::before {
  content: "+";
  transition: transform .2s;
}
.page-products .prod-timeline__item[open] .prod-timeline__icon::before {
  content: "−";
}
.page-products .prod-timeline__body {
  padding: 0 18px 18px;
  margin-left: 58px;
}
.page-products .prod-timeline__body p {
  margin: 0;
  font-family: var(--font-body);
  font-size: .88rem;
  line-height: 1.75;
  color: #c9cdc9;
}

/* ============ SUPPORT ============ */
.page-products .prod-support {
  padding: 60px 0 44px;
  background: var(--prod-bg);
}
.page-products .prod-support__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.page-products .prod-support__item {
  border-radius: var(--radius);
  border: 1px solid rgba(0, 240, 255, .16);
  background: rgba(20, 20, 20, .85);
  padding: 22px 20px;
  transition: border-color .2s, box-shadow .2s;
}
.page-products .prod-support__item:hover {
  border-color: rgba(0, 240, 255, .42);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .3), 0 0 18px rgba(0, 240, 255, .06);
}
.page-products .prod-support__item h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--prod-cyan);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-products .prod-support__item h3::before {
  content: "●";
  font-size: .58rem;
  color: var(--prod-neon);
}
.page-products .prod-support__item ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.page-products .prod-support__item li {
  position: relative;
  padding-left: 18px;
  font-family: var(--font-body);
  font-size: .9rem;
  line-height: 1.6;
  color: #d9dcd9;
}
.page-products .prod-support__item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: var(--prod-orange);
  border-radius: 2px;
}
.page-products .prod-support__note {
  margin: 24px 0 0;
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--prod-muted);
  line-height: 1.7;
}
.page-products .prod-support__note a {
  color: var(--prod-cyan);
  text-decoration: none;
  border-bottom: 1px dotted rgba(0, 240, 255, .45);
}

/* ============ REFERENCE ============ */
.page-products .prod-ref {
  padding: 56px 0 64px;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(255, 106, 0, .08), transparent 40%),
    #0d0e0d;
  border-top: 1px solid rgba(255, 106, 0, .14);
}
.page-products .prod-ref__grid {
  display: grid;
  gap: 28px;
}
.page-products .prod-ref__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(57, 255, 20, .16);
}
.page-products .prod-ref__table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  background: rgba(20, 20, 20, .8);
}
.page-products .prod-ref__table th {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: left;
  color: var(--prod-neon);
  background: rgba(57, 255, 20, .06);
  border-bottom: 1px solid rgba(57, 255, 20, .25);
  padding: 14px 16px;
}
.page-products .prod-ref__table td {
  font-family: var(--font-body);
  font-size: .9rem;
  line-height: 1.6;
  color: var(--color-text);
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.page-products .prod-ref__table tbody tr:last-child td {
  border-bottom: 0;
}
.page-products .prod-ref__table tbody tr:hover {
  background: rgba(0, 240, 255, .05);
}
.page-products .prod-ref__table a {
  color: var(--prod-cyan);
  text-decoration: none;
  border-bottom: 1px dotted rgba(0, 240, 255, .45);
}
.page-products .prod-ref__table a:hover,
.page-products .prod-ref__table a:focus-visible {
  color: var(--color-white);
}
.page-products .prod-ref__visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 106, 0, .22);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .3);
}

/* ============ RESPONSIVE ============ */
@media (min-width: 640px) {
  .page-products .prod-hero h1 {
    font-size: 3.1rem;
  }
  .page-products .prod-hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-products .prod-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .page-products .prod-coverage__stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-products .prod-support__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 940px) {
  .page-products .prod-hero {
    padding: 132px 0 64px;
  }
  .page-products .prod-hero__grid {
    grid-template-columns: 1.05fr .95fr;
    gap: 44px;
  }
  .page-products .prod-hero h1 {
    font-size: 3.5rem;
  }
  .page-products .prod-hero__lead {
    font-size: 1.05rem;
  }
  .page-products .prod-features__grid {
    align-items: start;
    gap: 28px 22px;
  }
  .page-products .prod-feature--lift {
    margin-top: -18px;
  }
  .page-products .prod-feature--drop {
    margin-top: 28px;
  }
  .page-products .prod-coverage__layout {
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 40px;
  }
  .page-products .prod-coverage__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-products .prod-guide__grid {
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 44px;
  }
  .page-products .prod-support__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-products .prod-ref__grid {
    grid-template-columns: 1.15fr .85fr;
    align-items: start;
    gap: 36px;
  }
}
