.page-products {
  --product-orange: #FF7A00;
  --product-green: #00A878;
  --product-yellow: #F2E500;
  --product-blue: #1B4B9E;
  --product-blue-soft: #4A7BC8;
  --product-ink: #0B1B33;
  --product-paper: #F5F2E9;
  --product-panel: #FFFFFF;
  --product-font-head: "Arial Black", "Helvetica Neue", "PingFang SC", sans-serif;
  --product-font-body: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", sans-serif;
  --product-font-data: "DIN Alternate", "Roboto Mono", monospace;

  background: var(--product-paper);
  color: var(--product-ink);
  font-family: var(--product-font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.page-products .page-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.page-products a {
  color: inherit;
}

.page-products .inline-link {
  color: var(--product-blue);
  font-weight: 800;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.page-products .inline-link:hover {
  color: var(--product-orange);
}

.page-products .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: #5C6B7A;
  margin: 0 0 0.75rem;
}

.page-products .breadcrumb-sep {
  opacity: 0.6;
}

.page-products .section-label {
  display: inline-block;
  font-family: var(--product-font-data);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--product-blue) 0%, var(--product-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--product-blue);
  margin: 0 0 0.5rem;
  padding: 0;
}

/* ————— 首屏产物Hero ————— */
.page-products .products-hero {
  position: relative;
  margin: 0 -1rem 2.5rem;
  padding: 2.25rem 1rem 3.25rem;
  background: linear-gradient(135deg, #1B4B9E 0%, #4A7BC8 48%, #FF7A00 100%);
  overflow: hidden;
}

.page-products .products-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.page-products .products-hero::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  width: 16rem;
  height: 16rem;
  background: linear-gradient(135deg, rgba(242, 229, 0, 0.3) 0%, rgba(255, 122, 0, 0.2) 100%);
  border-radius: 50%;
  filter: blur(3rem);
  pointer-events: none;
}

.page-products .products-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

.page-products .products-hero-copy {
  padding-right: 0;
}

.page-products .products-hero .breadcrumb,
.page-products .products-hero .section-label {
  color: rgba(255, 255, 255, 0.78);
}

.page-products .products-hero .section-label {
  background: none;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.85);
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 0.375rem;
}

.page-products .products-hero .breadcrumb-item {
  color: rgba(255, 255, 255, 0.7);
}

.page-products .page-title {
  font-family: var(--product-font-head);
  font-size: 1.75rem;
  line-height: 1.18;
  color: #ffffff;
  margin: 0 0 0.875rem;
  letter-spacing: -0.01em;
  max-width: 15em;
}

.page-products .page-lead {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.25rem;
  max-width: 38em;
}

.page-products .unified-entry {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(4px);
  padding: 0.625rem 0.75rem;
  border-radius: 0.75rem;
  margin-bottom: 1.125rem;
  max-width: 34em;
}

.page-products .unified-entry .status-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--product-yellow);
  border-radius: 50%;
  display: block;
  flex: 0 0 auto;
  margin-top: 0.25rem;
  box-shadow: 0 0 0 3px rgba(242, 229, 0, 0.2);
}

.page-products .unified-entry-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.page-products .unified-entry-content strong {
  color: #ffffff;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
}

.page-products .unified-entry-content span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  line-height: 1.55;
}

.page-products .unified-entry .inline-link {
  color: var(--product-yellow);
}

.page-products .unified-entry .inline-link:hover {
  color: #ffffff;
}

.page-products .product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.page-products .btn {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-family: var(--product-font-body);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: default;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  text-decoration: none;
}

.page-products .btn-primary {
  background: linear-gradient(135deg, #FF7A00 0%, #FFC300 100%);
  color: #0B1B33;
  border-color: #FFC300;
}

.page-products .btn-primary:hover {
  background: linear-gradient(135deg, #FF8A22 0%, #FFC300 85%);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(255, 122, 0, 0.3);
}

.page-products .btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.75);
}

.page-products .btn-outline:hover {
  border-color: var(--product-yellow);
  color: var(--product-yellow);
}

