.page-products {
  background: var(--clr-white);
  color: var(--clr-ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ===== 面包屑 ===== */
.page-products .breadcrumb {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 18px 20px 0;
  font-size: 14px;
}
.page-products .breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.page-products .breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(10, 26, 43, .6);
}
.page-products .breadcrumb li::after {
  content: "/";
  color: var(--clr-gray);
}
.page-products .breadcrumb li:last-child::after {
  content: none;
}
.page-products .breadcrumb a {
  color: var(--clr-blue);
  font-weight: 600;
  text-decoration: none;
}
.page-products .breadcrumb a:hover {
  color: var(--clr-red);
}
.page-products .breadcrumb [aria-current="page"] {
  color: var(--clr-ink);
  font-weight: 700;
}

/* ===== 首屏 Hero ===== */
.page-products .app-hero {
  position: relative;
  background: var(--clr-paper);
  border-top: 4px solid var(--clr-ink);
  border-bottom: 4px solid var(--clr-ink);
  padding: 48px 0 72px;
}
.page-products .app-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      115deg,
      transparent 0 18px,
      rgba(30, 91, 138, .05) 18px 19px,
      transparent 19px 38px
    );
  pointer-events: none;
}
.page-products .hero-tibet-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(90deg, var(--clr-blue) 0 33%, var(--clr-red) 33% 66%, var(--clr-gold) 66% 100%);
  z-index: 2;
}
.page-products .hero-sider {
  position: absolute;
  right: 14px;
  top: 80px;
  writing-mode: vertical-rl;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5em;
  color: rgba(30, 91, 138, .35);
  display: none;
  margin: 0;
}
.page-products .hero-copy {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.page-products .hero-kicker {
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--clr-white);
  background: var(--clr-ink);
  border: 1px solid var(--clr-ink);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 rgba(30, 91, 138, .24);
}
.page-products .hero-copy h1 {
  font-family: var(--font-title);
  font-size: 42px;
  line-height: 1.12;
  margin: 0 0 18px;
  color: var(--clr-ink);
}
.page-products .hero-copy h1 span {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-blue);
  margin-top: 8px;
  letter-spacing: .1em;
}
.page-products .hero-lead {
  margin: 0 auto 24px;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(10, 26, 43, .78);
}
.page-products .hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-bottom: 26px;
}
.page-products .hero-meta-item {
  text-align: center;
}
.page-products .hero-num {
  display: block;
  font-family: var(--font-title);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: var(--clr-blue);
}
.page-products .hero-num em {
  font-style: normal;
  color: var(--clr-red);
}
.page-products .hero-label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: .12em;
  color: rgba(10, 26, 43, .68);
}
.page-products .hero-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
}
.page-products .hero-links a {
  padding: 8px 16px;
  border: 2px solid var(--clr-blue);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-blue);
  text-decoration: none;
  background: transparent;
  transition: background .25s, color .25s;
}
.page-products .hero-links a:hover {
  background: var(--clr-blue);
  color: var(--clr-white);
}

/* ===== 手机舞台 ===== */
.page-products .stage-tip {
  margin: 0 0 16px;
  font-size: 12px;
  text-align: center;
  color: rgba(10, 26, 43, .55);
  letter-spacing: .06em;
}
.page-products .phone-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.page-products .fc {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--clr-white);
  border: 2px solid var(--clr-ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  cursor: default;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.page-products .fc:hover,
.page-products .fc:focus-within {
  border-color: var(--clr-red);
  box-shadow: 8px 8px 0 rgba(212, 61, 42, .18);
  transform: translateY(-2px);
}
.page-products .fc-media {
  flex: 0 0 auto;
}
.page-products .fc-media img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: var(--radius);
}
.page-products .fc-text h2 {
  margin: 0 0 4px;
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--clr-ink);
}
.page-products .fc-text p {
  margin: 0;
  font-size: 13px;
  color: rgba(10, 26, 43, .72);
}
.page-products .fc-ranking {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--clr-red);
  border-radius: var(--radius);
  background: var(--clr-paper);
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  color: var(--clr-red);
  box-shadow: 3px 3px 0 rgba(212, 61, 42, .14);
}

