.pd-wrap {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 72px 120px;
  position: relative;
  z-index: 1;
}

.pd-hero-img {
  width: 100%;
  aspect-ratio: 21 / 9;
  margin-bottom: 48px;
  background: linear-gradient(135deg, rgba(187, 222, 242, 0.05), rgba(209, 170, 215, 0.04));
  background-image: var(--cover-url);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.pd-hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(5, 7, 11, 0.75));
  pointer-events: none;
}

.pd-content {
  max-width: 800px;
}

.pd-content h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.015em;
  color: var(--color-ghost-white);
  margin: 48px 0 16px;
}

.pd-content h2:first-child {
  margin-top: 0;
}

.pd-content p {
  font-family: var(--font-inter);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-halo-pale);
  margin: 0 0 16px;
}

.pd-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pd-features li {
  font-family: var(--font-inter);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-halo-pale);
  padding-left: 20px;
  position: relative;
}

.pd-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--color-iridescent-glow);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(187, 222, 242, 0.5);
}

.pd-specs {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.pd-specs th,
.pd-specs td {
  font-family: var(--font-inter);
  font-size: 14px;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pd-specs th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-iron-slate);
  font-weight: 400;
}

.pd-specs td:first-child {
  color: var(--color-halo-pale);
  width: 40%;
}

.pd-specs td:last-child {
  color: var(--color-ghost-white);
}

.pd-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.model-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-iridescent-glow);
  background: rgba(187, 222, 242, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
  margin-right: 8px;
}

@media (max-width: 640px) {
  .pd-wrap {
    padding: 0 24px 80px;
  }
}
