.page-products {
  --page-max: 1240px;
  --clip-corner: 18px;
  --card-bg: linear-gradient(160deg, #12121C 20%, #1A1A28 100%);
  --hero-glow: 0 0 60px rgba(188, 19, 254, 0.22);
  color: var(--text-main);
}

.page-products .container {
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: 20px;
}

.page-products .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 28px;
  font-size: 13px;
  color: var(--text-dim);
}

.page-products .breadcrumb a {
  color: var(--neon-blue);
  text-decoration: none;
}

.page-products .breadcrumb a:hover {
  color: var(--neon-purple);
}

.page-products .breadcrumb .is-current {
  color: var(--text-main);
}

.page-products .hero-zone {
  padding-top: 8px;
}

.page-products .hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.page-products .hero-copy .badge {
  margin-bottom: 16px;
}

.page-products .hero-copy h1 {
  margin: 0 0 16px;
  font-family: var(--font-headline);
  font-size: clamp(28px, 5.5vw, 46px);
  line-height: 1.18;
  color: var(--text-bright);
  letter-spacing: 0.02em;
}

.page-products .hero-copy .lead {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-main);
  max-width: 620px;
}

.page-products .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.page-products .dl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-products .dl-btn.btn--primary {
  background: linear-gradient(135deg, #FF2A6D 0%, #BC13FE 100%);
  border: 0;
  color: var(--text-bright);
  box-shadow: 0 0 18px rgba(255, 42, 109, 0.35);
}

.page-products .dl-btn.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(255, 42, 109, 0.55);
}

.page-products .dl-btn.btn--ghost {
  background: transparent;
  border: 1px solid rgba(0, 229, 255, 0.5);
  color: var(--neon-blue);
}

.page-products .dl-btn.btn--ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.35);
}

.page-products .hero-note {
  margin: 0;
  font-size: 13px;
  color: var(--text-dim);
}

.page-products .hero-device {
  display: flex;
  justify-content: center;
}

.page-products .phone-shell {
  position: relative;
  width: min(100%, 320px);
  padding: 14px;
  border-radius: 44px;
  background: linear-gradient(145deg, #1A1A28, #12121C 70%);
  border: 1px solid rgba(188, 19, 254, 0.4);
  box-shadow: var(--hero-glow);
  transform: rotate(1.5deg);
}

.page-products .phone-shell::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 18px;
  border-radius: 999px;
  background: #0A0A10;
  z-index: 2;
  border: 1px solid rgba(188, 19, 254, 0.18);
}

.page-products .phone-screen {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.page-products .phone-badge {
  position: absolute;
  right: 10px;
  top: 54px;
  z-index: 3;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.14);
  border: 1px solid rgba(255, 215, 0, 0.45);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

.page-products .section-block {
  padding-block: 56px;
}

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

.page-products .section-head .section-kicker {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--neon-blue);
}

.page-products .section-head h2 {
  margin: 0 0 8px;
  font-family: var(--font-headline);
  font-size: clamp(24px, 3.6vw, 34px);
  color: var(--text-bright);
}

.page-products .section-head p {
  margin: 0;
  color: var(--text-dim);
  line-height: 1.7;
}

.page-products .feature-grid {
  display: grid;
  gap: 22px;
}

.page-products .feature-card {
  position: relative;
  padding: 26px 22px 34px;
  background: var(--card-bg);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--clip-corner)), calc(100% - var(--clip-corner)) 100%, 0 100%);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.page-products .feature-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
  opacity: 0.75;
}

.page-products .feature-card:nth-child(2n) {
  transform: translateY(8px);
}

.page-products .feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(0, 229, 255, 0.14), 0 0 44px rgba(188, 19, 254, 0.1);
}

.page-products .feature-card:nth-child(2n):hover {
  transform: translateY(2px);
}

.page-products .feature-card h3 {
  position: relative;
  margin: 0 0 12px;
  font-size: 19px;
  color: var(--text-bright);
}

.page-products .feature-card p {
  position: relative;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-main);
}

.page-products .feature-visuals {
  display: grid;
  gap: 20px;
  margin-top: 38px;
}

.page-products .feature-media {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(138, 138, 168, 0.2);
  min-height: 120px;
}

.page-products .feature-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  max-width: 100%;
}

.page-products .media-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(10, 10, 16, 0.9));
  color: var(--text-bright);
  font-size: 14px;
  font-weight: 600;
}

.page-products .download-zone {
  background: linear-gradient(180deg, transparent, rgba(188, 19, 254, 0.05) 30%, rgba(0, 229, 255, 0.04) 70%, transparent);
}