/* ===== 手机模型 ===== */
.page-products .phone-model {
  margin: 20px auto 0;
  max-width: 330px;
  width: 100%;
}
.page-products .phone-frame {
  position: relative;
  background: var(--clr-ink);
  border: 4px solid var(--clr-ink);
  border-radius: 30px;
  padding: 10px;
  box-shadow: 10px 10px 0 rgba(10, 26, 43, .18);
}
.page-products .phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 15px;
  background: var(--clr-ink);
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.page-products .phone-screen {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  background: var(--clr-white);
}
.page-products .phone-screen > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-products .ui-screen-bg {
  position: absolute;
  inset: 0;
  background: rgba(247, 248, 250, .42);
  z-index: 1;
}
.page-products .ui-screen-copy {
  position: absolute;
  inset: 0;
  padding: 36px 18px 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.page-products .ui-status {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-ink);
  padding: 2px 6px;
}
.page-products .ui-headline {
  margin: 20px 4px 10px;
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-ink);
  border-left: 4px solid var(--clr-red);
  padding-left: 8px;
}
.page-products .ui-match-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-products .ui-match-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 248, 250, .62);
  border: 1px solid rgba(10, 26, 43, .14);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--clr-ink);
  box-shadow: 2px 2px 0 rgba(10, 26, 43, .08);
}
.page-products .ui-league {
  flex: 0 0 auto;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 700;
  color: var(--clr-white);
  background: var(--clr-blue);
  border-radius: 3px;
}
.page-products .ui-name {
  flex: 1 1 auto;
  font-weight: 600;
}
.page-products .ui-hour {
  flex: 0 0 auto;
  font-size: 11px;
  color: rgba(10, 26, 43, .64);
}

/* ===== 屏幕高亮区域 ===== */
.page-products .phone-screen .ui-region {
  position: absolute;
  z-index: 4;
  border: 2px dashed rgba(10, 26, 43, .34);
  background: rgba(253, 246, 227, .34);
  border-radius: 6px;
  pointer-events: none;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.page-products .ui-region-push {
  top: 12%;
  left: 8%;
  width: 32%;
  height: 9%;
}
.page-products .ui-region-league {
  top: 14%;
  right: 6%;
  width: 28%;
  height: 10%;
}
.page-products .ui-region-scorer {
  bottom: 22%;
  left: 10%;
  width: 46%;
  height: 14%;
}
.page-products .ui-region-offline {
  bottom: 5%;
  left: 8%;
  right: 8%;
  height: 11%;
}
.page-products .fc-offline:hover ~ .phone-model .ui-region-offline,
.page-products .fc-offline:focus-within ~ .phone-model .ui-region-offline,
.page-products .fc-push:hover ~ .phone-model .ui-region-push,
.page-products .fc-push:focus-within ~ .phone-model .ui-region-push,
.page-products .fc-league:hover ~ .phone-model .ui-region-league,
.page-products .fc-league:focus-within ~ .phone-model .ui-region-league,
.page-products .fc-scorer:hover ~ .phone-model .ui-region-scorer,
.page-products .fc-scorer:focus-within ~ .phone-model .ui-region-scorer {
  border-color: var(--clr-red);
  background: rgba(212, 61, 42, .2);
  box-shadow: 0 0 0 4px rgba(212, 61, 42, .16);
}

/* ===== 手机底部说明 ===== */
.page-products .phone-caption {
  margin: 14px 0 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: .18em;
  color: rgba(10, 26, 43, .55);
}

/* ===== 核心功能区 ===== */
.page-products .feature-panel {
  padding: 72px 0;
}
.page-products .section-head {
  margin-bottom: 36px;
}
.page-products .section-index {
  display: block;
  font-family: var(--font-title);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: var(--clr-red);
  margin-bottom: 8px;
}
.page-products .section-index.light {
  color: var(--clr-gold);
}
.page-products .section-head h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 30px;
  color: var(--clr-ink);
}
.page-products .section-note {
  margin: 10px 0 0;
  font-size: 15px;
  color: rgba(10, 26, 43, .68);
}
.page-products .feature-toolbar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.page-products .toolbar-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(10, 26, 43, .6);
}
.page-products .feature-filter-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  white-space: nowrap;
}
.page-products .feature-filter-bar .filter-btn {
  flex: 0 0 auto;
  appearance: none;
  border: 2px solid var(--clr-gray);
  background: var(--clr-white);
  color: var(--clr-ink);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color .25s, color .25s, background .25s;
}
.page-products .feature-filter-bar .filter-btn:hover {
  border-color: var(--clr-blue);
  color: var(--clr-blue);
}
.page-products .feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.page-products .feature-detail-card {
  background: var(--clr-white);
  border: 2px solid var(--clr-ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  padding: 24px;
  transition: transform .3s, box-shadow .3s;
}
.page-products .feature-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 10px 10px 0 rgba(30, 91, 138, .18);
}
.page-products .fdc-icon {
  width: 64px;
  height: 64px;
  border: 2px solid var(--clr-blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 91, 138, .06);
  margin-bottom: 18px;
}
.page-products .fdc-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--clr-blue);
}
.page-products .feature-detail-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-title);
  font-size: 20px;
  color: var(--clr-ink);
}
.page-products .feature-detail-card p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(10, 26, 43, .78);
}
.page-products .fdc-meta {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border: 1px solid var(--clr-gold);
  border-radius: 999px;
  color: #8a6d3a;
  background: var(--clr-paper);
}

