.page-products {
  --pd-accent: var(--color-primary);
  --pd-gold: var(--color-gold);
  --pd-ink: var(--color-ink);
  --pd-bone: var(--color-bone);
  --pd-muted: var(--color-muted);
  --pd-glass: var(--glass);
  --pd-mono: var(--font-mono);
  --pd-display: var(--font-display);
  --pd-body: var(--font-body);
  position: relative;
  overflow-x: hidden;
  background: var(--gradient-bg);
  color: var(--pd-bone);
}

.pd-breadcrumbs-wrap {
  padding: 18px var(--space-side) 0;
}

.pd-hero {
  position: relative;
  padding: 32px var(--space-side) 48px;
}

.pd-hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.pd-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  min-width: 0;
}

.pd-hero-media {
  min-width: 0;
}

.pd-phone-deck {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 20px;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 16, 46, .55) transparent;
}

.pd-phone {
  flex: 0 0 auto;
  width: 200px;
  scroll-snap-align: center;
  padding: 10px;
  background: linear-gradient(145deg, #1d1d1d, #0A0A0A);
  border-radius: 32px;
  border: 1px solid rgba(212, 175, 55, .35);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .55), 0 0 0 4px rgba(212, 175, 55, .08);
  transform: rotate(-2deg);
}

.pd-phone:nth-child(even) {
  transform: rotate(1deg);
}

.pd-phone-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 360 / 640;
  background: #070707;
  border: 1px solid rgba(255, 255, 255, .06);
}

.pd-phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 4px;
  border-radius: 99px;
  background: var(--pd-gold);
  z-index: 3;
}

.pd-phone-status {
  position: absolute;
  top: 20px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--pd-mono);
  font-size: .6rem;
  color: var(--pd-bone);
  background: rgba(0, 0, 0, .45);
  padding: 4px 8px;
  border-radius: 8px;
  z-index: 2;
}

.pd-phone-status-live {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--pd-gold);
}

.pd-phone-screen-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-phone-statbar {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  justify-content: space-between;
  gap: 6px;
  padding: 8px 10px;
  background: rgba(10, 10, 10, .74);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  font-family: var(--pd-mono);
  font-size: .62rem;
  color: var(--pd-bone);
  z-index: 2;
}

.pd-phone-caption {
  margin: 10px 0 0;
  text-align: center;
  font-family: var(--pd-mono);
  font-size: .74rem;
  color: var(--pd-muted);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pd-deck-hint {
  margin: 2px 0 0;
  font-size: .78rem;
  color: var(--pd-muted);
  text-align: center;
}

.pd-heatmap-frame {
  background: #07160f;
}

.pd-heatmap-pitch {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0C2618 0%, #0A1F14 60%, #07160F 100%);
}

.pd-heatmap-pitch::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, .22);
}

.pd-heatmap-pitch::after {
  content: "";
  position: absolute;
  left: 18%;
  width: 64%;
  top: 50%;
  height: 34%;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
}

.pd-hot-spot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--pd-accent);
  box-shadow: 0 0 16px rgba(200, 16, 46, .9);
  transform: translate(-50%, -50%);
}

.pd-hot-spot-blur {
  width: 24px;
  height: 24px;
  background: rgba(200, 16, 46, .5);
  box-shadow: 0 0 30px rgba(200, 16, 46, .8);
}

.pd-lineup-frame {
  background: #0B0B12;
}

.pd-lineup-grid {
  position: absolute;
  inset: 0;
  padding: 44px 10px 12px;
  display: grid;
  grid-template-columns: 1fr 46px 1fr;
  gap: 4px;
  align-items: center;
}

.pd-lineup-team {
  display: block;
  text-align: center;
  font-family: var(--pd-mono);
  font-size: .58rem;
  color: var(--pd-gold);
  margin-bottom: 6px;
  letter-spacing: .08em;
}

.pd-lineup-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--pd-mono);
  font-size: .58rem;
  color: var(--pd-bone);
  padding: 2px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.pd-lineup-vs {
  font-family: var(--pd-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--pd-accent);
  text-align: center;
}

.pd-hero-copy {
  padding-top: 8px;
}

