.page-products {
  --pp-cut: 22px;
  --pp-border-soft: rgba(245, 240, 232, 0.09);
  --pp-border-neon: rgba(155, 89, 182, 0.42);
  background:
    radial-gradient(circle at 10% 6%, rgba(155, 89, 182, 0.16), transparent 26%),
    radial-gradient(circle at 94% 10%, rgba(52, 152, 219, 0.12), transparent 30%),
    var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.page-products .pp-hero {
  position: relative;
  padding: calc(var(--header-height) + 32px) 0 64px;
}

.page-products .pp-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -5%;
  width: 55%;
  height: 100%;
  background: linear-gradient(155deg, rgba(155, 89, 182, 0.34), rgba(52, 152, 219, 0.10) 55%, transparent 75%);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
  pointer-events: none;
}

.page-products .pp-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
}

.page-products .pp-hero__copy {
  max-width: 640px;
}

.page-products .pp-hero .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--text-secondary);
}

.page-products .pp-hero .breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.page-products .pp-hero .breadcrumb a:hover {
  color: var(--accent-blue);
}

.page-products .pp-hero .breadcrumb__sep {
  color: rgba(127, 143, 166, 0.6);
}

.page-products .pp-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--neon-pink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0;
  background: transparent;
  border-left: 0;
  padding: 0;
}

.page-products .pp-hero__kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 0 8px var(--neon-pink);
}

.page-products .pp-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 9vw, 72px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 18px 0 20px;
  text-wrap: balance;
}

.page-products .pp-hero__lead {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: 34em;
}

.page-products .pp-hero__sub {
  margin: 22px 0 28px;
  padding-left: 18px;
  border-left: 3px solid var(--accent-purple);
  font-size: 15px;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.88);
}

.page-products .pp-stats {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 460px;
}

.page-products .pp-stats li {
  background: rgba(28, 16, 48, 0.5);
  border: 1px solid var(--pp-border-soft);
  padding: 12px 10px;
  text-align: center;
}

.page-products .pp-stats strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--neon-pink);
  line-height: 1.2;
}

.page-products .pp-stats span {
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.page-products .pp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-products .pp-hero__visual {
  margin: 0;
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
  position: relative;
}

.page-products .pp-phone {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #05060c;
  border: 2px solid rgba(255, 110, 199, 0.65);
  border-radius: 32px;
  padding: 10px 8px;
  box-shadow: 0 0 24px rgba(155, 89, 182, 0.38), 0 0 80px rgba(255, 110, 199, 0.16), inset 0 0 14px rgba(52, 152, 219, 0.2);
  transform: rotate(1.5deg);
}

.page-products .pp-phone__notch {
  display: block;
  width: 86px;
  height: 20px;
  margin: 0 auto;
  background: rgba(10, 11, 20, 0.95);
  border-radius: 999px;
  border: 1px solid rgba(245, 240, 232, 0.16);
}

.page-products .pp-phone__screen {
  display: block;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(245, 240, 232, 0.12);
  background: var(--bg-secondary);
}

.page-products .pp-phone__screen img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.page-products .pp-hero__caption {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
}

.page-products .pp-hero__caption::before {
  content: "◢ ";
  color: var(--accent-blue);
}

.page-products .pp-features {
  padding: 84px 0 48px;
  position: relative;
}

.page-products .pp-features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(28, 16, 48, 0.66) 58%, transparent);
  pointer-events: none;
}

.page-products .pp-section-head {
  position: relative;
  z-index: 1;
  margin: 0 0 40px;
  max-width: 680px;
}

.page-products .pp-section-head .section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  background: rgba(255, 110, 199, 0.1);
  border-left: 3px solid var(--neon-pink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--neon-pink);
}

.page-products .pp-section-head .section-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(26px, 5vw, 44px);
  line-height: 1.28;
  color: var(--text-primary);
  text-wrap: balance;
}

.page-products .pp-features__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.page-products .grid--3.pp-features__grid {
  grid-template-columns: 1fr;
}

.page-products .pp-feature {
  position: relative;
  background: linear-gradient(150deg, rgba(155, 89, 182, 0.18), rgba(10, 11, 20, 0.38) 62%);
  border: 1px solid rgba(155, 89, 182, 0.34);
  clip-path: polygon(0 0, calc(100% - var(--pp-cut)) 0, 100% var(--pp-cut), 100% 100%, 0 100%);
  padding: 30px 24px 26px;
}

