.page-products {
  --product-panel-bg: rgba(18, 18, 35, .82);
  --product-border-glow: 1px solid rgba(123, 47, 255, .22);
  --product-cyan-glow: 0 0 24px rgba(0, 229, 255, .18);
  position: relative;
  overflow-x: hidden;
}
.page-products .product-hero {
  padding: clamp(28px, 6vw, 64px) 0 clamp(20px, 4vw, 36px);
  position: relative;
}
.page-products .product-hero::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(123, 47, 255, .28), transparent 68%);
  pointer-events: none;
}
.page-products .products-breadcrumb {
  margin-bottom: 28px;
}
.page-products .product-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.page-products .product-kicker .pixel-badge {
  background: rgba(0, 229, 255, .12);
  border: 1px solid rgba(0, 229, 255, .35);
  color: var(--accent-cyan);
}
.page-products .product-version {
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--text-muted);
}
.page-products .product-title {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: clamp(3rem, 12vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.02em;
  color: var(--text-title);
}
.page-products .product-desc {
  max-width: 560px;
  margin-top: 18px;
  font-size: 16px;
  color: var(--text-body);
}
.page-products .skill-tree {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 520px;
  margin-top: 34px;
}
.page-products .skill-node {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--product-panel-bg);
  border: var(--product-border-glow);
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.4;
  transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out), transform .3s var(--ease-out);
}
.page-products .skill-node:hover {
  border-color: rgba(0, 229, 255, .5);
  box-shadow: var(--product-cyan-glow);
  transform: translateY(-2px);
}
.page-products .skill-node-icon {
  color: var(--accent-cyan);
  font-size: 16px;
  flex-shrink: 0;
}
.page-products .download-core {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(340px, 88%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  border-radius: 999px;
  padding: 18px 30px;
  background: var(--gradient-neon);
  box-shadow: 0 0 48px rgba(123, 47, 255, .48), inset 0 -4px 14px rgba(0, 0, 0, .22);
  color: #fff;
  position: relative;
  z-index: 1;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.page-products .download-core::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 2px solid rgba(0, 229, 255, .4);
  animation: pg-products-pulse 2.6s var(--ease-out) infinite;
  z-index: -1;
}
@keyframes pg-products-pulse {
  0% { transform: scale(.97); opacity: .75; }
  70% { transform: scale(1.14); opacity: 0; }
  100% { transform: scale(1.14); opacity: 0; }
}
.page-products .download-core:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 90px rgba(123, 47, 255, .75), inset 0 -4px 14px rgba(0, 0, 0, .18);
}
.page-products .download-core-icon {
  font-size: 24px;
  line-height: 1;
}
.page-products .download-core-text {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: .04em;
}
.page-products .download-core-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, .8);
  letter-spacing: .02em;
}
.page-products .hero-trust {
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.page-products .hero-visual {
  position: relative;
  margin-top: 28px;
}
.page-products .hero-main-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(168, 85, 247, .3);
  box-shadow: var(--shadow-glow);
}
.page-products .hero-visual-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(10, 10, 16, .72);
  border: 1px solid rgba(0, 229, 255, .25);
  color: var(--accent-cyan);
  font-size: 12px;
  letter-spacing: .04em;
  backdrop-filter: blur(6px);
}
.page-products .hero-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  margin-top: 28px;
  font-size: 13px;
}
.page-products .hero-foot a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .3s var(--ease-out), border-color .3s var(--ease-out);
}
.page-products .hero-foot a:hover {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
}
.page-products .hero-foot-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary-violet);
  opacity: .55;
}
.page-products .feature-section {
  padding: 44px 0 12px;
}
.page-products .section-head {
  margin-bottom: 34px;
}
.page-products .feature-grid {
  display: grid;
  gap: 18px;
}
.page-products .feature-card {
  background: var(--product-panel-bg);
  border: var(--product-border-glow);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  overflow: hidden;
  position: relative;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.page-products .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}
