.page-products {
  --pd-purple: #8a2be2;
  --pd-blue: #00d4ff;
  --pd-green: #39ff14;
  --pd-bg: #0f0f16;
  --pd-text: #a0a0b0;
  --pd-white: #f5f5fa;
  --pd-glass: rgba(255,255,255,.08);
  --pd-grad: linear-gradient(135deg,#8a2be2 0%,#00d4ff 100%);
  position: relative;
  overflow-x: hidden;
  background: var(--pd-bg);
  color: var(--pd-text);
}

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

.breadcrumb.pd-breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--pd-text);
}

.pd-breadcrumb .breadcrumb-link {
  color: var(--pd-blue);
  text-decoration: none;
  transition: color .2s ease;
}

.pd-breadcrumb .breadcrumb-link:hover {
  color: var(--pd-green);
}

.pd-breadcrumb .breadcrumb-sep {
  color: rgba(160,160,176,.5);
}

.pd-breadcrumb .breadcrumb-current {
  color: var(--pd-white);
  font-weight: 600;
}

.pd-hero {
  position: relative;
  background: linear-gradient(160deg, #141420 0%, #0f0f16 55%, #1a1030 100%);
  border-bottom: 1px solid rgba(138,43,226,.35);
  padding: 64px 0 80px;
  overflow: hidden;
}

.pd-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 30%, #000 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 30%, #000 20%, transparent 72%);
  pointer-events: none;
}

.pd-hero-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    rgba(57,255,20,.018) 3px,
    rgba(57,255,20,.018) 4px
  );
  pointer-events: none;
  animation: pdScanMove 8s linear infinite;
}

@keyframes pdScanMove {
  0% { background-position: 0 0; }
  100% { background-position: 0 44px; }
}

.pd-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.pd-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--pd-green);
  background: rgba(57,255,20,.09);
  border: 1px solid rgba(57,255,20,.3);
  padding: 6px 14px;
  margin-bottom: 28px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.pd-hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--pd-green);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(57,255,20,.8);
}

.pd-hero h1 {
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 18px;
  color: var(--pd-white);
  font-weight: 900;
  letter-spacing: .02em;
  max-width: 780px;
}

.pd-hero-lead {
  font-size: 15px;
  line-height: 1.75;
  color: var(--pd-text);
  max-width: 720px;
  margin: 0 0 36px;
}

.pd-hero-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.pd-version-capsule {
  display: flex;
  align-items: baseline;
  gap: 12px;
  background: var(--pd-glass);
  border: 1px solid rgba(0,212,255,.25);
  padding: 12px 20px;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.pd-version-label {
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--pd-text);
  text-transform: uppercase;
}

.pd-version-num {
  font-size: 24px;
  font-weight: 900;
  color: var(--pd-green);
  letter-spacing: .04em;
  text-shadow: 0 0 18px rgba(57,255,20,.55);
}

.pd-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pd-hero-actions .btn {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .28s ease;
}

.pd-btn-solid {
  background: var(--pd-grad);
  border: 1px solid transparent;
  color: var(--pd-white);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.pd-btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(138,43,226,.4);
}

.pd-btn-line {
  color: var(--pd-white);
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.04);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.pd-btn-line:hover {
  border-color: var(--pd-blue);
  color: var(--pd-blue);
  transform: translateY(-2px);
}

.pd-hero-corner-note {
  position: absolute;
  right: -20px;
  bottom: 24px;
  font-size: 64px;
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.04em;
  color: rgba(255,255,255,.035);
  text-align: right;
  pointer-events: none;
  user-select: none;
  white-space: pre;
}

.pd-access,
.pd-sync,
.pd-quota,
.pd-features {
  padding: 80px 0;
  position: relative;
}

.pd-section-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto 52px;
  padding: 0 24px;
}

.pd-section-head-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pd-section-index {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .18em;
  color: var(--pd-blue);
  background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.25);
  padding: 6px 12px;
  flex-shrink: 0;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.pd-section-index-dark {
  color: var(--pd-green);
  background: rgba(57,255,20,.08);
  border-color: rgba(57,255,20,.3);
}

.pd-section-index-center {
  margin-bottom: 16px;
}

.pd-section-txt h2,
.pd-section-head-center h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--pd-white);
  margin: 0 0 10px;
  line-height: 1.3;
}

.pd-section-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--pd-text);
  max-width: 680px;
  margin: 0;
}

.pd-section-head-center .pd-section-desc {
  max-width: 740px;
}

.pd-access-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.pd-access-figure {
  position: relative;
  margin: 0;
}

.pd-access-img {
  width: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
  border: 1px solid rgba(138,43,226,.35);
  box-shadow: 0 12px 40px rgba(138,43,226,.2);
}

