.page-products {
  --platform-blue: #00E5FF;
  --platform-green: #C8FF00;
  --platform-orange: #FF6B00;
  --platform-cyan: #7CE7F2;
  position: relative;
  overflow-x: clip;
  background: var(--bg-dark);
  color: var(--text-mid);
  font-family: var(--font-body);
}

.page-products__breadcrumb-wrap {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.page-products__hero {
  position: relative;
  padding: 48px 0 56px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 82% 16%, rgba(0, 229, 255, 0.18), transparent 46%),
    linear-gradient(135deg, rgba(200, 255, 0, 0.04), transparent 42%);
  background-size: 32px 32px, 32px 32px, auto, auto;
}

.page-products__hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.14), transparent 66%);
  pointer-events: none;
}

.page-products__hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
}

.page-products__hero-copy {
  max-width: 600px;
}

.page-products__hero-lead {
  margin: 10px 0 16px;
  color: var(--text-high);
  font-family: var(--font-head);
  font-size: clamp(1.55rem, 3.2vw, 2.2rem);
  font-weight: 900;
  line-height: 1.3;
}

.page-products__hero-desc {
  margin: 0;
  max-width: 52ch;
  line-height: 1.75;
}

.page-products__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.page-products__hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.page-products__hero-points li {
  color: var(--text-low);
  font-family: var(--font-mono);
  font-size: 12px;
}

.page-products__hero-points li::before {
  content: '●';
  color: var(--platform-green);
  margin-right: 8px;
  font-size: 8px;
  vertical-align: middle;
}

.page-products__hero-figure {
  position: relative;
  margin: 0;
  align-self: center;
}

.page-products__hero-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 229, 255, 0.32);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.page-products__hero-float {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--platform-green);
  color: #101014;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(200, 255, 0, 0.35);
}

.page-products__hero-float::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #101014;
}

.page-products__hero-path {
  grid-column: 1 / -1;
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}

.page-products__hero-path .route-path {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 12px;
  margin: 0;
}

.page-products__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--platform-blue);
  color: #0D0D0F;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.page-products__platforms,
.page-products__sync,
.page-products__cta {
  padding: 56px 0;
}

.page-products__compare,
.page-products__changelog {
  padding: 56px 0;
  background: #0A0A0D;
}

.page-products__section-heading {
  margin: 0;
}

.page-products__section-heading p {
  max-width: 58ch;
  margin: 12px 0 0;
  line-height: 1.65;
}

.page-products__platform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

.page-products__platform-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-products__platform-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
}

.page-products__platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.page-products__platform-card--ios::before {
  background: var(--platform-blue);
}

.page-products__platform-card--android::before {
  background: var(--platform-green);
}

.page-products__platform-card--windows::before {
  background: var(--platform-orange);
}

.page-products__platform-card--macos::before {
  background: var(--platform-cyan);
}

.page-products__platform-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: rgba(255, 255, 255, 0.1);
}

.page-products__platform-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  margin: 0 0 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #0D0D0F;
  overflow: hidden;
}

.page-products__platform-icon--appicon img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 18px;
}

.page-products__platform-icon--wide img {
  width: 100%;
  height: auto;
  aspect-ratio: 400 / 250;
  object-fit: cover;
}

.page-products__platform-card h3 {
  margin: 0 0 6px;
  color: var(--text-high);
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
}

.page-products__platform-desc {
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.page-products__platform-meta {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.page-products__platform-meta li {
  display: flex;
  gap: 8px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.page-products__platform-meta li span {
  min-width: 4.6em;
  color: var(--text-low);
  font-size: 0.88em;
}

.page-products__platform-qr {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  min-height: 92px;
}

.page-products__platform-qr .btn {
  pointer-events: none;
}

.page-products__platform-qrbox {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background-color: #0D0D0F;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.65) 1.5px, transparent 2px);
  background-size: 10px 10px;
  overflow: hidden;
}

.page-products__platform-qrbox::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 7px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 4px solid #fff;
}

@media (hover: hover) {
  .page-products__platform-qrbox {
    display: none;
  }

  .page-products__platform-card:hover .page-products__platform-qrbox,
  .page-products__platform-qr:hover .page-products__platform-qrbox {
    display: block;
  }
}

.page-products__compare-table-wrap {
  margin-top: 32px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
}

.page-products__compare-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}

.page-products__compare-table th,
.page-products__compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.page-products__compare-table thead th {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-high);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 900;
}

