.page-products {
  --pp-wrap-pad: 20px;
  --pp-radius-lg: 28px;
  --pp-radius-md: 18px;
  --pp-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
  --pp-glow-green: 0 12px 32px rgba(57, 255, 136, 0.22);
  --pp-glow-orange: 0 12px 28px rgba(255, 106, 0, 0.26);
  --pp-phone-bg: #0b1229;
  --pp-soft-grid: rgba(255, 255, 255, 0.07);

  position: relative;
  min-height: 100vh;
  color: var(--text-primary);
  font-family: var(--font-heading);
  background:
    radial-gradient(circle at 82% 8%, rgba(57, 255, 136, 0.12), transparent 34%),
    radial-gradient(circle at 12% 52%, rgba(0, 229, 255, 0.08), transparent 26%),
    linear-gradient(152deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.page-products__wrap {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-top-offset) + 84px) var(--pp-wrap-pad) 72px;
}

.page-products .pp-hero {
  position: relative;
  display: grid;
  align-items: center;
  gap: 52px 32px;
  margin-bottom: 80px;
}

.page-products .pp-hero::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 220px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-green));
  opacity: 0.55;
}

.page-products .pp-hero__kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 18px;
  border: 1px solid var(--border-green);
  border-radius: 999px;
  color: var(--accent-green);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: rgba(57, 255, 136, 0.06);
}

.page-products .pp-hero__copy h1 {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.page-products .pp-hero__title-sub {
  display: block;
  margin-top: 8px;
  color: var(--accent-green);
  font-family: var(--font-number);
  font-weight: 500;
}

.page-products .pp-hero__lead {
  margin: 0 0 28px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.85;
}

.page-products .pp-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.page-products .pp-download-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-sizing: border-box;
  min-width: 220px;
  padding: 15px 22px;
  border-radius: 999px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.page-products .pp-download-btn--primary {
  background: linear-gradient(135deg, var(--accent-green) 0%, #11d86b 100%);
  color: #081326;
  box-shadow: var(--pp-glow-green);
}

.page-products .pp-download-btn--ghost {
  background: transparent;
  border: 1px solid var(--border-green);
  color: var(--text-primary);
}

.page-products .pp-download-btn:hover,
.page-products .pp-download-btn:focus-within {
  transform: translateY(-3px);
}

.page-products .pp-download-btn--ghost:hover,
.page-products .pp-download-btn--ghost:focus-within {
  box-shadow: var(--pp-glow-green);
}

.page-products .pp-download-btn__icon {
  flex: 0 0 auto;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  font-family: var(--font-number);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.page-products .pp-download-btn__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-products .pp-download-btn__text strong {
  font-size: 16px;
  line-height: 1.3;
}

.page-products .pp-download-btn__text small {
  font-size: 12px;
  opacity: 0.78;
}

.page-products .pp-download-btn__hint {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 6;
  padding: 9px 15px;
  border: 1px solid var(--border-green);
  border-radius: 10px;
  background: var(--bg-card);
  box-shadow: var(--pp-shadow);
  color: var(--text-primary);
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  pointer-events: none;
}

.page-products .pp-download-btn:hover .pp-download-btn__hint,
.page-products .pp-download-btn:focus-within .pp-download-btn__hint {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.page-products .pp-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 28px;
}

.page-products .pp-hero__stat {
  box-sizing: border-box;
  padding: 16px 10px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: var(--bg-glass);
  text-align: center;
}

.page-products .pp-hero__stat dt {
  margin-bottom: 6px;
  color: var(--text-secondary);
  font-size: 12px;
}

.page-products .pp-hero__stat dd {
  margin: 0;
  color: var(--accent-green);
  font-family: var(--font-number);
  font-size: 24px;
  font-weight: 600;
}

.page-products .pp-hero__qr {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 420px;
  margin: 0;
}

.page-products .pp-hero__qr-img {
  width: 120px;
  height: 120px;
  box-sizing: border-box;
  padding: 8px;
  border: 1px solid var(--border-green);
  border-radius: 18px;
  background: #fff;
  object-fit: cover;
}

.page-products .pp-hero__qr figcaption {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.page-products .pp-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  background:
    radial-gradient(circle at center, rgba(57, 255, 136, 0.13), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  border-radius: var(--pp-radius-lg);
}

.page-products .pp-phone {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: 250px;
  height: 520px;
  padding: 16px 10px 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 36px;
  background: linear-gradient(165deg, #18203c 0%, #0b1229 100%);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.42);
}

.page-products .pp-phone__frame {
  position: relative;
  width: 100%;
  height: 100%;
}

.page-products .pp-phone__speaker {
  width: 60px;
  height: 6px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.page-products .pp-phone__screen {
  box-sizing: border-box;
  height: calc(100% - 22px);
  padding: 20px 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  background: #080d20;
}

.page-products .pp-phone__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--text-secondary);
  font-size: 11px;
}

.page-products .pp-phone__head span:last-child {
  color: var(--accent-green);
}

.page-products .pp-phone__widget {
  margin-bottom: 12px;
  padding: 14px 12px;
  border-radius: 14px;
  background: var(--soft-grid);
  background: rgba(255, 255, 255, 0.06);
}

.page-products .pp-phone__widget em {
  display: block;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 11px;
  font-style: normal;
}

.page-products .pp-phone__scoreline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.page-products .pp-phone__scoreline i {
  display: block;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--accent-green), rgba(57, 255, 136, 0.2));
}

.page-products .pp-phone__scoreline i:last-child {
  background: linear-gradient(90deg, var(--accent-data), rgba(0, 229, 255, 0.18));
}

.page-products .pp-phone__spark {
  display: block;
  height: 30px;
  border-radius: 8px;
  background: repeating-linear-gradient(90deg, var(--accent-green) 0 8px, rgba(57, 255, 136, 0.12) 8px 18px);
}

.page-products .pp-phone__spark--cyan {
  background: repeating-linear-gradient(90deg, var(--accent-data) 0 10px, rgba(0, 229, 255, 0.12) 10px 20px);
}

.page-products .pp-phone__ring {
  display: block;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border-radius: 50%;
  background: conic-gradient(var(--accent-green) 0 58%, rgba(255, 255, 255, 0.08) 58% 100%);
}

.page-products .pp-hero__version-num {
  position: absolute;
  top: 14%;
  right: 2%;
  z-index: 1;
  color: rgba(57, 255, 136, 0.16);
  font-family: var(--font-number);
  font-size: clamp(64px, 13vw, 108px);
  font-weight: 500;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(57, 255, 136, 0.45);
  pointer-events: none;
}

.page-products .pp-hero__version-label {
  position: absolute;
  right: 2%;
  bottom: 10%;
  z-index: 1;
  padding: 4px 12px;
  border: 1px solid var(--border-green);
  border-radius: 999px;
  color: var(--accent-green);
  background: rgba(10, 14, 39, 0.6);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.page-products .pp-features {
  margin-bottom: 84px;
}

.page-products .pp-section-head {
  margin-bottom: 30px;
}

.page-products .pp-section-head__en {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-green);
  font-family: var(--font-number);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.page-products .pp-section-head h2 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.3;
}

.page-products .pp-section-head__desc {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

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

.page-products .pp-feature-card {
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  padding: 24px 22px;
  border: 1px solid var(--border-soft);
  border-radius: var(--pp-radius-md);
  background: var(--bg-card);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.page-products .pp-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-green), var(--accent-data));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.page-products .pp-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-green);
  box-shadow: var(--pp-shadow);
}