.page-products .pp-feature__num {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1;
  color: rgba(155, 89, 182, 0.66);
}

.page-products .pp-feature h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.4;
  color: var(--text-primary);
}

.page-products .pp-feature p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.page-products .pp-platforms {
  padding: 64px 0 40px;
}

.page-products .pp-platforms__inner {
  display: grid;
  gap: 32px;
  align-items: start;
}

.page-products .pp-platforms__visual {
  margin: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--pp-border-neon);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.page-products .pp-platforms__visual img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

.page-products .pp-platforms__caption {
  margin: 0;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  background: rgba(10, 11, 20, 0.6);
  border-top: 1px solid var(--pp-border-soft);
}

.page-products .pp-platforms__tabs {
  background: linear-gradient(145deg, rgba(28, 16, 48, 0.85), rgba(10, 11, 20, 0.9));
  border: 1px solid var(--pp-border-neon);
  border-radius: var(--radius-lg);
  padding: 18px 18px 24px;
  box-shadow: var(--shadow-neon);
}

.page-products .pp-platforms .tabs__list {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.14);
  margin-bottom: 24px;
  overflow-x: auto;
}

.page-products .pp-platforms .tabs__trigger {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  padding: 12px 16px;
  font: 700 15px/1.4 var(--font-sans);
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.page-products .pp-platforms .tabs__trigger[aria-selected="true"] {
  color: var(--neon-pink);
  border-bottom-color: var(--neon-pink);
}

.page-products .pp-platforms .tab-panel {
  outline: none;
}

.page-products .pp-platforms__heading {
  margin: 6px 0 16px;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--accent-blue);
}

.page-products .pp-sysreq {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.page-products .pp-sysreq li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(245, 240, 232, 0.12);
  font-size: 15px;
  color: var(--text-primary);
}

.page-products .pp-sysreq li::before {
  content: "▹";
  order: -1;
  color: var(--accent-blue);
  font-weight: 700;
  transform: scale(1.4);
  align-self: center;
}

.page-products .pp-dl {
  position: relative;
  display: inline-block;
}

.page-products .pp-dl__btn {
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.page-products .pp-dl__btn:focus-visible {
  outline: 3px solid rgba(255, 110, 199, 0.65);
  outline-offset: 2px;
}

.page-products .pp-dl__qr {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  z-index: 40;
  width: 180px;
  padding: 14px 12px 12px;
  background: rgba(10, 11, 20, 0.97);
  border: 1px solid rgba(255, 110, 199, 0.6);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neon);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

.page-products .pp-dl__qr::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: rgba(255, 110, 199, 0.6);
}

.page-products .pp-dl:hover .pp-dl__qr,
.page-products .pp-dl:focus-within .pp-dl__qr,
.page-products .pp-dl__btn:focus + .pp-dl__qr,
.page-products .pp-dl__btn:focus-visible + .pp-dl__qr {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.page-products .pp-qr {
  display: block;
  width: 130px;
  height: 130px;
  margin: 0 auto;
}

.page-products .pp-dl__label {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

.page-products .pp-changelog {
  padding: 64px 0 40px;
}

.page-products .pp-changelog__layout {
  display: grid;
  gap: 32px;
}

.page-products .pp-changelog__timeline {
  position: relative;
  margin-left: 6px;
  padding-left: 28px;
  border-left: 2px solid rgba(155, 89, 182, 0.42);
}

.page-products .pp-changelog__item {
  position: relative;
  margin-bottom: 18px;
  padding: 18px 16px 8px;
  background: rgba(28, 16, 48, 0.45);
  border: 1px solid var(--pp-border-soft);
  border-radius: var(--radius-md);
}

.page-products .pp-changelog__item::before {
  content: "";
  position: absolute;
  top: 24px;
  left: -33px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--neon-pink);
  box-shadow: 0 0 12px rgba(255, 110, 199, 0.85);
}

.page-products .pp-changelog__item summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-primary);
}

.page-products .pp-changelog__item summary::-webkit-details-marker {
  display: none;
}

.page-products .pp-changelog__item p {
  margin: 12px 2px 10px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.page-products .pp-changelog__tag {
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-blue);
  border: 1px solid rgba(52, 152, 219, 0.45);
  padding: 3px 10px;
  border-radius: 999px;
}