.pd-fig-note {
  font-size: 12px;
  color: var(--pd-text);
  margin-top: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pd-access-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pd-access-card {
  position: relative;
  background: var(--pd-glass);
  border: 1px solid rgba(255,255,255,.1);
  padding: 24px 28px 24px 78px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.pd-access-card:hover {
  transform: translateX(8px);
  border-color: rgba(0,212,255,.4);
  box-shadow: 0 8px 30px rgba(0,212,255,.12);
}

.pd-access-card-1 { background: linear-gradient(120deg, rgba(138,43,226,.12) 0%, rgba(255,255,255,.04) 55%, rgba(255,255,255,.06) 100%); }
.pd-access-card-2 { background: linear-gradient(120deg, rgba(0,212,255,.1) 0%, rgba(255,255,255,.04) 55%, rgba(255,255,255,.06) 100%); }
.pd-access-card-3 { background: linear-gradient(120deg, rgba(57,255,20,.08) 0%, rgba(255,255,255,.04) 55%, rgba(255,255,255,.06) 100%); }

.pd-access-num {
  position: absolute;
  left: 24px;
  top: 20px;
  font-size: 32px;
  font-weight: 900;
  color: rgba(255,255,255,.12);
  letter-spacing: .05em;
}

.pd-access-card h3,
.pd-sync-item h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--pd-white);
  margin: 0 0 8px;
}

.pd-access-card p,
.pd-sync-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--pd-text);
  margin: 0;
}

.pd-version {
  background: linear-gradient(180deg, #0f0f16 0%, #131023 100%);
  border-top: 1px solid rgba(0,212,255,.15);
  border-bottom: 1px solid rgba(138,43,226,.25);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.pd-version-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

.pd-version-copy h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--pd-white);
  margin: 16px 0 14px;
  line-height: 1.3;
}

.pd-version-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--pd-text);
  margin: 0 0 26px;
  max-width: 560px;
}

.pd-milestone {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(0,212,255,.3);
}

.pd-milestone li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0 10px 20px;
  position: relative;
}

.pd-milestone li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 18px;
  width: 9px;
  height: 9px;
  background: var(--pd-blue);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0,212,255,.7);
}

.pd-milestone-year {
  font-size: 16px;
  font-weight: 900;
  color: var(--pd-white);
  min-width: 52px;
}

.pd-milestone-desc {
  font-size: 14px;
  color: var(--pd-text);
}

.pd-version-figure {
  margin: 0;
  position: relative;
}

.pd-version-img {
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(138,43,226,.4);
  box-shadow: -12px 12px 0 rgba(138,43,226,.18);
  transform: rotate(-1.5deg);
}

.pd-version-figure .pd-fig-note {
  transform: rotate(-1.5deg);
  margin-left: 4px;
}

.pd-sync-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.pd-sync-figure {
  margin: 0;
  position: relative;
}

.pd-sync-img {
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(0,212,255,.3);
}

.pd-sync-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pd-sync-item {
  position: relative;
  padding: 22px 24px 22px 88px;
  background: var(--pd-glass);
  border-left: 3px solid transparent;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  transition: transform .28s ease, background .28s ease;
}

.pd-sync-item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.1);
}

.pd-sync-item-hot { border-left-color: var(--pd-blue); }
.pd-sync-item-new { border-left-color: var(--pd-green); }
.pd-sync-item-classic { border-left-color: var(--pd-purple); }

.pd-sync-item-tag {
  position: absolute;
  left: 24px;
  top: 22px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  writing-mode: vertical-rl;
  color: var(--pd-white);
  background: rgba(255,255,255,.08);
  padding: 4px 6px;
}

.pd-quota {
  border-top: 1px solid rgba(255,255,255,.08);
}

.pd-quota-bg-figure {
  margin: 0;
  max-width: 1280px;
  padding: 0 24px;
  position: relative;
}

.pd-quota-bg-img {
  width: 100%;
  object-fit: cover;
  height: 160px;
  border: 1px solid rgba(138,43,226,.3);
  filter: saturate(.9) contrast(1.08);
}

.pd-quota-table-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  margin-top: -1px;
}

.pd-quota-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(15,15,22,.92);
  border: 1px solid rgba(0,212,255,.22);
  box-shadow: 0 16px 50px rgba(0,212,255,.1);
}

.pd-quota-table th {
  background: linear-gradient(120deg, rgba(138,43,226,.35) 0%, rgba(0,212,255,.2) 100%);
  color: var(--pd-white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  white-space: nowrap;
}

.pd-quota-table td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: var(--pd-text);
}

.pd-quota-table td:first-child {
  color: var(--pd-white);
  font-weight: 700;
}