.page-products .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(123, 47, 255, .28), rgba(0, 229, 255, .12));
  color: var(--accent-cyan);
  font-size: 20px;
  margin-bottom: 14px;
}
.page-products .feature-title {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-title);
  margin-bottom: 8px;
}
.page-products .feature-desc {
  font-size: 15px;
  color: var(--text-body);
}
.page-products .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.page-products .feature-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin-top: 18px;
  display: block;
  border: 1px solid rgba(255, 255, 255, .06);
}
.page-products .compare-section {
  padding: 52px 0 12px;
}
.page-products .compare-slider {
  margin-top: 34px;
}
.page-products .compare-window {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(123, 47, 255, .32);
  overflow: hidden;
  background: #0b0b14;
  box-shadow: var(--shadow-glow);
}
.page-products .compare-img--base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-products .compare-top {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  min-width: 18%;
  max-width: 82%;
  resize: horizontal;
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid rgba(0, 229, 255, .85);
  box-shadow: 14px 0 40px rgba(0, 0, 0, .35);
}
.page-products .compare-top::after {
  content: "⇔";
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-neon);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .45);
  pointer-events: none;
}
.page-products .compare-top::-webkit-resizer {
  background: var(--gradient-neon);
  border-radius: 4px;
  width: 10px;
  height: 10px;
}
.page-products .fake-ui--old {
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(20, 18, 28, .94), rgba(12, 12, 20, .96));
}
.page-products .fake-nav {
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .09);
}
.page-products .fake-grid {
  display: flex;
  gap: 10px;
}
.page-products .fake-grid span {
  flex: 1;
  height: 100px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .07);
}
.page-products .fake-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-products .fake-row {
  height: 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .05);
}
.page-products .compare-tag {
  position: absolute;
  top: 14px;
  z-index: 4;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .02em;
  font-weight: 700;
}
.page-products .compare-tag--old {
  left: 14px;
  background: rgba(10, 10, 16, .78);
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--text-muted);
}
.page-products .compare-tag--new {
  right: 14px;
  background: rgba(123, 47, 255, .85);
  border: 1px solid rgba(0, 229, 255, .4);
  color: #fff;
}
.page-products .compare-facts {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}
.page-products .compare-fact {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: var(--product-panel-bg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(123, 47, 255, .16);
}
.page-products .compare-fact .meta-label {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}
.page-products .compare-fact .meta-value {
  font-size: 14px;
  color: var(--text-body);
  text-align: right;
}
.page-products .compare-more {
  margin-top: 22px;
  text-align: center;
  font-size: 14px;
}
.page-products .compare-more a {
  color: var(--accent-cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 255, .4);
  padding-bottom: 2px;
  transition: border-color .3s, color .3s;
}
.page-products .compare-more a:hover {
  color: var(--primary-bright);
  border-color: var(--primary-bright);
}
.page-products .immersive-band {
  position: relative;
  margin: 48px auto 0;
  max-width: 1200px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}
.page-products .immersive-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-products .immersive-content {
  position: relative;
  width: 100%;
  padding: 36px 26px;
  background: linear-gradient(200deg, rgba(10, 10, 16, .02) 0%, rgba(10, 10, 16, .72) 48%, rgba(10, 10, 16, .94) 100%);
  box-sizing: border-box;
}
.page-products .immersive-kicker {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 6px;
}
.page-products .immersive-title {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--text-title);
  line-height: 1.1;
}
.page-products .immersive-content p {
  margin-top: 10px;
  max-width: 640px;
  color: var(--text-body);
  font-size: 15px;
}
.page-products .immersive-content .btn {
  margin-top: 18px;
}
.page-products .req-section {
  padding: 52px 0 12px;
}
.page-products .req-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
.page-products .req-panel {
  background: var(--product-panel-bg);
  border: var(--product-border-glow);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
}
.page-products .req-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--gradient-neon);
  opacity: .5;
  border-radius: 2px;
}
.page-products .req-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.page-products .req-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient-neon);
  box-shadow: 0 0 12px rgba(123, 47, 255, .7);
}
.page-products .req-title {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-title);
}
.page-products .req-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.page-products .req-table th,
.page-products .req-table td {
  padding: 10px 6px;
  border-bottom: 1px solid rgba(123, 47, 255, .12);
  text-align: left;
  vertical-align: top;
}
.page-products .req-table th {
  width: 38%;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 13px;
}
.page-products .req-table td {
  color: var(--text-body);
}
.page-products .req-table tr:last-child th,
.page-products .req-table tr:last-child td {
  border-bottom: 0;
}
.page-products .req-note {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.page-products .req-note a {
  color: var(--accent-cyan);
}
.page-products .changelog-section {
  padding: 52px 0 24px;
}
.page-products .timeline {
  margin-top: 32px;
  position: relative;
  padding-left: 22px;
}
.page-products .timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-violet), var(--accent-cyan));
  opacity: .38;
  border-radius: 2px;
}
.page-products .timeline-item {
  position: relative;
  margin-bottom: 30px;
}
.page-products .timeline-item::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gradient-neon);
  box-shadow: 0 0 14px rgba(123, 47, 255, .75);
}
.page-products .timeline-marker {
  margin-bottom: 10px;
}
.page-products .version-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(123, 47, 255, .22);
  border: 1px solid rgba(168, 85, 247, .35);
  color: var(--primary-bright);
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}
.page-products .timeline-title {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-title);
  margin-bottom: 8px;
}
.page-products .timeline-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 6px;
}
.page-products .timeline-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.7;
}
.page-products .timeline-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-cyan);
  opacity: .75;
}
.page-products .timeline-detail {
  margin-top: 6px;
}
.page-products .timeline-detail summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, .06);
  border: 1px solid rgba(0, 229, 255, .22);
  transition: background .3s var(--ease-out), color .3s var(--ease-out);
}
.page-products .timeline-detail summary::-webkit-details-marker {
  display: none;
}
.page-products .timeline-detail summary::before {
  content: "+";
  font-size: 16px;
  transition: transform .3s var(--ease-out);
}
.page-products .timeline-detail[open] summary::before {
  transform: rotate(45deg);
}
.page-products .timeline-detail-content {
  margin-top: 18px;
}
.page-products .changelog-foot {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.page-products .changelog-foot a {
  color: var(--accent-cyan);
}
.page-products .download-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(5, 5, 10, .78);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease-out), visibility 0s linear .3s;
}
.page-products .download-modal:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s var(--ease-out), visibility 0s;
}
.page-products .download-modal-inner {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--bg-elevated);
  border: 1px solid rgba(123, 47, 255, .4);
  border-radius: var(--radius-xl);
  padding: 30px 26px;
  box-shadow: var(--shadow-glow);
  transform: translateY(14px);
  transition: transform .3s var(--ease-out);
  box-sizing: border-box;
}
.page-products .download-modal:target .download-modal-inner {
  transform: translateY(0);
}
.page-products .download-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: background .3s, color .3s;
}
.page-products .download-modal-close:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}
.page-products .download-modal-kicker {
  margin-bottom: 6px;
}
.page-products .download-modal-title {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-title);
}
.page-products .download-modal-text {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-body);
}
.page-products .download-modal-text a {
  color: var(--accent-cyan);
}
.page-products .download-modal-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: grid;
  gap: 10px;
}
.page-products .download-modal-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
}
.page-products .download-modal-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 229, 255, .14);
  color: var(--accent-cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}