/* ————— 设备叠层视觉 ————— */
.page-products .products-hero-visual {
  position: relative;
  min-height: 0;
}

.page-products .device-stack {
  position: relative;
  height: 22rem;
  max-width: 26rem;
  margin: 0 auto;
}

.page-products .device {
  position: absolute;
  border-radius: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-products .device:hover {
  transform: translateY(-0.5rem) rotate(-0.5deg);
}

.page-products .device-browser {
  top: 0;
  left: 0;
  width: 75%;
  z-index: 1;
  transform: rotate(-3deg);
}

.page-products .device-browser:hover {
  transform: rotate(-2deg) translateY(-0.5rem);
}

.page-products .device-mobile {
  top: 4.5rem;
  right: 0;
  width: 36%;
  z-index: 2;
  transform: rotate(4deg) translateY(1.5rem);
}

.page-products .device-mobile:hover {
  transform: rotate(3deg) translateY(0.75rem);
}

.page-products .device-client {
  bottom: 0;
  left: 1.6rem;
  width: 30%;
  z-index: 3;
  transform: rotate(-2deg);
}

.page-products .device-client:hover {
  transform: rotate(-1deg) translateY(-0.5rem);
}

.page-products .device-frame {
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.5rem;
  box-shadow: 0 12px 24px rgba(11, 27, 51, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.page-products .device-browser .device-frame {
  padding-bottom: 1.25rem;
}

.page-products .device-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

.page-products .device-bar i {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  display: block;
}

.page-products .device-bar i:nth-child(1) {
  background: #FF5F57;
}

.page-products .device-bar i:nth-child(2) {
  background: #FEBC2E;
}

.page-products .device-bar i:nth-child(3) {
  background: #28C840;
}

.page-products .device-bar span {
  font-size: 0.5625rem;
  font-family: var(--product-font-data);
  color: #5C6B7A;
  margin-left: auto;
}

.page-products .device-screen {
  position: relative;
  background: linear-gradient(135deg, #EAF0F8 0%, #F8F4EC 100%);
  border-radius: 0.375rem;
  height: 10rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem;
}

.page-products .device-mobile .device-screen {
  height: 13rem;
}

.page-products .device-client .device-screen {
  height: 7.5rem;
  background: linear-gradient(135deg, #1B4B9E, #FF7A00);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.page-products .screen-brand {
  font-family: var(--product-font-head);
  font-size: 1rem;
  font-weight: 900;
  color: var(--product-blue);
}

.page-products .screen-login {
  background: var(--product-orange);
  color: #fff;
  font-size: 0.6875rem;
  padding: 0.2rem 0.65rem;
  border-radius: 2rem;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}

.page-products .screen-line {
  display: block;
  background: rgba(75, 107, 145, 0.26);
  border-radius: 2rem;
  margin: 0 auto;
}

.page-products .line-one {
  width: 72%;
  height: 0.375rem;
  margin-top: 1rem;
}

.page-products .line-two {
  width: 58%;
  height: 0.375rem;
}

.page-products .line-three {
  width: 64%;
  height: 0.375rem;
}

.page-products .mobile-notch {
  width: 3rem;
  height: 0.3rem;
  background: #1B1B1B;
  border-radius: 0 0 0.5rem 0.5rem;
  margin: -0.5rem auto 0;
  z-index: 4;
  position: relative;
}

.page-products .mobile-brand {
  font-family: var(--product-font-head);
  font-size: 0.8rem;
  color: var(--product-blue);
}

.page-products .mobile-tag {
  font-size: 0.5625rem;
  background: var(--product-green);
  color: #fff;
  border-radius: 2rem;
  padding: 0.125rem 0.5rem;
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
}

.page-products .mobile-line {
  display: block;
  background: rgba(75, 107, 145, 0.2);
  border-radius: 2rem;
}

.page-products .mline-one {
  width: 72%;
  height: 0.4rem;
  margin-top: 0.25rem;
}

.page-products .mline-two {
  width: 48%;
  height: 0.4rem;
}

.page-products .mline-three {
  width: 60%;
  height: 0.4rem;
}

.page-products .client-icon {
  font-family: var(--product-font-head);
  background: #fff;
  color: var(--product-blue);
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 900;
}

.page-products .client-text {
  font-family: var(--product-font-head);
  color: #fff;
  font-size: 0.75rem;
}

.page-products .client-badge {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: var(--product-font-data);
  font-size: 0.625rem;
  padding: 0.125rem 0.5rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.page-products .device-caption {
  position: absolute;
  background: rgba(11, 27, 51, 0.78);
  color: #fff;
  font-size: 0.6875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1.125rem;
  z-index: 5;
  font-weight: 600;
}

/* ————— 面板堆叠 ————— */
.page-products .panel-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: 3rem;
}

.page-products .product-panel {
  background: var(--product-panel);
  border-radius: 1rem;
  border: 1px solid rgba(11, 27, 51, 0.1);
  box-shadow: 0 20px 44px rgba(11, 27, 51, 0.07);
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--product-blue) 0%, var(--product-orange) 100%) 1;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.page-products .product-panel:hover {
  box-shadow: 0 28px 60px rgba(11, 27, 51, 0.12);
}

.page-products .product-panel .panel-number {
  position: absolute;
  top: 0.5rem;
  right: 0.625rem;
  font-family: var(--product-font-head);
  font-size: 3.25rem;
  line-height: 1;
  color: rgba(11, 27, 51, 0.09);
  font-weight: 900;
  pointer-events: none;
  user-select: none;
}

.page-products .panel-body {
  padding: 1.5rem 1.25rem 1.75rem;
}

.page-products .panel-heading {
  margin-bottom: 1.375rem;
  padding-right: 2.5rem;
}

.page-products .section-title {
  font-family: var(--product-font-head);
  font-size: 1.125rem;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.01em;
}

/* ————— 设备面板内容 ————— */
.page-products .panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.page-products .panel-grid.reverse {
  grid-template-areas: "copy" "img";
}

.page-products .panel-grid.reverse .img-stage {
  grid-area: img;
}

.page-products .panel-grid.reverse .panel-copy {
  grid-area: copy;
}

.page-products .panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-products .panel-copy p {
  font-size: 0.9375rem;
  line-height: 1.75;
  margin: 0 0 1rem;
  color: #2E4355;
}

.page-products .feature-list {
  list-style: none;
  margin: 0 0 1.125rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.page-products .feature-list li {
  position: relative;
  padding-left: 1.375rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #3A4D5E;
}

.page-products .feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4375rem;
  width: 0.45rem;
  height: 0.45rem;
  background: linear-gradient(135deg, var(--product-blue) 0%, var(--product-orange) 100%);
  border-radius: 50%;
}

.page-products .step-note {
  background: var(--product-paper);
  border-left: 3px solid var(--product-orange);
  padding: 0.625rem 0.75rem;
  border-radius: 0 0.375rem 0.375rem 0;
  font-size: 0.8125rem;
  color: #2E4355;
  line-height: 1.55;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.page-products .step-num {
  font-family: var(--product-font-data);
  font-weight: 800;
  color: var(--product-orange);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ————— 下载提示 ————— */
.page-products .download-hint {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.75rem;
}

.page-products .download-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.6), transparent);
}

.page-products .download-hint-text {
  background: var(--product-orange);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.375rem 0.875rem;
  border-radius: 0.5rem;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(255, 122, 0, 0.25);
}

/* ————— 数据面板 ————— */
.page-products .data-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  margin: 0 0 1.375rem;
}

.page-products .data-strip .metric {
  background: linear-gradient(160deg, #F0F3F9 0%, #FBFAF6 100%);
  border: 1px solid #E5E8EC;
  border-radius: 0.625rem;
  padding: 0.625rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.page-products .data-strip .metric:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 0, 0.5);
}

.page-products .data-strip .metric-label {
  font-size: 0.6875rem;
  color: #5C6B7A;
  letter-spacing: 0.05em;
}

.page-products .data-strip .metric-value {
  font-family: var(--product-font-data);
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--product-ink);
  line-height: 1.1;
}

.page-products .tag-demo {
  margin-top: 0.25rem;
}

.page-products .tag-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4375rem;
  margin: 0.625rem 0 0.5rem;
}

