.page-products {
  --pd-accent: #00E5FF;
  --pd-accent-2: #39FF88;
  --pd-accent-3: #FF5C00;
  --pd-bg: #0D0F1A;
  --pd-panel: #1A2233;
  --pd-text: #E8F0F8;
  --pd-dim: #9AA7B8;
  --pd-font-display: "Orbitron", "Rajdhani", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --pd-font-body: "Inter", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --pd-font-mono: "IBM Plex Mono", "Courier New", monospace;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 229, 255, 0.02) 40%, transparent 100%);
  color: var(--pd-text);
}

.page-products .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.page-products .section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.page-products .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--pd-font-mono);
  font-size: 13px;
  color: var(--pd-dim);
  margin-bottom: 24px;
}

.page-products .breadcrumbs a {
  color: var(--pd-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-products .breadcrumbs a:hover {
  color: var(--pd-accent);
}

.page-products .breadcrumbs-current {
  color: var(--pd-accent);
}

.page-products .breadcrumbs-sep {
  color: rgba(255, 255, 255, 0.25);
}

.page-products .kicker {
  display: inline-block;
  font-family: var(--pd-font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--pd-accent-2);
  border: 1px solid rgba(57, 255, 136, 0.35);
  padding: 4px 10px;
  margin-bottom: 16px;
  background: rgba(57, 255, 136, 0.06);
}

.page-products .lead {
  font-family: var(--pd-font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--pd-dim);
}

.page-products h1,
.page-products h2,
.page-products h3,
.page-products h4 {
  font-family: var(--pd-font-display);
  font-weight: 700;
  margin: 0;
}

.page-products .section-head {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
}

.page-products .pd-section-index {
  flex-shrink: 0;
  font-family: var(--pd-font-mono);
  font-size: 14px;
  color: var(--pd-accent-3);
  border: 1px solid rgba(255, 92, 0, 0.4);
  padding: 4px 10px;
  letter-spacing: 0.1em;
  transform: rotate(-3deg);
}

.page-products .pd-section-heading-wrap {
  flex: 1;
}

.page-products .pd-section-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--pd-text);
  letter-spacing: 0.02em;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--pd-accent);
  display: inline-block;
  position: relative;
}

.page-products .pd-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 40%;
  height: 2px;
  background: var(--pd-accent-3);
}

.page-products .pd-section-desc {
  font-family: var(--pd-font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--pd-dim);
  margin-top: 12px;
}

.page-products .mono-label {
  font-family: var(--pd-font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--pd-dim);
}

.page-products .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--pd-font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease, cubic-bezier(0.2, 0.8, 0.2, 1));
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.page-products .btn-primary {
  background: var(--pd-accent-3);
  color: #fff;
  border-color: rgba(255, 92, 0, 0.6);
}

.page-products .btn-primary:hover {
  background: #ff6d1a;
  box-shadow: 0 0 24px rgba(255, 92, 0, 0.35);
}

.page-products .btn-ghost {
  background: transparent;
  color: var(--pd-text);
  border-color: rgba(0, 229, 255, 0.4);
}

.page-products .btn-ghost:hover {
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.25);
}

.page-products .tag {
  display: inline-block;
  font-family: var(--pd-font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--pd-accent-2);
  background: rgba(57, 255, 136, 0.1);
  border: 1px solid rgba(57, 255, 136, 0.35);
  padding: 3px 10px;
}

.page-products .badge {
  display: inline-block;
  font-family: var(--pd-font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--pd-accent-3);
  background: rgba(255, 92, 0, 0.1);
  border: 1px solid rgba(255, 92, 0, 0.35);
  padding: 2px 8px;
}

/* Hero */
.page-products .pd-hero {
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  padding-bottom: 70px;
  background: var(--pd-bg);
  border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

.page-products .pd-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse at 70% 30%, black 0%, transparent 70%);
}

.page-products .pd-hero-glow {
  position: absolute;
  top: -120px;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.page-products .pd-hero-scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pd-accent), transparent);
  animation: pd-scan-move 3.5s ease-in-out infinite alternate;
  opacity: 0.4;
}

@keyframes pd-scan-move {
  0% { transform: translateY(0); opacity: 0.2; }
  100% { transform: translateY(300px); opacity: 0.6; }
}

.page-products .pd-hero-inner {
  position: relative;
  z-index: 2;
}

.page-products .pd-hero-kicker {
  display: inline-block;
}

.page-products .pd-hero-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 720px;
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(0, 229, 255, 0.25);
}

