.page-products {
  --pd-line: rgba(255, 255, 255, 0.12);
  --pd-gap: 24px;
  --pd-space: 56px;
  background: var(--bg-deep);
}

.page-products .pd-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 48px;
}
.page-products .pd-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--accent-blue-soft) 0%, transparent 70%);
  pointer-events: none;
}
.page-products .pd-hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--accent-green-soft) 0%, transparent 70%);
  pointer-events: none;
}
.page-products .pd-hero .container {
  position: relative;
  z-index: 1;
}
.page-products .pd-hero-grid {
  display: block;
}
.page-products .pd-hero-copy {
  margin-top: 28px;
}
.page-products .pd-hero h1 {
  margin: 14px 0 18px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(36px, 8vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.page-products .pd-hero-lead {
  max-width: 58ch;
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.page-products .pd-hero-read {
  max-width: 52ch;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.page-products .pd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-products .pd-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}
.page-products .pd-hero-stat {
  position: relative;
  padding: 18px 16px 18px 22px;
  background: var(--bg-glass);
  border: 1px solid var(--pd-line);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.page-products .pd-hero-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-blue);
  transform: skewX(-15deg);
}
.page-products .pd-hero-stat:nth-child(2)::before {
  background: var(--accent-green);
}
.page-products .pd-hero-stat:nth-child(3)::before {
  background: var(--accent-green);
}
.page-products .pd-hero-stat:nth-child(4)::before {
  background: var(--accent-orange);
}
.page-products .pd-hero-stat .stat-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
}
.page-products .pd-hero-stat .stat-label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}

.page-products .pd-overview {
  position: relative;
  overflow: hidden;
  padding: var(--pd-space) 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
}
.page-products .pd-overview-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  z-index: 0;
}
.page-products .pd-overview .container {
  position: relative;
  z-index: 1;
}
.page-products .pd-overview .section-heading {
  margin-bottom: 36px;
}
.page-products .pd-overview .section-subtitle {
  max-width: 62ch;
  color: var(--text-secondary);
}
.page-products .pd-card-grid {
  display: grid;
  gap: var(--pd-gap);
}
.page-products .pd-device-card {
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  background: var(--bg-glass);
  border: 1px solid var(--pd-line);
  border-radius: var(--radius-l);
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.page-products .pd-device-card::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, transparent 40%, var(--accent-blue-soft) 100%);
  pointer-events: none;
}
.page-products .pd-device-card:hover,
.page-products .pd-device-card:focus-within {
  background: var(--bg-glass-strong);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.page-products .pd-device-dashboard:hover,
.page-products .pd-device-dashboard:focus-within {
  border-color: var(--accent-blue);
}
.page-products .pd-device-compare:hover,
.page-products .pd-device-compare:focus-within {
  border-color: var(--accent-green);
}
.page-products .pd-device-schedule:hover,
.page-products .pd-device-schedule:focus-within {
  border-color: var(--accent-blue);
}
.page-products .pd-device-favorite:hover,
.page-products .pd-device-favorite:focus-within {
  border-color: var(--accent-orange);
}
.page-products .pd-device-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.page-products .pd-device-index {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
}
.page-products .pd-device-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--accent-blue);
}
.page-products .pd-device-compare .pd-device-icon {
  color: var(--accent-green);
}
.page-products .pd-device-schedule .pd-device-icon {
  color: var(--accent-blue);
}
.page-products .pd-device-favorite .pd-device-icon {
  color: var(--accent-orange);
}
.page-products .pd-device-icon-svg {
  display: block;
  width: 100%;
  height: 100%;
}
.page-products .pd-device-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-title);
  font-size: 22px;
  line-height: 1.2;
  color: var(--text-primary);
}
.page-products .pd-device-card > p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}
.page-products .pd-device-features {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.page-products .pd-device-features li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}
.page-products .pd-device-features li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 2px;
  background: var(--accent-blue);
}
.page-products .pd-device-compare .pd-device-features li::before {
  background: var(--accent-green);
}
.page-products .pd-device-schedule .pd-device-features li::before {
  background: var(--accent-blue);
}
.page-products .pd-device-favorite .pd-device-features li::before {
  background: var(--accent-orange);
}
.page-products .pd-device-link {
  margin-top: auto;
  padding-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  border-top: 1px solid var(--pd-line);
}
.page-products .pd-device-link span {
  display: inline-block;
  transition: transform var(--transition);
}
.page-products .pd-device-link:hover,
.page-products .pd-device-link:focus-visible {
  color: var(--accent-green);
}
.page-products .pd-device-link:hover span,
.page-products .pd-device-link:focus-visible span {
  transform: translateX(4px);
}