.pd-quota-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,.03);
}

.pd-quota-table tbody tr:hover {
  background: rgba(0,212,255,.06);
}

.pd-quota-table tbody tr:last-child td {
  border-bottom: none;
}

.pd-quota-note {
  max-width: 1280px;
  margin: 24px auto 0;
  padding: 20px 24px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--pd-text);
  border-left: 3px solid var(--pd-green);
  background: rgba(57,255,20,.04);
}

.pd-features {
  background: linear-gradient(180deg, #0f0f16 0%, #12101f 100%);
  border-top: 1px solid rgba(138,43,226,.2);
}

.pd-feature-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.pd-feature-card {
  position: relative;
  min-height: 240px;
  padding: 26px 26px 30px;
  background: var(--pd-glass);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.pd-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(138,43,226,.18);
}

.pd-feature-card-bookmark {
  background: linear-gradient(150deg, rgba(57,255,20,.13) 0%, rgba(255,255,255,.05) 60%);
  border-color: rgba(57,255,20,.3);
}

.pd-feature-card-version {
  background: linear-gradient(150deg, rgba(138,43,226,.18) 0%, rgba(255,255,255,.05) 70%);
  border-color: rgba(138,43,226,.4);
}

.pd-feature-card-sync {
  background: linear-gradient(150deg, rgba(0,212,255,.16) 0%, rgba(255,255,255,.05) 70%);
  border-color: rgba(0,212,255,.35);
}

.pd-feature-card-service {
  background: linear-gradient(150deg, rgba(255,255,255,.1) 0%, rgba(138,43,226,.08) 70%);
  border-color: rgba(255,255,255,.16);
}

.pd-feature-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pd-feature-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--pd-white);
  background: rgba(255,255,255,.1);
  padding: 4px 10px;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}

.pd-feature-bar {
  width: 40px;
  height: 2px;
  background: var(--pd-grad);
}

.pd-feature-card h3 {
  font-size: 19px;
  font-weight: 900;
  color: var(--pd-white);
  margin: 0;
  line-height: 1.35;
}

.pd-feature-card p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: var(--pd-text);
}

.pd-feature-figure-sm {
  margin: auto auto 0 0;
  width: 84px;
  height: 84px;
}

.pd-feature-bookmark-img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border: 1px solid rgba(57,255,20,.35);
  box-shadow: 0 0 18px rgba(57,255,20,.15);
}

.pd-extend {
  padding: 64px 0 80px;
  border-top: 1px solid rgba(0,212,255,.12);
  background: linear-gradient(180deg, #0f0f16, #0c0c13);
}

.pd-extend-title {
  max-width: 1280px;
  margin: 0 auto 28px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pd-text);
}

.pd-extend-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pd-extend-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--pd-glass);
  border: 1px solid rgba(255,255,255,.09);
  text-decoration: none;
  transition: all .28s ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.pd-extend-link:hover {
  border-color: var(--pd-purple);
  transform: translateX(6px);
  box-shadow: 0 6px 24px rgba(138,43,226,.16);
}

.pd-extend-index {
  font-size: 14px;
  font-weight: 900;
  color: var(--pd-blue);
}

.pd-extend-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--pd-white);
}

@media (min-width: 640px) {
  .pd-hero h1 {
    font-size: 44px;
  }

  .pd-section-txt h2,
  .pd-section-head-center h2,
  .pd-version-copy h2 {
    font-size: 32px;
  }

  .pd-access-grid {
    grid-template-columns: 1fr;
  }

  .pd-access-figure {
    max-width: 460px;
  }

  .pd-quota-bg-img {
    height: 210px;
  }

  .pd-extend-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .pd-hero {
    padding: 80px 0 96px;
  }

  .pd-hero h1 {
    font-size: 52px;
  }

  .pd-hero-lead {
    font-size: 16px;
    max-width: 760px;
  }

  .pd-access-grid {
    grid-template-columns: 5fr 7fr;
    align-items: center;
    gap: 56px;
  }

  .pd-access-figure {
    max-width: 460px;
    margin-left: -16px;
  }

  .pd-access-figure::after {
    content: "";
    position: absolute;
    left: -18px;
    bottom: -18px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0,212,255,.25);
    z-index: -1;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, calc(100% - 16px) 100%, 14px 100%, 0 calc(100% - 14px));
  }

  .pd-version-grid {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }

  .pd-sync-layout {
    grid-template-columns: 6fr 5fr;
    gap: 60px;
  }

  .pd-quota-table th,
  .pd-quota-table td {
    padding: 18px 24px;
  }

  .pd-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1280px) {
  .pd-feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pd-hero-corner-note {
    font-size: 84px;
    right: 24px;
  }
}