.page-products .tag-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--product-paper);
  border: 1px solid #D9DEE4;
  border-radius: 2rem;
  padding: 0.3125rem 0.8125rem 0.3125rem 0.9375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2E4355;
  cursor: default;
  position: relative;
  transition: all 0.2s ease;
}

.page-products .tag-tab:hover {
  border-color: var(--product-orange);
  color: var(--product-orange);
}

.page-products .tag-tab.is-saved {
  background: var(--product-green);
  border-color: var(--product-green);
  color: #fff;
}

.page-products .tag-tab.is-saved::before {
  content: "★";
  font-size: 0.6875rem;
  color: var(--product-yellow);
}

.page-products .tag-tab.is-hot {
  border-color: var(--product-orange);
  color: var(--product-orange);
  background: rgba(255, 122, 0, 0.08);
}

.page-products .tag-desc {
  font-size: 0.8125rem;
  color: #5C6B7A;
  line-height: 1.6;
  margin: 0;
}

/* ————— 双场连看面板 ————— */
.page-products .dual-view {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.page-products .dual-copy h3 {
  font-family: var(--product-font-head);
  font-size: 0.9375rem;
  margin: 0 0 0.625rem;
}

.page-products .numbered-list {
  margin: 0 0 1.125rem;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: #3A4D5E;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  line-height: 1.6;
}

.page-products .numbered-list li::marker {
  color: var(--product-orange);
  font-family: var(--product-font-data);
  font-weight: 800;
}

.page-products .status-card {
  display: flex;
  gap: 0.625rem;
  background: rgba(0, 168, 120, 0.08);
  border: 1px solid rgba(0, 168, 120, 0.24);
  border-radius: 0.625rem;
  padding: 0.625rem 0.75rem;
}

.page-products .status-card .status-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--product-green);
  border-radius: 50%;
  display: block;
  flex: 0 0 auto;
  margin-top: 0.3125rem;
  box-shadow: 0 0 0 3px rgba(0, 168, 120, 0.16);
}