/* ===== 下载与安装 ===== */
.page-products .download-panel {
  position: relative;
  background: var(--clr-blue);
  color: var(--clr-white);
  padding: 72px 0;
}
.page-products .download-tibet-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(90deg, var(--clr-red) 0 25%, var(--clr-gold) 25% 45%, var(--clr-ink) 45% 60%, var(--clr-paper) 60% 100%);
  z-index: 2;
}
.page-products .download-panel .section-head h2 {
  color: var(--clr-white);
}
.page-products .download-panel .section-head {
  margin-bottom: 18px;
}
.page-products .download-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.page-products .qr-column {
  max-width: 340px;
  margin: 0 auto;
  width: 100%;
}
.page-products .qr-card {
  position: relative;
  background: var(--clr-white);
  border: 2px solid var(--clr-ink);
  border-radius: var(--radius);
  box-shadow: 10px 10px 0 rgba(10, 26, 43, .3);
  padding: 18px;
  overflow: hidden;
}
.page-products .qr-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}
.page-products .qr-card::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -40%;
  height: 140%;
  width: 40%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: translateX(-140%) rotate(12deg);
  animation: page-products-qr-scan 4.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes page-products-qr-scan {
  0%, 30% { transform: translateX(-140%) rotate(12deg); }
  70%, 100% { transform: translateX(260%) rotate(12deg); }
}
.page-products .qr-title {
  margin: 14px 0 0;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--clr-ink);
  letter-spacing: .06em;
}
.page-products .qr-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 0 solid var(--clr-gold);
  z-index: 3;
  pointer-events: none;
}
.page-products .qr-tl {
  top: -7px;
  left: -7px;
  border-width: 4px 0 0 4px;
}
.page-products .qr-tr {
  top: -7px;
  right: -7px;
  border-width: 4px 4px 0 0;
}
.page-products .qr-bl {
  bottom: -7px;
  left: -7px;
  border-width: 0 0 4px 4px;
}
.page-products .qr-br {
  bottom: -7px;
  right: -7px;
  border-width: 0 4px 4px 0;
}
.page-products .qr-note {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
  color: rgba(247, 248, 250, .75);
}
.page-products .store-column {
  max-width: 640px;
}
.page-products .store-lead {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(247, 248, 250, .88);
}
.page-products .install-steps {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}
.page-products .install-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(247, 248, 250, .2);
}
.page-products .install-steps li span {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(247, 248, 250, .8);
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  color: var(--clr-gold);
}
.page-products .install-steps li p {
  margin: 0;
  font-size: 15px;
  color: rgba(247, 248, 250, .92);
}
.page-products .store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.page-products .store-actions .btn {
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius);
}
.page-products .btn-light {
  background: var(--clr-white);
  color: var(--clr-blue);
  border: 2px solid var(--clr-white);
}
.page-products .btn-light:hover {
  background: var(--clr-paper);
  border-color: var(--clr-paper);
}
.page-products .channel-note {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: .06em;
  color: rgba(247, 248, 250, .75);
}
.page-products .trust-note {
  background: rgba(253, 246, 227, .1);
  border-left: 6px solid var(--clr-gold);
  color: var(--clr-white);
  font-size: 14px;
  line-height: 1.7;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 14px 0 0;
}