.page-products .download-modal-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  background: rgba(123, 47, 255, .08);
  border-radius: 12px;
  padding: 12px 14px;
  box-sizing: border-box;
}
.page-products .download-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
@media (min-width: 720px) {
  .page-products .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-products .feature-card--visual {
    grid-column: 1 / -1;
  }
  .page-products .compare-facts {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-products .compare-fact {
    flex-direction: column;
    gap: 6px;
  }
  .page-products .compare-fact .meta-value {
    text-align: left;
  }
  .page-products .req-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .page-products .hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    gap: 48px;
    align-items: center;
  }
  .page-products .hero-visual {
    order: 2;
    margin-top: 0;
  }
  .page-products .skill-tree {
    display: block;
    height: 300px;
    max-width: none;
    margin-top: 20px;
  }
  .page-products .skill-node {
    position: absolute;
    white-space: nowrap;
  }
  .page-products .skill-node:nth-child(1) {
    top: 2%;
    left: 4%;
  }
  .page-products .skill-node:nth-child(2) {
    top: 2%;
    right: 4%;
  }
  .page-products .skill-node:nth-child(3) {
    bottom: 2%;
    left: 8%;
  }
  .page-products .skill-node:nth-child(4) {
    bottom: 2%;
    right: 8%;
  }
  .page-products .download-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    border-radius: 999px;
    padding: 24px 30px;
  }
  .page-products .download-core:hover {
    transform: translate(-50%, -50%) scale(1.03) translateY(-2px);
  }
  .page-products .feature-card--visual {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 32px;
    align-items: center;
    padding: 34px 36px;
  }
  .page-products .feature-card--visual .feature-card-copy {
    order: 1;
  }
  .page-products .feature-card--visual .feature-img {
    order: 2;
    margin-top: 0;
  }
  .page-products .feature-card--perf {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
  }
  .page-products .feature-card--perf .feature-card-copy {
    order: 2;
  }
  .page-products .feature-card--perf .feature-img {
    order: 1;
    margin-top: 0;
  }
}