.page-products .download-layout {
  display: grid;
  gap: 26px;
}

.page-products .download-install {
  display: grid;
  gap: 18px;
}

.page-products .install-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid rgba(188, 19, 254, 0.22);
}

.page-products .install-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--text-bright);
}

.page-products .install-card p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-main);
}

.page-products .download-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 26px;
  border-radius: 28px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 215, 0, 0.24);
  text-align: center;
}

.page-products .download-qr img {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.page-products .download-qr p {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
}

.page-products .download-note {
  margin: 22px 0 0;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(0, 229, 255, 0.06);
  border-left: 3px solid var(--neon-blue);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-dim);
}

.page-products .version-zone {
  position: relative;
}

.page-products .timeline {
  position: relative;
  padding-left: 26px;
  border-left: 2px solid rgba(188, 19, 254, 0.3);
  margin-left: 8px;
}

.page-products .timeline-item {
  position: relative;
  padding-bottom: 30px;
}

.page-products .timeline-item:last-child {
  padding-bottom: 0;
}

.page-products .timeline-item::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neon-purple);
  box-shadow: 0 0 12px rgba(188, 19, 254, 0.8);
}

.page-products .timeline-item.is-current::before {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.85);
}

.page-products .timeline-mark {
  display: inline-block;
  margin-bottom: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.25);
  color: var(--neon-blue);
  font-size: 14px;
  font-weight: 700;
}

.page-products .timeline-item.is-current .timeline-mark {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.45);
  color: var(--gold);
}

.page-products .timeline-content h3 {
  margin: 0 0 6px;
  font-size: 17px;
  color: var(--text-bright);
}

.page-products .timeline-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-main);
}

.page-products .version-footnote {
  margin: 28px 0 0;
  font-size: 13px;
  color: var(--text-dim);
}

.page-products .require-grid {
  display: grid;
  gap: 18px;
}

.page-products .require-card {
  padding: 22px;
  border-radius: 22px;
  background: var(--bg-card);
  border: 1px solid rgba(138, 138, 168, 0.2);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-products .require-card:hover {
  border-color: rgba(188, 19, 254, 0.5);
  box-shadow: 0 0 22px rgba(188, 19, 254, 0.14);
}

.page-products .require-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(188, 19, 254, 0.22), rgba(0, 229, 255, 0.14));
  border: 1px solid rgba(188, 19, 254, 0.35);
  position: relative;
}

.page-products .require-icon--ios::before {
  content: "";
  width: 16px;
  height: 20px;
  border: 2px solid var(--neon-blue);
  border-radius: 5px;
  position: relative;
}

.page-products .require-icon--android::before {
  content: "";
  width: 20px;
  height: 18px;
  border: 2px solid var(--neon-green);
  border-radius: 50% 50% 6px 6px;
  position: relative;
}

.page-products .require-icon--web::before {
  content: "";
  width: 18px;
  height: 14px;
  border: 2px solid var(--neon-purple);
  border-radius: 50%;
  position: relative;
}

.page-products .require-icon--pad::before {
  content: "";
  width: 20px;
  height: 15px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  position: relative;
}

.page-products .require-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
  color: var(--text-bright);
}

.page-products .require-card p {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--neon-blue);
}

.page-products .require-card span {
  font-size: 12px;
  color: var(--text-dim);
}

.page-products .help-zone .help-card {
  padding: 28px;
  background: linear-gradient(145deg, rgba(18, 18, 28, 0.96), rgba(26, 26, 40, 0.9));
  border: 1px solid rgba(0, 229, 255, 0.24);
  border-radius: 28px;
}

.page-products .help-card h2 {
  margin: 0 0 12px;
  font-family: var(--font-headline);
  font-size: 22px;
  color: var(--text-bright);
}

.page-products .help-card p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-main);
  max-width: 720px;
}

.page-products .help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-products .help-links .btn {
  text-decoration: none;
}

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

@media (min-width: 768px) {
  .page-products .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }

  .page-products .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

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

  .page-products .feature-visuals .feature-media:first-child {
    grid-column: span 2;
  }

  .page-products .download-layout {
    grid-template-columns: 1fr 300px;
    align-items: stretch;
  }

  .page-products .require-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products .phone-shell {
    width: min(100%, 360px);
    transform: rotate(2deg);
  }
}

@media (min-width: 1024px) {
  .page-products .section-block {
    padding-block: 72px;
  }

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

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

  .page-products .feature-visuals .feature-media:first-child {
    grid-column: span 1;
  }

  .page-products .download-layout {
    grid-template-columns: 1fr 340px;
  }

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

  .page-products .help-card {
    padding: 40px;
  }
}