.page-products .status-card strong {
  font-size: 0.8125rem;
  margin-bottom: 0.125rem;
  display: block;
}

.page-products .status-card p {
  font-size: 0.8125rem;
  margin: 0;
  color: #2E4355;
  line-height: 1.55;
}

/* ————— 使用引导区 ————— */
.page-products .guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.page-products .guide-card {
  border: 1px solid #E3E6EA;
  border-radius: 0.75rem;
  padding: 1rem 1rem 1.125rem;
  background: linear-gradient(165deg, #FFFFFF, #F9F8F3);
  position: relative;
  transition: all 0.25s ease;
}

.page-products .guide-card:hover {
  border-color: rgba(255, 122, 0, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(11, 27, 51, 0.07);
}

.page-products .guide-index {
  display: inline-block;
  font-family: var(--product-font-head);
  font-size: 0.75rem;
  background: var(--product-blue);
  color: #fff;
  border-radius: 0.25rem;
  padding: 0.15rem 0.5rem;
  margin-bottom: 0.5rem;
}

.page-products .guide-index:nth-child(2) {
  background: var(--product-orange);
}

.page-products .guide-card h3 {
  font-family: var(--product-font-head);
  font-size: 0.875rem;
  margin: 0 0 0.375rem;
}

.page-products .guide-card p {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #4A5A69;
  margin: 0 0 0.75rem;
}

.page-products .text-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--product-blue);
  text-decoration: none;
  border-bottom: 2px solid rgba(27, 75, 158, 0.3);
  padding-bottom: 1px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.page-products .text-link:hover {
  color: var(--product-orange);
  border-bottom-color: var(--product-orange);
}

/* ————— 共享占位图片定义 ————— */
.page-products .img-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EAF0F8 0%, #F8F4EC 100%);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #E3E6EA;
  position: relative;
  min-height: 0;
}