.pd-hero-copy .section-kicker {
  color: var(--pd-gold);
  letter-spacing: .24em;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pd-hero-copy h1 {
  font-family: var(--pd-display);
  font-size: clamp(2.5rem, 8vw, 4.4rem);
  line-height: .96;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 0 0 6px;
}

.pd-hero-subtitle {
  font-family: var(--pd-mono);
  color: var(--pd-gold);
  font-size: .9rem;
  letter-spacing: .06em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.pd-hero-desc {
  color: rgba(245, 245, 240, .86);
  line-height: 1.85;
  font-size: .95rem;
  max-width: 46em;
  margin: 0 0 24px;
}

.pd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.pd-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-family: var(--pd-mono);
  font-size: .76rem;
  color: var(--pd-muted);
}

.pd-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pd-guide-section {
  padding: 0 var(--space-side) 52px;
  scroll-margin-top: 16px;
}

.pd-guide-grid {
  display: grid;
  gap: 16px;
}

.pd-guide-card {
  padding: 26px;
}

.pd-guide-card .section-kicker {
  color: var(--pd-gold);
  letter-spacing: .2em;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pd-guide-card h2 {
  font-family: var(--pd-display);
  font-style: italic;
  font-size: 1.9rem;
  margin: 4px 0 0;
}

.pd-guide-note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, .16);
  font-size: .84rem;
  color: var(--pd-muted);
  line-height: 1.6;
}

.pd-steps {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: pdStep;
}

.pd-steps li {
  counter-increment: pdStep;
  position: relative;
  padding: 0 0 20px 46px;
  font-size: .92rem;
  line-height: 1.7;
  color: rgba(245, 245, 240, .9);
}

.pd-steps li::before {
  content: counter(pdStep, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--pd-accent);
  color: #fff;
  font-family: var(--pd-mono);
  font-size: .72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 36px;
  bottom: 2px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(200, 16, 46, .7), transparent);
}

.pd-guide-aside {
  display: grid;
  gap: 14px;
}

.pd-aside-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--pd-glass);
  border-radius: var(--radius);
  border-left: 4px solid var(--pd-gold);
}

.pd-aside-num {
  font-family: var(--pd-display);
  font-size: 3rem;
  line-height: .9;
  color: var(--pd-accent);
  font-style: italic;
}

.pd-aside-text {
  font-size: .88rem;
  line-height: 1.45;
  color: var(--pd-bone);
}

.pd-section-head {
  margin-bottom: 6px;
}

.pd-section-head .section-kicker {
  color: var(--pd-gold);
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pd-section-head h2 {
  font-family: var(--pd-display);
  font-style: italic;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  text-transform: uppercase;
  margin: 2px 0 10px;
}

.gold-rule {
  width: 88px;
  height: 3px;
  background: linear-gradient(90deg, var(--pd-accent), var(--pd-gold));
  border-radius: 99px;
}

.pd-focus {
  padding: 56px var(--space-side);
  background: rgba(255, 255, 255, .03);
  border-top: 1px solid rgba(212, 175, 55, .22);
  border-bottom: 1px solid rgba(0, 0, 0, .55);
}

.pd-focus-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.pd-focus-card {
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.pd-focus-card::before {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 96px;
  height: 96px;
  background: radial-gradient(circle, rgba(200, 16, 46, .28), transparent 70%);
}

.pd-focus-num {
  display: block;
  font-family: var(--pd-mono);
  color: var(--pd-accent);
  font-size: .78rem;
  letter-spacing: .14em;
  margin-bottom: 10px;
}

.pd-focus-card h3 {
  font-size: 1.16rem;
  font-weight: 700;
  font-style: italic;
  margin: 0 0 8px;
}

.pd-focus-card p {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(245, 245, 240, .78);
  margin: 0;
}

.pd-focus-img {
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
}

.pd-focus-img img {
  display: block;
  width: 100%;
  height: auto;
}

.pd-features {
  padding: 56px var(--space-side);
}

.pd-features-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.pd-feature-card {
  padding: 22px;
}

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

.pd-feature-code {
  font-family: var(--pd-mono);
  font-size: .68rem;
  color: var(--pd-gold);
  letter-spacing: .12em;
}

.pd-feature-card h3 {
  font-size: 1.14rem;
  font-weight: 700;
  font-style: italic;
  margin: 0 0 8px;
}

.pd-feature-card p {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(245, 245, 240, .78);
  margin: 0;
}

.pd-feature-img {
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
}

.pd-feature-img img {
  display: block;
  width: 100%;
  height: auto;
}

.pd-compare {
  padding: 56px var(--space-side);
  background: rgba(200, 16, 46, .05);
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.pd-compare-intro {
  max-width: 62ch;
  font-size: .9rem;
  line-height: 1.75;
  color: var(--pd-muted);
  margin-bottom: 4px;
}

.pd-table-scroll {
  margin-top: 22px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
}

.pd-compare-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: .875rem;
}

.pd-compare-table th {
  background: linear-gradient(105deg, var(--pd-accent) 0%, #E8405B 70%, var(--pd-accent) 100%);
  color: #fff;
  font-family: var(--pd-display);
  font-style: italic;
  font-weight: 900;
  letter-spacing: .05em;
  text-align: left;
  padding: 14px 16px;
  white-space: nowrap;
}

.pd-compare-table td {
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  vertical-align: top;
  line-height: 1.6;
  color: rgba(245, 245, 240, .84);
}

.pd-compare-table td:first-child {
  font-family: var(--pd-mono);
  font-weight: 700;
  color: var(--pd-gold);
  white-space: nowrap;
}

.pd-compare-table tr:hover td {
  background: rgba(200, 16, 46, .1);
}

.pd-history {
  position: relative;
  padding: 56px var(--space-side) 24px;
  overflow: hidden;
}

.pd-history-deco {
  position: absolute;
  inset: 0;
  opacity: .12;
  pointer-events: none;
}

.pd-history-deco img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-history-grid {
  display: grid;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.pd-history-content {
  min-width: 0;
}

.pd-timeline {
  list-style: none;
  margin: 26px 0 0;
  padding: 0 0 0 34px;
  position: relative;
}

.pd-timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, var(--pd-accent) 0%, var(--pd-gold) 100%);
}

.pd-timeline-item {
  position: relative;
  padding: 0 0 26px;
}

.pd-timeline-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pd-gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .22);
}