.page-products .pd-feature {
  padding: var(--pd-space) 0;
  position: relative;
}
.page-products .pd-feature-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}
.page-products .pd-feature-index {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-green);
}
.page-products .pd-feature h2 {
  margin: 0 0 16px;
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  color: var(--text-primary);
}
.page-products .pd-feature-lead {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-primary);
}
.page-products .pd-feature-copy > p:not(.pd-feature-lead) {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
}
.page-products .pd-feature-list {
  margin: 20px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.page-products .pd-feature-list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
}
.page-products .pd-feature-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--accent-blue);
  transform: rotate(45deg);
}
.page-products .pd-feature-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}
.page-products .pd-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.page-products .pd-feature-figure {
  margin: 0;
}
.page-products .pd-feature-img,
.page-products .pd-feature-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-l);
  border: 1px solid var(--pd-line);
}
.page-products .pd-feature-figure figcaption {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.page-products .pd-feature-solid {
  background: var(--bg-surface);
  color: var(--text-on-surface);
}
.page-products .pd-feature-solid h2 {
  color: var(--text-on-surface);
}
.page-products .pd-feature-solid .pd-feature-lead {
  color: var(--text-on-surface);
}
.page-products .pd-feature-solid .pd-feature-index {
  color: var(--accent-blue);
}
.page-products .pd-feature-solid .pd-feature-copy > p:not(.pd-feature-lead) {
  color: var(--text-on-surface-soft);
}
.page-products .pd-feature-solid .pd-feature-list li {
  color: var(--text-on-surface-soft);
}
.page-products .pd-feature-solid .pd-feature-list li::before {
  background: var(--accent-green);
}
.page-products .pd-feature-solid .pd-feature-figure figcaption {
  color: var(--text-on-surface-soft);
}
.page-products .pd-feature-solid .pd-feature-img,
.page-products .pd-feature-solid .pd-feature-figure img {
  border-color: rgba(10, 14, 20, 0.15);
}
.page-products .pd-feature-solid .btn-primary {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #fff;
}

.page-products .pd-duo {
  padding: var(--pd-space) 0;
}
.page-products .pd-duo .section-heading {
  margin-bottom: 36px;
}
.page-products .pd-duo .section-subtitle {
  max-width: 62ch;
  color: var(--text-secondary);
}
.page-products .pd-duo-grid {
  display: grid;
  gap: var(--pd-gap);
}
.page-products .pd-duo-card {
  background: var(--bg-glass);
  border: 1px solid var(--pd-line);
  border-radius: var(--radius-l);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.page-products .pd-duo-card:hover,
.page-products .pd-duo-card:focus-within {
  border-color: var(--accent-blue);
  background: var(--bg-glass-strong);
  transform: translateY(-4px);
}
.page-products .pd-duo-card:last-child:hover,
.page-products .pd-duo-card:last-child:focus-within {
  border-color: var(--accent-orange);
}
.page-products .pd-duo-media {
  margin: 0;
}
.page-products .pd-duo-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-products .pd-duo-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.page-products .pd-duo-content h3 {
  margin: 0 0 10px;
  font-family: var(--font-title);
  font-size: 24px;
  line-height: 1.2;
  color: var(--text-primary);
}
.page-products .pd-duo-content p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.page-products .pd-duo-content ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.page-products .pd-duo-content ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}
.page-products .pd-duo-content ul li::before {
  content: "/";
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent-green);
}
.page-products .pd-duo-content .btn {
  margin-top: auto;
  align-self: flex-start;
}