.page-products .img-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(75, 123, 200, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 123, 200, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}

.page-products .img-stage img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0.6875rem;
  position: relative;
  z-index: 2;
}

.page-products .ratio-wide {
  aspect-ratio: 10 / 7;
}

.page-products .ratio-wide img,
.page-products .data-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-products .mobile-shot {
  aspect-ratio: 600 / 1200;
  max-width: 21rem;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
}

.page-products .mobile-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-products .data-stage,
.page-products .dual-view .img-stage {
  aspect-ratio: 4 / 3;
}

.page-products .dual-view .img-stage {
  max-height: 22rem;
  width: 100%;
}

/* ————— 图像位置 ————— */
.page-products .panel-grid .img-stage {
  width: 100%;
}

.page-products .data-stage {
  min-height: 100%;
  align-self: stretch;
}

/* ————— 窄屏防护 ————— */
.page-products .page-shell {
  min-width: 0;
}

.page-products .panel-body {
  min-width: 0;
}

.page-products .device-stack,
.page-products .device-frame,
.page-products .device-screen,
.page-products .tag-tabs,
.page-products .data-strip {
  max-width: 100%;
}

.page-products .device-screen {
  min-width: 0;
}

.page-products .screen-line,
.page-products .mobile-line {
  max-width: 100%;
}

.page-products .product-actions .btn {
  text-align: center;
}

/* ————— 平板及以上媒体查询 ————— */
@media (min-width: 640px) {
  .page-products {
    padding-top: 0;
  }

  .page-products .products-hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .page-products .products-hero {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }

  .page-products .panel-bodysection {
    padding: 2rem 1.5rem;
  }

  .page-products .panel-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .page-products .panel-grid.reverse {
    grid-template-areas: "img copy";
    grid-template-columns: 1fr 1fr;
  }

  .page-products .panel-grid.reverse .img-stage {
    grid-area: img;
  }

  .page-products .panel-grid.reverse .panel-copy {
    grid-area: copy;
  }

  .page-products .page-title {
    font-size: 2rem;
  }

  .page-products .page-lead {
    font-size: 1rem;
  }

  .page-products .data-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products .device-stack {
    margin-right: 0;
  }

  .page-products .device-browser {
    left: 0.25rem;
  }

  .page-products .device-mobile {
    right: 0.5rem;
  }

  .page-products .mobile-shot {
    aspect-ratio: 3 / 5;
    max-height: 24rem;
    max-width: 17rem;
  }

  .page-products .dual-view {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1.5rem;
  }

  .page-products .dual-view .img-stage {
    align-self: center;
  }
}

@media (min-width: 960px) {
  .page-products .products-hero {
    margin-left: calc((100% - 1280px) * 0);
    margin-right: 0;
  }

  .page-products .page-title {
    font-size: 2.5rem;
  }

  .page-products .panel-number {
    font-size: 5rem;
    top: 0.75rem;
    right: 1.25rem;
  }

  .page-products .panel-body {
    padding: 2.5rem 2.5rem 3rem;
  }

  .page-products .section-title {
    font-size: 1.5rem;
  }

  .page-products .panel-copy p {
    font-size: 1rem;
  }

  .page-products .data-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-products .guide-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-products .device-stack {
    height: 24rem;
    max-width: 28rem;
  }

  .page-products .device-browser {
    width: 70%;
  }

  .page-products .device-mobile {
    width: 34%;
  }

  .page-products .device-client {
    width: 28%;
  }

  .page-products .device-screen {
    height: 11rem;
  }

  .page-products .device-mobile .device-screen {
    height: 14rem;
  }

  .page-products .dual-view .img-stage {
    max-height: 24rem;
  }

  .page-products .tag-tabs {
    max-width: 740px;
  }
}