.page-products .pd-hero-lead {
  max-width: 560px;
  margin-bottom: 36px;
  font-size: 16px;
}

.page-products .pd-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.page-products .pd-hero-meta-item {
  border-left: 2px solid var(--pd-accent);
  padding-left: 14px;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.08), transparent);
}

.page-products .pd-hero-meta-label {
  display: block;
  font-size: 11px;
  margin-bottom: 4px;
}

.page-products .pd-hero-meta-value {
  display: block;
  font-family: var(--pd-font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--pd-text);
  letter-spacing: 0.06em;
}

/* Feature Matrix */
.page-products .pd-feature-matrix {
  position: relative;
}

.page-products .pd-feature-matrix::before {
  content: "";
  position: absolute;
  right: 0;
  top: 120px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 92, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-products .pd-matrix-layout {
  position: relative;
}

.page-products .pd-matrix-map {
  position: relative;
  border: 1px solid rgba(0, 229, 255, 0.2);
  margin-bottom: 36px;
  overflow: hidden;
  background: var(--pd-panel);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.page-products .pd-matrix-map-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 160px;
  filter: saturate(1.1) contrast(1.05);
}

.page-products .pd-matrix-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 15, 26, 0.85) 0%, rgba(13, 15, 26, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 24px;
  pointer-events: none;
}

.page-products .pd-matrix-map-tag {
  margin-bottom: 10px;
}

.page-products .pd-matrix-map-title {
  font-family: var(--pd-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--pd-text);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.page-products .pd-matrix-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-products .pd-func-card {
  position: relative;
  display: flex;
  gap: 14px;
  background: linear-gradient(135deg, rgba(26, 34, 51, 0.9) 0%, rgba(13, 15, 26, 0.9) 100%);
  border: 1px solid rgba(0, 229, 255, 0.18);
  padding: 18px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.page-products .pd-func-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--pd-accent), transparent);
  transition: background 0.3s ease;
}

.page-products .pd-func-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 136, 0.5));
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.page-products .pd-func-card:hover {
  border-color: rgba(0, 229, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 229, 255, 0.08);
}

.page-products .pd-func-card:hover::after {
  opacity: 1;
}

.page-products .pd-func-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.2);
  clip-path: polygon(12% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 12%);
}

.page-products .pd-func-card-icon svg {
  width: 28px;
  height: 28px;
}

.page-products .pd-func-card-body {
  flex: 1;
}

.page-products .pd-func-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--pd-text);
  margin-bottom: 6px;
}

.page-products .pd-func-card-text {
  font-family: var(--pd-font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--pd-dim);
  margin-bottom: 10px;
}

.page-products .pd-func-card-tags {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-products .pd-func-card-stat {
  font-size: 11px;
  color: var(--pd-accent);
}

/* PC Experience */
.page-products .pd-pc-experience {
  background: linear-gradient(180deg, rgba(13, 15, 26, 0.4) 0%, rgba(26, 34, 51, 0.25) 100%);
  border-top: 1px solid rgba(0, 229, 255, 0.12);
  border-bottom: 1px solid rgba(0, 229, 255, 0.12);
}

.page-products .pd-pc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-products .pd-pc-visual {
  position: relative;
}

.page-products .pd-pc-frame {
  position: relative;
  border: 1px solid rgba(0, 229, 255, 0.25);
  padding: 10px;
  background: rgba(13, 15, 26, 0.7);
  transform: rotate(-1deg);
}

.page-products .pd-pc-frame::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 40px;
  height: 40px;
  border-top: 3px solid var(--pd-accent);
  border-left: 3px solid var(--pd-accent);
  z-index: 2;
}

.page-products .pd-pc-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-products .pd-pc-frame-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pd-accent-2), transparent);
  opacity: 0.5;
}

.page-products .pd-pc-float-card {
  position: relative;
  margin-top: -30px;
  margin-left: 24px;
  margin-right: auto;
  max-width: 320px;
  background: rgba(13, 15, 26, 0.92);
  border: 1px solid rgba(57, 255, 136, 0.25);
  padding: 16px;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.page-products .pd-pc-float-label {
  display: block;
  color: var(--pd-accent-2);
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(57, 255, 136, 0.2);
  padding-bottom: 8px;
}

.page-products .pd-pc-float-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.page-products .pd-pc-float-step-num {
  font-family: var(--pd-font-mono);
  font-size: 12px;
  color: var(--pd-accent-3);
  border: 1px solid rgba(255, 92, 0, 0.4);
  padding: 2px 6px;
}

.page-products .pd-pc-float-step-text {
  font-family: var(--pd-font-body);
  font-size: 13px;
  color: var(--pd-text);
}

.page-products .pd-pc-content {
  padding-top: 8px;
}

.page-products .pd-pc-feature-list {
  list-style: none;
  margin: 28px 0 0 0;
  padding: 0;
}

.page-products .pd-pc-feature-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(154, 167, 184, 0.12);
}