.page-products .pd-scale {
  padding: var(--pd-space) 0;
  position: relative;
  background: linear-gradient(120deg, rgba(30, 91, 255, 0.06) 0%, transparent 40%, transparent 70%, rgba(0, 230, 138, 0.04) 100%);
}
.page-products .pd-scale-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}
.page-products .pd-scale-copy .section-kicker {
  display: inline-block;
  margin-bottom: 8px;
}
.page-products .pd-scale-copy h2 {
  margin: 0 0 16px;
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  color: var(--text-primary);
}
.page-products .pd-scale-copy > p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.page-products .pd-scale-copy ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.page-products .pd-scale-copy ul li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.page-products .pd-scale-copy ul li::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  transform: rotate(45deg);
}
.page-products .pd-scale-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.page-products .pd-scale-stat {
  padding: 20px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--pd-line);
  border-top: 3px solid var(--accent-blue);
  border-radius: var(--radius-m);
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}
.page-products .pd-scale-stat:nth-child(even) {
  border-top-color: var(--accent-green);
}
.page-products .pd-scale-stat:hover,
.page-products .pd-scale-stat:focus-within {
  background: var(--bg-glass-strong);
}
.page-products .pd-scale-stat .stat-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
}
.page-products .pd-scale-stat .stat-label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.page-products .pd-workflow {
  padding: var(--pd-space) 0;
  background: var(--bg-glass);
  border-top: 1px solid var(--pd-line);
  border-bottom: 1px solid var(--pd-line);
}
.page-products .pd-workflow .section-heading {
  margin-bottom: 36px;
}
.page-products .pd-workflow .section-subtitle {
  max-width: 62ch;
  color: var(--text-secondary);
}
.page-products .pd-workflow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}
.page-products .pd-workflow-list li {
  position: relative;
  padding: 24px;
  background: var(--bg-deep);
  border: 1px solid var(--pd-line);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.page-products .pd-workflow-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
  opacity: 0.6;
}
.page-products .pd-workflow-list li:hover {
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}
.page-products .pd-workflow-num {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-green);
}
.page-products .pd-workflow-list h3 {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-size: 20px;
  line-height: 1.2;
  color: var(--text-primary);
}
.page-products .pd-workflow-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-products .pd-cta {
  padding: 64px 0;
  position: relative;
  text-align: center;
}
.page-products .pd-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
  opacity: 0.8;
}
.page-products .pd-cta h2 {
  margin: 0 0 12px;
  font-family: var(--font-title);
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.1;
  color: var(--text-primary);
}
.page-products .pd-cta p {
  margin: 0 auto 28px;
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.page-products .pd-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (min-width: 992px) {
  .page-products .pd-hero {
    padding: 88px 0 80px;
  }
  .page-products .pd-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 64px;
    align-items: center;
  }
  .page-products .pd-hero-copy {
    margin-top: 0;
  }
  .page-products .pd-hero-stats {
    margin-top: 0;
    gap: 16px;
  }
  .page-products .pd-overview {
    padding: 88px 0;
  }
  .page-products .pd-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
  .page-products .pd-device-card {
    padding: 32px;
  }
  .page-products .pd-feature {
    padding: 88px 0;
  }
  .page-products .pd-feature-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
  }
  .page-products .pd-duo {
    padding: 88px 0;
  }
  .page-products .pd-duo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
  .page-products .pd-scale {
    padding: 88px 0;
  }
  .page-products .pd-scale-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
  }
  .page-products .pd-workflow {
    padding: 88px 0;
  }
  .page-products .pd-workflow-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
  .page-products .pd-workflow-list li {
    padding: 28px 24px;
  }
  .page-products .pd-cta {
    padding: 88px 0;
  }
}
