/* ============================================================
   Privacy Policy page — scoped layout on top of ../style.css
   ============================================================ */

.pp-page {
  background: var(--color-background);
  color: var(--color-text);
}

.pp-hero {
  position: relative;
  overflow: hidden;
  padding: 36px 20px 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(104, 31, 183, 0.06) 0%, rgba(104, 31, 183, 0) 100%);
}

.pp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(104, 31, 183, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.pp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.pp-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin: 0 0 12px;
}

.pp-hero__date {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-accent);
  margin: 0;
}

.pp-content {
  padding: 0 20px 72px;
}

.pp-content__inner {
  max-width: 810px;
  margin: 0 auto;
}

.pp-intro {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 40px;
}

.pp-section {
  margin-bottom: 48px;
}

.pp-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-accent);
  margin: 0 0 14px;
}

.pp-subsection__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin: 24px 0 10px;
}

.pp-subsection__title:first-of-type {
  margin-top: 4px;
}

.pp-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0 0 12px;
}

.pp-section p:last-child {
  margin-bottom: 0;
}

.pp-section a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pp-section a:hover {
  color: var(--color-text);
}

.pp-list {
  margin: 0 0 14px;
  padding-left: 1.25rem;
}

.pp-list li {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

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

.pp-section--contact p strong {
  color: var(--color-text);
}

.pp-last-updated {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-align: center;
  margin: 8px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .pp-hero {
    padding: 46px 32px 24px;
  }

  .pp-content {
    padding: 0 32px 88px;
  }
}