.page-products .pd-pc-feature-item:last-child {
  border-bottom: none;
}

.page-products .pd-pc-feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(57, 255, 136, 0.06);
  border: 1px solid rgba(57, 255, 136, 0.25);
}

.page-products .pd-pc-feature-icon svg {
  width: 20px;
  height: 20px;
}

.page-products .pd-pc-feature-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--pd-text);
  margin-bottom: 4px;
}

.page-products .pd-pc-feature-text {
  font-family: var(--pd-font-body);
  font-size: 13px;
  line-height: 1.65;
  color: var(--pd-dim);
}

/* Mobile Support */
.page-products .pd-mobile-support {
  position: relative;
}

.page-products .pd-mobile-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-products .pd-mobile-content {
  order: 2;
}

.page-products .pd-mobile-feature-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-products .pd-mobile-feature {
  display: flex;
  gap: 14px;
  background: rgba(26, 34, 51, 0.5);
  border-left: 2px solid var(--pd-accent);
  padding: 14px 16px;
}

.page-products .pd-mobile-feature-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--pd-accent-2);
  border-radius: 50%;
  margin-top: 6px;
  box-shadow: 0 0 8px rgba(57, 255, 136, 0.5);
}

.page-products .pd-mobile-feature-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--pd-text);
  margin-bottom: 4px;
}

.page-products .pd-mobile-feature-text {
  font-family: var(--pd-font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--pd-dim);
}

.page-products .pd-mobile-visual {
  order: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.page-products .pd-mobile-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.1), transparent 70%);
  pointer-events: none;
}

.page-products .pd-mobile-phone {
  position: relative;
  width: 200px;
  border: 2px solid rgba(0, 229, 255, 0.5);
  border-radius: 24px;
  padding: 14px 6px 20px;
  background: var(--pd-panel);
  transform: rotate(2deg);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
}

.page-products .pd-mobile-phone::before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 3px;
  background: rgba(232, 240, 248, 0.4);
  border-radius: 4px;
}

.page-products .pd-mobile-phone-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: rgba(154, 167, 184, 0.4);
  border-radius: 6px;
  z-index: 2;
}

.page-products .pd-mobile-phone-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

/* Scenarios */
.page-products .pd-scenarios {
  background: linear-gradient(180deg, rgba(13, 15, 26, 0.6) 0%, rgba(26, 34, 51, 0.2) 100%);
}

.page-products .pd-scenario-head {
  margin-bottom: 32px;
}

.page-products .pd-scenario-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-products .pd-scenario-card {
  position: relative;
  background: var(--pd-panel);
  border: 1px solid rgba(154, 167, 184, 0.15);
  padding: 22px;
  transition: border-color 0.3s ease;
}

.page-products .pd-scenario-card:hover {
  border-color: rgba(0, 229, 255, 0.4);
}

.page-products .pd-scenario-card-main {
  grid-column: 1 / -1;
  padding: 0;
  overflow: hidden;
}

.page-products .pd-scenario-card-main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pd-accent), var(--pd-accent-2), var(--pd-accent-3));
  opacity: 0.6;
}

.page-products .pd-scenario-card-img-wrap {
  position: relative;
}

.page-products .pd-scenario-card-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
}

.page-products .pd-scenario-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
}

.page-products .pd-scenario-card-body {
  padding: 20px;
}

.page-products .pd-scenario-card-main .pd-scenario-card-body {
  padding: 24px;
}

.page-products .pd-scenario-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--pd-text);
  margin-bottom: 8px;
}

.page-products .pd-scenario-card-text {
  font-family: var(--pd-font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--pd-dim);
}

.page-products .pd-scenario-card-dark {
  background: linear-gradient(135deg, rgba(255, 92, 0, 0.1) 0%, rgba(13, 15, 26, 0.8) 60%);
  border-color: rgba(255, 92, 0, 0.2);
}

.page-products .pd-scenario-card-dark:hover {
  border-color: rgba(255, 92, 0, 0.5);
}

.page-products .pd-scenario-card-icon {
  margin-bottom: 14px;
}

.page-products .pd-scenario-card-icon svg {
  width: 36px;
  height: 36px;
}