/* ===== 版本与系统要求 ===== */
.page-products .meta-section {
  padding: 72px 0;
}
.page-products .meta-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.page-products .version-intro {
  margin: -14px 0 28px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(10, 26, 43, .72);
}
.page-products .version-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 22px;
  border-left: 2px solid var(--clr-gray);
}
.page-products .version-item {
  position: relative;
  padding: 0 0 32px 20px;
}
.page-products .version-item:last-child {
  padding-bottom: 0;
}
.page-products .version-item::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--clr-white);
  border: 3px solid var(--clr-blue);
  box-shadow: 0 0 0 2px var(--clr-blue);
}
.page-products .version-latest::before {
  border-color: var(--clr-red);
  box-shadow: 0 0 0 2px var(--clr-red);
}
.page-products .ver-body h3 {
  margin: 0 0 6px;
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--clr-ink);
  display: inline-block;
  margin-right: 10px;
}
.page-products .ver-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(10, 26, 43, .72);
}
.page-products .requirement-panel {
  background: var(--clr-paper);
  border: 2px solid var(--clr-ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  padding: 24px;
}
.page-products .require-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  border-top: 2px solid var(--clr-gray);
}
.page-products .require-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--clr-gray);
  font-size: 15px;
}
.page-products .require-list li span {
  font-weight: 600;
  color: rgba(10, 26, 43, .72);
}
.page-products .require-list li strong {
  font-family: var(--font-title);
  color: var(--clr-ink);
  text-align: right;
}
.page-products .require-note {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(10, 26, 43, .65);
}

/* ===== 延伸服务 ===== */
.page-products .related-section {
  background: var(--clr-paper);
  border-top: 2px solid var(--clr-ink);
  padding: 72px 0;
}
.page-products .related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.page-products .related-card {
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding: 24px;
  background: var(--clr-white);
  border: 2px solid var(--clr-ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  text-decoration: none;
  color: var(--clr-ink);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.page-products .related-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-red);
  box-shadow: 10px 10px 0 rgba(212, 61, 42, .18);
}
.page-products .related-idx {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 700;
  color: var(--clr-blue);
  margin-bottom: 14px;
}
.page-products .related-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-title);
  font-size: 20px;
}
.page-products .related-card p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(10, 26, 43, .72);
}
.page-products .related-more {
  margin-top: auto;
  font-weight: 700;
  font-size: 14px;
  color: var(--clr-red);
}

/* ===== 容器与网格 ===== */
@media (max-width: 639px) {
  .page-products .container {
    padding: 0 20px;
  }
}

/* ===== 平板增强 ===== */
@media (min-width: 640px) {
  .page-products .hero-copy h1 {
    font-size: 54px;
  }
  .page-products .hero-copy h1 span {
    font-size: 26px;
  }
  .page-products .hero-meta {
    gap: 20px 48px;
  }
  .page-products .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-products .download-layout {
    grid-template-columns: 320px 1fr;
    gap: 48px;
  }
  .page-products .qr-column {
    margin: 0;
  }
  .page-products .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-products .related-card:nth-child(2) {
    grid-column: span 1;
  }
  .page-products .meta-layout {
    gap: 40px;
  }
}

/* ===== 桌面增强 ===== */
@media (min-width: 1024px) {
  .page-products .hero-sider {
    display: block;
  }
  .page-products .app-hero {
    padding: 64px 0 90px;
  }
  .page-products .phone-stage {
    min-height: 600px;
    flex-direction: row;
    gap: 0;
  }
  .page-products .fc {
    position: absolute;
    width: 220px;
    display: block;
    padding: 20px;
  }
  .page-products .fc-media {
    margin-bottom: 14px;
  }
  .page-products .fc-media img {
    width: 72px;
    height: 72px;
  }
  .page-products .fc-ranking {
    width: 64px;
    height: 64px;
    font-size: 17px;
    margin-bottom: 14px;
  }
  .page-products .fc-offline {
    top: 44px;
    left: calc(50% - 440px);
  }
  .page-products .fc-push {
    bottom: 72px;
    left: calc(50% - 440px);
  }
  .page-products .fc-league {
    top: 64px;
    right: calc(50% - 440px);
  }
  .page-products .fc-scorer {
    bottom: 96px;
    right: calc(50% - 440px);
  }
  .page-products .phone-model {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: 330px;
  }
  .page-products .phone-caption {
    margin-top: 16px;
  }
  .page-products .feature-panel {
    padding: 96px 0;
  }
  .page-products .feature-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .page-products .feature-toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .page-products .download-panel,
  .page-products .meta-section,
  .page-products .related-section {
    padding: 96px 0;
  }
  .page-products .meta-layout {
    grid-template-columns: 1.15fr .85fr;
    gap: 64px;
  }
  .page-products .related-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .page-products .related-card:first-child {
    grid-column: span 1;
  }
  .page-products .related-card:nth-child(2) {
    grid-column: span 2;
  }
  .page-products .related-card:nth-child(3) {
    grid-column: span 1;
  }
  .page-products .section-head h2 {
    font-size: 36px;
  }
}