.pd-timeline-version {
  display: inline-block;
  font-family: var(--pd-mono);
  font-weight: 700;
  color: var(--pd-accent);
  font-size: .86rem;
  padding: 2px 10px;
  border: 1px solid rgba(200, 16, 46, .4);
  border-radius: 4px;
  background: rgba(200, 16, 46, .08);
  margin-bottom: 7px;
  transition: background .2s, color .2s;
}

.pd-timeline-item:hover .pd-timeline-version {
  background: var(--pd-accent);
  color: #fff;
}

.pd-timeline-item p {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(245, 245, 240, .78);
  margin: 0;
  max-width: 52ch;
}

.pd-history-media {
  display: grid;
  gap: 16px;
  align-content: start;
}

.pd-history-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
}

.pd-history-image img {
  display: block;
  width: 100%;
  height: auto;
}

.pd-history-note {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--pd-glass);
  border-left: 4px solid var(--pd-gold);
  border-radius: var(--radius);
}

.pd-history-note .data-num {
  font-family: var(--pd-display);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--pd-accent);
  font-style: italic;
}

.pd-help {
  padding: 40px var(--space-side) 64px;
}

.pd-help-title {
  font-family: var(--pd-display);
  font-style: italic;
  font-size: 2.1rem;
  text-align: center;
  margin: 0 0 6px;
}

.pd-help-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.pd-help-card {
  display: block;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  border-left: 4px solid var(--pd-accent);
  transition: border-color .2s, background .2s;
}

.pd-help-card:hover {
  border-color: var(--pd-gold);
  background: rgba(255, 255, 255, .03);
}

.pd-help-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  font-style: italic;
  margin: 0 0 6px;
}

.pd-help-card p {
  font-size: .85rem;
  line-height: 1.65;
  color: rgba(245, 245, 240, .72);
  margin: 0;
}

.pd-help-trust {
  margin: 34px auto 0;
  max-width: 72ch;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .8rem;
  line-height: 1.8;
  color: var(--pd-muted);
}

@media (min-width: 768px) {
  .pd-hero {
    padding-top: 44px;
  }

  .pd-hero-grid {
    grid-template-columns: minmax(300px, 380px) 1fr;
    gap: 32px;
    align-items: center;
  }

  .pd-phone-deck {
    scrollbar-width: none;
  }

  .pd-phone-deck::-webkit-scrollbar {
    display: none;
  }

  .pd-guide-grid {
    grid-template-columns: 1.4fr .8fr;
  }

  .pd-guide-aside {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

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

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

  .pd-feature-full {
    grid-column: 1 / -1;
  }

  .pd-history-grid {
    grid-template-columns: 1.2fr .9fr;
  }

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

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

  .pd-hero-copy h1 {
    font-size: clamp(3rem, 5vw, 4.6rem);
  }

  .pd-history {
    padding-bottom: 40px;
  }
}