.page-products .pp-feature-card:hover::before {
  opacity: 1;
}

.page-products .pp-feature-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

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

.page-products .pp-feature-card__data {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--accent-orange);
  font-family: var(--font-number);
  font-size: 28px;
  font-weight: 600;
}

.page-products .pp-feature-card__data span {
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 400;
}

.page-products .pp-features__screenshot {
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--pp-radius-lg);
  background: var(--bg-card);
}

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

.page-products .pp-features__screenshot figcaption {
  padding: 14px 20px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

.page-products .pp-timeline-section {
  position: relative;
  margin-bottom: 84px;
  padding: 56px 24px 32px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--pp-radius-lg);
  background: linear-gradient(160deg, rgba(10, 14, 39, 0.9), rgba(16, 42, 31, 0.88));
}

.page-products .pp-timeline-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.16;
}

.page-products .pp-timeline-section__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-products .pp-timeline-section .pp-section-head,
.page-products .pp-timeline-section .pp-timeline {
  position: relative;
  z-index: 1;
}

.page-products .pp-section-head--light .pp-section-head__desc {
  color: var(--text-secondary);
}

.page-products .pp-timeline {
  display: grid;
  max-width: 900px;
}

.page-products .pp-tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  padding-bottom: 20px;
}

.page-products .pp-tl-item::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 2px;
  left: 27px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-green), rgba(0, 229, 255, 0.2));
}

.page-products .pp-tl-item:last-child::before {
  display: none;
}