.page-products__compare-table tbody tr:last-child > th,
.page-products__compare-table tbody tr:last-child > td {
  border-bottom: 0;
}

.page-products__compare-table tbody th {
  min-width: 240px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-mid);
}

.page-products__camp-colweb,
.page-products__camp-colapp {
  width: 130px;
  text-align: center;
  font-size: 0.9rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.page-products__compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.025);
}

.page-products__compare-table .page-products__camp-colweb:hover {
  background: rgba(0, 229, 255, 0.12);
  color: var(--text-high);
}

.page-products__compare-table .page-products__camp-colapp:hover {
  background: rgba(200, 255, 0, 0.12);
  color: var(--text-high);
}

.page-products__cmp-yes {
  font-weight: 700;
}

.page-products__camp-colweb .page-products__cmp-yes {
  color: var(--primary-blue);
}

.page-products__camp-colapp .page-products__cmp-yes {
  color: var(--accent-green);
}

.page-products__cmp-no {
  color: var(--text-low);
}

.page-products__compare-note {
  margin: 14px 2px 0;
  font-size: 0.85rem;
  color: var(--text-low);
}

.page-products__sync-inner {
  max-width: 920px;
}

.page-products__sync-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.page-products__sync-item {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-panel);
}

.page-products__sync-item h3 {
  margin: 0 0 8px;
  color: var(--text-high);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 900;
}

.page-products__sync-item p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.65;
}

.page-products__sync-note {
  margin-top: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(200, 255, 0, 0.22);
  border-radius: var(--radius-md);
  background: rgba(200, 255, 0, 0.05);
  font-size: 0.93rem;
  color: var(--text-mid);
}

.page-products__sync-note p {
  margin: 0;
}

.page-products__changelog-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid var(--border);
  margin-left: 10px;
}

.page-products__changelog-item {
  position: relative;
  padding: 0 0 32px 28px;
}

.page-products__changelog-item::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -7px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 3px solid var(--bg-dark);
  background: var(--primary-blue);
}

.page-products__changelog-item:nth-child(2)::before {
  background: var(--accent-green);
}

.page-products__changelog-item:nth-child(3)::before {
  background: var(--accent-orange);
}

.page-products__changelog-item h3 {
  margin: 8px 0 6px;
  color: var(--text-high);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 900;
}

.page-products__changelog-item p {
  margin: 0;
  max-width: 60ch;
  font-size: 0.94rem;
  line-height: 1.65;
}

.page-products__changelog-item .tag {
  margin-bottom: 2px;
}

.page-products__cta {
  padding: 56px 0 80px;
}

.page-products__cta-inner {
  padding: 44px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.16), rgba(200, 255, 0, 0.06));
  text-align: center;
}

.page-products__cta-inner h2 {
  margin: 0 0 10px;
  color: var(--text-high);
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
}

.page-products__cta-inner p {
  max-width: 50ch;
  margin: 0 auto 24px;
  font-size: 0.95rem;
}

.page-products__cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (min-width: 720px) {
  .page-products__platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products__sync-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-products__hero-path .route-path {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
  }
}

@media (min-width: 920px) {
  .page-products__hero {
    padding: 80px 0 72px;
  }

  .page-products__hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
  }

  .page-products__platforms,
  .page-products__compare,
  .page-products__sync,
  .page-products__changelog,
  .page-products__cta {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .page-products__platform-grid {
    gap: 26px;
    margin-top: 44px;
  }

  .page-products__platform-card {
    padding: 34px;
  }

  .page-products__compare-table-wrap {
    margin-top: 44px;
  }

  .page-products__sync-list {
    margin-top: 44px;
  }

  .page-products__cta {
    padding-bottom: 96px;
  }
}
