.page-products {
  position: relative;
  background: var(--bg-deep);
  color: var(--ink);
  overflow-x: hidden;
}

.page-products .pg-bg-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

.page-products .container,
.page-products .pg-features-section,
.page-products .pg-changelog-section,
.page-products .pg-help-section {
  position: relative;
  z-index: 1;
}

.page-products img {
  max-width: 100%;
  height: auto;
}

.page-products .pg-breadcrumb-wrap {
  padding: 28px 20px 0;
}

.page-products .pg-download-wrap {
  padding: 40px 20px 60px;
}

.page-products .pg-download-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.page-products .pg-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.page-products .pg-download-copy h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

.page-products .pg-download-lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 60ch;
  margin-bottom: 20px;
}

.page-products .pg-download-points {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-products .pg-download-points li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}

.page-products .pg-download-points li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
}

.page-products .pg-download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.page-products .pg-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green) 0%, #2bd10f 100%);
  color: #0A0E17;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 16px 30px;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(57, 255, 20, 0.22);
  transform: skew(-3deg);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.page-products .pg-download-btn:hover {
  background: var(--green);
  transform: skew(-3deg) scale(1.05);
  box-shadow: 0 14px 36px rgba(57, 255, 20, 0.35);
}

.page-products .pg-download-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.page-products .pg-brand-tag {
  color: var(--gold);
  font-weight: 700;
}

.page-products .pg-phone-figure {
  margin: 0;
  position: relative;
  max-width: 480px;
}

.page-products .pg-phone-img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-line);
  background: var(--bg-panel);
}

.page-products .pg-phone-figure figcaption {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.08em;
}

.page-products .pg-features-section {
  background: var(--bg-panel);
  border-top: 1px solid var(--border-line);
  border-bottom: 1px solid var(--border-line);
  padding: 56px 0;
}

.page-products .pg-features-section::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--blue) 100%);
  opacity: 0.8;
}

.page-products .pg-section-head {
  margin-bottom: 36px;
}

.page-products .pg-section-head h2,
.page-products .pg-changelog-intro h2,
.page-products .pg-help-copy h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 4.5vw, 36px);
  line-height: 1.15;
  margin: 0 0 12px;
}

.page-products .pg-section-lead,
.page-products .pg-changelog-intro p,
.page-products .pg-help-lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 70ch;
}

.page-products .pg-features-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.page-products .pg-features-img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-line);
}

.page-products .pg-features-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.page-products .pg-feature-card {
  background: var(--bg-deep);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.page-products .pg-feature-card:hover {
  border-color: rgba(0, 229, 255, 0.5);
  background: rgba(18, 26, 39, 0.9);
  transform: translateY(-2px);
}

.page-products .pg-feature-card a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-products .pg-feature-card a:hover {
  color: var(--green);
}

.page-products .pg-feature-icon {
  width: 44px;
  height: 44px;
  color: var(--blue);
  margin-bottom: 12px;
}

.page-products .pg-feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}

.page-products .pg-feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.page-products .pg-changelog-section {
  padding: 60px 0;
}

.page-products .pg-changelog-section::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--gold) 100%);
  opacity: 0.6;
}

.page-products .pg-changelog-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.page-products .pg-changelog-img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-line);
}

.page-products .pg-changelog-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-products .pg-changelog-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.page-products .pg-changelog-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--green);
  background: rgba(57, 255, 20, 0.06);
  border: 1px solid rgba(57, 255, 20, 0.28);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  white-space: nowrap;
}

.page-products .pg-changelog-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-products .pg-changelog-card:hover {
  border-color: rgba(57, 255, 20, 0.4);
  transform: translateX(2px);
}

.page-products .pg-changelog-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
}

.page-products .pg-changelog-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.page-products .pg-help-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-panel) 100%);
  border-top: 1px solid var(--border-line);
  padding: 56px 0;
}

.page-products .pg-help-section::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--green) 100%);
  opacity: 0.6;
}

.page-products .pg-help-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.page-products .pg-help-img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-line);
}

.page-products .pg-help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.page-products .pg-help-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.page-products .pg-help-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.page-products .pg-help-link:hover::after {
  transform: translateX(4px);
}

@media (min-width: 640px) {
  .page-products .pg-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .page-products .pg-download-wrap {
    padding: 56px 24px 72px;
  }

  .page-products .pg-download-grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 52px;
  }

  .page-products .pg-phone-figure {
    margin-left: auto;
  }

  .page-products .pg-features-layout {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 36px;
    align-items: center;
  }

  .page-products .pg-features-layout .pg-features-img {
    order: -1;
  }

  .page-products .pg-changelog-head {
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: 48px;
    align-items: center;
  }

  .page-products .pg-changelog-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .page-products .pg-changelog-item {
    border: 1px solid var(--border-line);
    border-radius: var(--radius-md);
    background: var(--bg-panel);
    padding: 16px;
  }

  .page-products .pg-changelog-card {
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
  }

  .page-products .pg-changelog-card:hover {
    transform: none;
  }

  .page-products .pg-help-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
  }
}
