.page-disclaimer {
  background-color: var(--sx-bg-deep);
  background-image:
    linear-gradient(rgba(248,249,250,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248,249,250,0.022) 1px, transparent 1px);
  background-size: 36px 36px;
  color: var(--sx-light);
  font-family: var(--sx-font-body);
  line-height: 1.7;
  scroll-behavior: smooth;
  padding-bottom: 88px;
}

.pd-hero {
  padding-top: 32px;
}

.pd-hero__inner {
  padding: 36px 0 32px;
  max-width: 840px;
}

.pd-hero__title {
  margin: 14px 0 18px;
  font-size: 2.6rem;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.pd-hero__lead {
  color: rgba(248,249,250,0.72);
  font-size: 1.02rem;
  margin: 0;
  max-width: 620px;
}

.pd-hero__banner {
  background: var(--sx-bg-panel);
  border-left: 3px solid var(--sx-purple);
}

.pd-hero__banner img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.pd-index {
  padding: 56px 0 24px;
}

.pd-index .sxi-grid {
  gap: 14px;
  margin-top: 20px;
}

.pd-index__item {
  background: var(--sx-bg-panel);
  border-left: 4px solid var(--sx-accent);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  text-decoration: none;
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.pd-index__item:hover,
.pd-index__item:focus-visible {
  border-left-color: var(--sx-gold);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  outline: none;
}

.pd-index__num {
  width: 36px;
  height: 36px;
  background: var(--sx-accent);
  color: var(--sx-bg-deep);
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 68%, 70% 100%, 0 100%);
  flex-shrink: 0;
}

.pd-index__label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--sx-light);
}

.pd-clause {
  padding: 56px 0;
}

.pd-clause--alt {
  background: rgba(28, 37, 65, 0.34);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.pd-clause__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.pd-clause__side {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.pd-clause__side::before {
  content: "";
  display: none;
  width: 38px;
  height: 4px;
  background: var(--sx-gold);
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
  margin-bottom: 16px;
}

.pd-clause__num {
  width: 48px;
  height: 48px;
  background: var(--sx-accent);
  color: var(--sx-bg-deep);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 72% 100%, 0 100%);
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(255, 159, 28, 0.18);
}

.pd-clause__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sx-gold);
  margin: 0 0 6px;
  font-weight: 600;
}

.pd-clause__side-text h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.25;
}

.pd-list {
  counter-reset: pdItem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pd-list li {
  counter-increment: pdItem;
  position: relative;
  padding: 0 0 20px 50px;
  margin-bottom: 20px;
  border-bottom: 1px dashed rgba(248, 249, 250, 0.1);
  color: rgba(248, 249, 250, 0.85);
}

.pd-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.pd-list li::before {
  content: counter(pdItem, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  background: var(--sx-accent);
  color: var(--sx-bg-deep);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 68%, 68% 100%, 0 100%);
}

.pd-copy-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: rgba(248, 249, 250, 0.36);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.pd-copy-badge svg {
  flex-shrink: 0;
}

.pd-related {
  padding-top: 56px;
}

.pd-related__inner {
  background: var(--sx-bg-panel);
  border-left: 4px solid var(--sx-gold);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  box-shadow: var(--sx-shadow);
}

.pd-related__inner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, transparent 50%, var(--sx-purple) 50%);
  opacity: 0.55;
}

.pd-related__lead {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sx-light);
}

.pd-related__note {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(248, 249, 250, 0.55);
}

.pd-related__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

  .pd-hero__inner {
    padding: 48px 0 42px;
  }

  .pd-hero__title {
    font-size: 3.4rem;
  }

  .pd-hero__banner img {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 320px) 100%, 0 100%);
  }

  .pd-index {
    padding: 72px 0 32px;
  }

  .pd-clause {
    padding: 72px 0;
  }

  .pd-clause__row {
    grid-template-columns: 300px 1fr;
    gap: 56px;
  }

  .pd-clause__side {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-top: 8px;
  }

  .pd-clause__side::before {
    display: block;
  }

  .pd-clause__num {
    width: 64px;
    height: 64px;
    font-size: 1.55rem;
    margin-bottom: 18px;
  }

  .pd-clause__side-text h2 {
    font-size: 1.85rem;
  }

  .pd-related {
    padding-top: 72px;
  }

  .pd-related__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 40px 44px;
  }

  .pd-related__text {
    max-width: 560px;
  }
}

@media print {
  .page-disclaimer {
    background: #ffffff;
    background-image: none;
    color: #333333;
    scroll-behavior: auto;
    padding-bottom: 0;
  }

  .pd-hero {
    padding-top: 0;
  }

  .pd-hero__inner {
    padding: 20px 0;
  }

  .pd-hero__lead,
  .pd-clause__kicker,
  .pd-list li,
  .pd-related__note {
    color: #333333;
  }

  .pd-hero__banner,
  .pd-index,
  .pd-related,
  .pd-copy-badge {
    display: none;
  }

  .pd-clause,
  .pd-clause--alt {
    padding: 16px 0;
    background: none;
    border: none;
  }

  .pd-clause__row {
    grid-template-columns: 1fr;
    gap: 16px;
    border-bottom: 1px solid #dddddd;
  }

  .pd-clause__side {
    flex-direction: row;
  }

  .pd-clause__num {
    box-shadow: none;
    color: #ffffff;
    background: #333333;
  }

  .pd-list li {
    border-bottom-color: #eeeeee;
  }

  .pd-list li::before {
    color: #ffffff;
    background: #333333;
  }
}
