.page-disclaimer {
  --pd-round-lg: 22px;
  --pd-round-md: 14px;
  --pd-round-sm: 10px;
  --pd-line: rgba(212, 168, 66, 0.3);
  --pd-text: rgba(245, 240, 230, 0.84);
  --pd-text-dim: rgba(245, 240, 230, 0.55);
  --pd-grid-line: rgba(212, 168, 66, 0.035);
  background:
    linear-gradient(var(--pd-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--pd-grid-line) 1px, transparent 1px),
    var(--deep-green);
  background-size: 80px 80px;
  color: var(--cream);
}

.pd-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(245, 240, 230, 0.5);
}

.pd-breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.pd-breadcrumb a:hover {
  opacity: 0.72;
}

.pd-breadcrumb-sep {
  opacity: 0.4;
}

.pd-breadcrumb-current {
  font-weight: 600;
  color: rgba(245, 240, 230, 0.82);
}

.pd-hero {
  position: relative;
  background: radial-gradient(circle at 12% 20%, rgba(212, 168, 66, 0.09), transparent 300px);
}

.pd-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 72px;
  align-items: center;
}

.pd-hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--data-font);
  font-size: 12px;
  letter-spacing: 0.18em;
  line-height: 1.2;
  color: var(--gold);
  text-transform: uppercase;
}

.pd-kicker-line {
  display: inline-block;
  width: 30px;
  height: 2px;
  flex-shrink: 0;
  background: var(--gold);
}

.pd-hero-title {
  margin: 0 0 20px;
  font-family: var(--heading-font);
  font-size: clamp(46px, 9vw, 72px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
}

.pd-hero-lead {
  margin: 0 0 28px;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 240, 230, 0.75);
}

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

.pd-version-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1px solid var(--pd-line);
  border-radius: 999px;
  background: rgba(212, 168, 66, 0.12);
  font-family: var(--data-font);
  font-size: 13px;
  line-height: 1;
  color: var(--cream);
  white-space: nowrap;
}

.pd-version-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.pd-hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--pd-line);
  border-radius: var(--pd-round-lg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

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

.pd-hero-stamp {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 16px;
  border: 1px solid var(--gold);
  border-radius: var(--pd-round-sm);
  background: rgba(11, 61, 46, 0.86);
  backdrop-filter: blur(4px);
  font-family: var(--heading-font);
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: right;
}

.pd-terms {
  padding-top: 16px;
  padding-bottom: 72px;
}

.pd-terms-head {
  margin-bottom: 36px;
  padding-left: 16px;
  position: relative;
}

.pd-terms-head::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  border-radius: 4px;
  background: var(--gold);
}

.pd-eyebrow {
  margin: 0 0 6px;
  font-family: var(--data-font);
  font-size: 12px;
  letter-spacing: 0.2em;
  line-height: 1.2;
  color: var(--gold);
  text-transform: uppercase;
}

.pd-terms-title {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
}

.pd-term {
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid var(--pd-line);
  border-radius: var(--pd-round-md);
  background: rgba(245, 240, 230, 0.035);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.pd-term[open] {
  border-color: rgba(212, 168, 66, 0.55);
  background: rgba(245, 240, 230, 0.055);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

.pd-term summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  cursor: pointer;
  list-style: none;
}

.pd-term summary::-webkit-details-marker {
  display: none;
}

.pd-term-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(212, 168, 66, 0.1);
  font-family: var(--data-font);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
}

.pd-term-meta {
  flex: 1;
  min-width: 0;
}

.pd-term-name {
  display: block;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
}

.pd-term-desc {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--pd-text-dim);
}

.pd-term-toggle {
  position: relative;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 1px solid rgba(212, 168, 66, 0.5);
  border-radius: 50%;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.pd-term-toggle::before,
.pd-term-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.pd-term-toggle::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.pd-term-toggle::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.pd-term[open] .pd-term-toggle::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.pd-term-content {
  padding: 0 20px 26px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--pd-text);
}

.pd-term-content p {
  margin: 0 0 14px;
}

.pd-term-content p:last-child {
  margin-bottom: 0;
}

.pd-term-content strong {
  font-weight: 600;
  color: var(--gold);
}

.pd-term-list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.pd-term-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}

.pd-term-list li:last-child {
  margin-bottom: 0;
}

.pd-term-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--gold);
}

.pd-terracotta-note {
  margin-bottom: 22px;
  padding: 20px 22px;
  border-radius: var(--pd-round-md);
  background: var(--terracotta);
  color: #FFF6EA;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 10px 26px rgba(139, 46, 46, 0.25);
}

.pd-note-label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFF1D6;
}

.pd-terracotta-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.pd-inline-link {
  display: inline-block;
  margin-top: 6px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(212, 168, 66, 0.4);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.pd-inline-link:hover {
  border-color: #E9C667;
  color: #E9C667;
}

.pd-acceptance {
  padding: 48px 0;
  border-radius: 28px 28px 0 0;
  background: var(--cream);
  color: var(--ink-black);
}

.pd-acceptance-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pd-acceptance-version {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--terracotta);
  font-family: var(--data-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: #FFF6EA;
  white-space: nowrap;
}

.pd-acceptance-version::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFE7C2;
  flex-shrink: 0;
}

.pd-acceptance-note p {
  margin: 14px 0 0;
  max-width: 680px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(26, 26, 26, 0.78);
}

.pd-acceptance-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.pd-secondary-link {
  padding-bottom: 3px;
  border-bottom: 2px solid rgba(11, 61, 46, 0.3);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--deep-green);
  text-decoration: none;
  transition: border-color 0.25s ease;
}

.pd-secondary-link:hover {
  border-color: var(--deep-green);
}

@media (min-width: 768px) {
  .pd-hero-grid {
    grid-template-columns: 1.06fr 0.94fr;
    gap: 48px;
    padding-top: 56px;
    padding-bottom: 88px;
  }

  .pd-hero-lead {
    font-size: 17px;
  }

  .pd-hero-stamp {
    right: 20px;
    bottom: 20px;
    font-size: 24px;
    padding: 12px 18px;
  }

  .pd-terms {
    padding-top: 24px;
    padding-bottom: 96px;
  }

  .pd-terms-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    padding-left: 20px;
  }

  .pd-eyebrow {
    order: 2;
    margin-bottom: 4px;
    text-align: right;
  }

  .pd-terms-title {
    order: 1;
    font-size: 48px;
  }

  .pd-term {
    border-radius: var(--pd-round-lg);
    margin-bottom: 20px;
  }

  .pd-term summary {
    gap: 20px;
    padding: 26px 32px;
  }

  .pd-term-index {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }

  .pd-term-name {
    font-size: 32px;
  }

  .pd-term-desc {
    font-size: 14px;
  }

  .pd-term-toggle {
    width: 42px;
    height: 42px;
  }

  .pd-term-content {
    padding: 0 32px 34px 108px;
    font-size: 15px;
  }

  .pd-term-content p {
    margin-bottom: 16px;
  }

  .pd-term-list {
    margin-bottom: 18px;
  }

  .pd-terracotta-note {
    padding: 24px 28px;
  }

  .pd-terracotta-note p {
    font-size: 15px;
  }

  .pd-acceptance {
    padding: 64px 0;
  }

  .pd-acceptance-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .pd-acceptance-note p {
    font-size: 16px;
  }
}