/* Sync */
.page-products .pd-sync-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-products .pd-sync-visual {
  position: relative;
}

.page-products .pd-sync-visual::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.06), transparent 50%);
  border: 1px solid rgba(0, 229, 255, 0.15);
  pointer-events: none;
}

.page-products .pd-sync-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(0, 229, 255, 0.15);
}

.page-products .pd-sync-list {
  list-style: none;
  margin: 28px 0 0 0;
  padding: 0;
}

.page-products .pd-sync-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(154, 167, 184, 0.15);
}

.page-products .pd-sync-item:last-child {
  border-bottom: none;
}

.page-products .pd-sync-item-num {
  flex-shrink: 0;
  color: var(--pd-accent-3);
  font-size: 13px;
  padding-top: 2px;
}

.page-products .pd-sync-item-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--pd-text);
  margin-bottom: 4px;
}

.page-products .pd-sync-item-text {
  font-family: var(--pd-font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--pd-dim);
}

/* Access */
.page-products .pd-access-panel {
  position: relative;
  background: linear-gradient(120deg, rgba(0, 229, 255, 0.08) 0%, rgba(13, 15, 26, 0.85) 50%);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 36px 24px;
  overflow: hidden;
}

.page-products .pd-access-marks {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 160px;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black);
  mask-image: linear-gradient(90deg, transparent, black);
}

.page-products .pd-access-content {
  position: relative;
  z-index: 2;
}

.page-products .pd-access-panel .pd-section-index {
  margin-bottom: 16px;
  display: inline-block;
}

.page-products .pd-access-panel .pd-section-title {
  font-size: 26px;
}

.page-products .pd-access-lead {
  font-family: var(--pd-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--pd-text);
  margin-top: 18px;
}

.page-products .pd-access-text {
  font-family: var(--pd-font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--pd-dim);
  margin-top: 10px;
  max-width: 600px;
}

.page-products .pd-access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-products .pd-access-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px;
  background: rgba(13, 15, 26, 0.8);
  border: 1px solid rgba(0, 229, 255, 0.2);
  z-index: 2;
}

.page-products .pd-access-badge svg {
  width: 48px;
  height: 48px;
}

.page-products .pd-access-badge-text {
  text-align: center;
  font-size: 10px;
  line-height: 1.4;
  color: var(--pd-accent);
}

/* Reveal transition */
.page-products [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--d, 0s);
}

.page-products [data-reveal].is-inview {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .page-products [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .page-products .pd-hero-scan {
    animation: none;
  }
}

/* Medium screens */
@media (min-width: 640px) {
  .page-products .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .page-products .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .page-products .pd-hero {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .page-products .pd-hero-title {
    font-size: 42px;
  }

  .page-products .pd-hero-lead {
    font-size: 18px;
    max-width: 620px;
  }

  .page-products .pd-matrix-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

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

  .page-products .pd-scenario-card-main {
    grid-column: 1 / -1;
  }

  .page-products .pd-scenario-card-img {
    max-height: 300px;
  }

  .page-products .pd-access-badge {
    display: flex;
  }

  .page-products .pd-access-panel {
    padding: 40px 32px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .page-products .pd-section-title {
    font-size: 36px;
  }

  .page-products .pd-hero-title {
    font-size: 52px;
  }

  .page-products .pd-hero-lead {
    font-size: 19px;
  }

  .page-products .pd-hero-meta {
    gap: 28px;
  }

  .page-products .pd-matrix-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-products .pd-pc-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
  }

  .page-products .pd-pc-float-card {
    margin-top: -40px;
    margin-left: 40px;
    max-width: 300px;
  }

  .page-products .pd-mobile-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
  }

  .page-products .pd-mobile-content {
    order: 1;
  }

  .page-products .pd-mobile-visual {
    order: 2;
  }

  .page-products .pd-mobile-phone {
    width: 260px;
    padding: 18px 8px 26px;
  }

  .page-products .pd-scenario-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-products .pd-scenario-card-main {
    grid-column: span 1;
  }

  .page-products .pd-sync-layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .page-products .pd-sync-visual {
    order: 1;
  }

  .page-products .pd-sync-content {
    order: 2;
  }
}

/* Extra large */
@media (min-width: 1440px) {
  .page-products .container {
    padding-left: 48px;
    padding-right: 48px;
  }

  .page-products .pd-hero-title {
    font-size: 60px;
  }

  .page-products .pd-matrix-card-grid {
    gap: 24px;
  }
}

.page-products {
  --d: 0.3s;
}