.page-products .pp-changelog__arrow {
  margin-left: auto;
  font-size: 26px;
  line-height: 1;
  color: var(--accent-purple);
  transition: transform 0.25s ease;
}

.page-products .pp-changelog__item[open] .pp-changelog__arrow {
  transform: rotate(90deg);
}

.page-products .pp-changelog__item[open] summary {
  margin-bottom: 2px;
}

.page-products .pp-changelog__art {
  margin: 0;
  align-self: center;
  text-align: center;
}

.page-products .pp-changelog__art img {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--pp-border-neon);
  box-shadow: var(--shadow-neon);
}

.page-products .pp-guide {
  position: relative;
  padding: 64px 0 48px;
}

.page-products .pp-guide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155, 89, 182, 0.8), transparent);
}

.page-products .pp-guide__inner {
  display: grid;
  gap: 32px;
  align-items: center;
}

.page-products .pp-guide__steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-products .pp-guide__step {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(245, 240, 232, 0.12);
}

.page-products .pp-guide__step:last-child {
  border-bottom: 0;
}

.page-products .pp-guide__stepnum {
  flex: 0 0 auto;
  width: 42px;
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--neon-pink);
  text-shadow: 0 0 18px rgba(255, 110, 199, 0.35);
}

.page-products .pp-guide__step h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--text-primary);
}

.page-products .pp-guide__step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.page-products .pp-guide__hint {
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(52, 152, 219, 0.1);
  border-left: 3px solid var(--accent-blue);
  font-size: 14px;
  color: var(--accent-blue);
}

.page-products .pp-guide__art {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--pp-border-neon);
  background: var(--bg-secondary);
}

.page-products .pp-guide__art img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

.page-products .pp-faq {
  padding: 56px 0 56px;
}

.page-products .pp-faq__list {
  max-width: 760px;
}

.page-products .pp-faq__item {
  margin-bottom: 14px;
  background: rgba(10, 11, 20, 0.62);
  border: 1px solid var(--pp-border-soft);
  border-left: 3px solid var(--accent-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.page-products .pp-faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--text-primary);
}

.page-products .pp-faq__item summary::-webkit-details-marker {
  display: none;
}

.page-products .pp-faq__item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--neon-pink);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}

.page-products .pp-faq__item[open] summary::after {
  content: "−";
}

.page-products .pp-faq__item p {
  margin: 0;
  padding: 2px 20px 20px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-secondary);
}

.page-products .pp-cta {
  position: relative;
  padding: 76px 0;
  overflow: hidden;
  text-align: center;
}

.page-products .pp-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-products .pp-cta__inner {
  position: relative;
  z-index: 1;
}

.page-products .pp-cta .section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--neon-pink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  background: transparent;
  border-left: 0;
  padding: 0;
}

.page-products .pp-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 6vw, 56px);
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--text-primary);
}

.page-products .pp-cta__lead {
  max-width: 30em;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary);
}

.page-products .pp-cta__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

@media (min-width: 760px) {
  .page-products .pp-hero {
    padding-top: calc(var(--header-height) + 72px);
    padding-bottom: 88px;
  }

  .page-products .pp-hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 60px;
  }

  .page-products .pp-hero__title {
    font-size: clamp(48px, 5.6vw, 76px);
  }

  .page-products .pp-hero__visual {
    max-width: 420px;
    justify-self: end;
  }

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

  .page-products .pp-features {
    padding-top: 96px;
  }

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

  .page-products .pp-platforms {
    padding-top: 72px;
  }

  .page-products .pp-platforms__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .page-products .pp-changelog {
    padding-top: 72px;
  }

  .page-products .pp-changelog__layout {
    grid-template-columns: minmax(0, 1fr) 130px;
    align-items: center;
  }

  .page-products .pp-guide {
    padding-top: 72px;
  }

  .page-products .pp-guide__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .page-products .pp-cta {
    padding: 96px 0;
  }
}

@media (min-width: 1200px) {
  .page-products .pp-hero__inner {
    gap: 72px;
  }

  .page-products .pp-hero__visual {
    max-width: 460px;
  }

  .page-products .pp-platforms__inner {
    gap: 44px;
  }

  .page-products .pp-changelog__layout {
    grid-template-columns: minmax(0, 1fr) 160px;
  }
}