.page-products .pp-tl-item__side {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.page-products .pp-tl-item__ver {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--border-green);
  border-radius: 16px;
  background: var(--bg-card);
  color: var(--accent-green);
  font-family: var(--font-number);
  font-size: 18px;
  font-weight: 600;
}

.page-products .pp-tl-item--current .pp-tl-item__ver {
  background: var(--accent-green);
  color: #081326;
  box-shadow: var(--pp-glow-green);
}

.page-products .pp-tl-item__tag {
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--accent-orange);
  color: #081326;
  font-size: 11px;
  font-weight: 700;
}

.page-products .pp-tl-item__card {
  align-self: start;
  box-sizing: border-box;
  margin-bottom: 8px;
  padding: 4px 18px;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: var(--bg-card);
  transition: border-color var(--transition-fast);
}

.page-products .pp-tl-item--current .pp-tl-item__card {
  border-color: var(--border-green);
}

.page-products .pp-tl-item__card summary {
  position: relative;
  cursor: pointer;
  padding: 16px 32px 16px 0;
  list-style: none;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

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

.page-products .pp-tl-item__card summary::marker {
  content: "";
}

.page-products .pp-tl-item__card summary::after {
  content: "＋";
  position: absolute;
  top: 15px;
  right: 0;
  color: var(--accent-green);
  font-family: var(--font-number);
  font-size: 18px;
  transition: transform var(--transition-fast);
}

.page-products .pp-tl-item__card[open] summary::after {
  content: "－";
}

.page-products .pp-tl-item__card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 0 16px;
  list-style: none;
}

.page-products .pp-tl-item__card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.page-products .pp-tl-item__card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-orange);
}

.page-products .pp-compat {
  display: grid;
  gap: 28px;
  align-items: center;
  margin-bottom: 84px;
  padding: 28px;
  border: 1px solid var(--border-soft);
  border-radius: var(--pp-radius-lg);
  background: var(--bg-glass);
}

.page-products .pp-compat__desc {
  margin: 0 0 22px;
  color: var(--text-secondary);
  line-height: 1.8;
}

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

.page-products .pp-compat__list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-primary);
  font-size: 15px;
}

.page-products .pp-compat__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
}

.page-products .pp-compat__figure {
  margin: 0;
}

.page-products .pp-compat__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
}

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

.page-products .pp-feedback {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--border-soft);
  border-radius: var(--pp-radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 106, 0, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(16, 42, 31, 0.95), rgba(9, 17, 36, 0.95));
}

.page-products .pp-feedback__card {
  display: flex;
  flex-direction: column;
}

.page-products .pp-feedback__desc {
  margin: 0 0 22px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.page-products .pp-feedback__desc a {
  color: var(--accent-green);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.page-products .pp-feedback__desc a:hover {
  border-bottom-color: var(--accent-green);
}

.page-products .pp-feedback__btn {
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 15px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-orange), #ff8b2b);
  color: #081326;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--pp-glow-orange);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.page-products .pp-feedback__btn:hover,
.page-products .pp-feedback__btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 106, 0, 0.34);
}

.page-products .pp-feedback__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.page-products .pp-feedback__contact a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.page-products .pp-feedback__contact a:hover {
  color: var(--accent-green);
}

.page-products .pp-feedback__figure {
  margin: 0;
}

.page-products .pp-feedback__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
}

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

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

@media (min-width: 960px) {
  .page-products__wrap {
    padding: 120px 32px 96px;
  }

  .page-products .pp-hero {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .page-products .pp-hero__copy h1 {
    font-size: 44px;
  }

  .page-products .pp-hero__lead {
    font-size: 17px;
  }

  .page-products .pp-hero__stats {
    gap: 16px;
  }

  .page-products .pp-hero__stat dd {
    font-size: 30px;
  }

  .page-products .pp-hero__qr-img {
    width: 140px;
    height: 140px;
  }

  .page-products .pp-hero__visual {
    min-height: 560px;
  }

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

  .page-products .pp-feature-card {
    padding: 26px 22px;
  }

  .page-products .pp-timeline-section {
    padding: 64px 40px 40px;
  }

  .page-products .pp-tl-item {
    grid-template-columns: 120px 1fr;
    gap: 28px;
  }

  .page-products .pp-tl-item::before {
    left: 43px;
  }

  .page-products .pp-tl-item__ver {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    font-size: 30px;
  }

  .page-products .pp-compat {
    grid-template-columns: 1fr 0.85fr;
    padding: 40px;
  }

  .page-products .pp-feedback {
    grid-template-columns: 1fr 0.9fr;
    padding: 44px;
  }
}

.page-products {
  --soft-grid: transparent;
}
