/* ═══════════════════════════════════════════════════════════════
   PRIVACY POLICY PAGE
   ═══════════════════════════════════════════════════════════════ */

/* Override .hero defaults when used as privacy page wrapper */
.pp.hero {
  position: relative;
  top: auto;
  z-index: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: visible;
}

.pp .hero__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}


/* ── Header ─────────────────────────────────────────────────── */

.pp__header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 40px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 245, 241, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.pp__logo {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s;
}

.pp__logo:hover {
  opacity: 0.7;
}

.pp__logo-word {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}

.pp__logo-o {
  color: var(--accent);
}


/* ── Main ───────────────────────────────────────────────────── */

.pp__main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 80px 40px 120px;
}

.pp__content {
  max-width: 720px;
  width: 100%;
}


/* ── Badge ──────────────────────────────────────────────────── */

.pp__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 14px;
  background: var(--accent-soft);
  border: 1px solid var(--line-accent);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-bright);
  margin-bottom: 32px;
}


/* ── Title ──────────────────────────────────────────────────── */

.pp__title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}

.pp__updated {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}


/* ── Text body ──────────────────────────────────────────────── */

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

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

.pp__text h2 {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
  padding-top: 8px;
}

.pp__text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 16px;
}

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

.pp__text strong {
  color: var(--text);
  font-weight: 600;
}

.pp__text ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pp__text li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
  padding-left: 24px;
  position: relative;
}

.pp__text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

.pp__text a {
  color: var(--accent-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.pp__text a:hover {
  color: var(--accent);
}


/* ── Footer ─────────────────────────────────────────────────── */

.pp__footer {
  position: relative;
  z-index: 1;
  padding: 24px 40px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.pp__footer p {
  font-size: 13px;
  color: var(--text-3);
}


/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 768px) {
  .pp__header {
    padding: 20px;
  }

  .pp__logo-word {
    font-size: 22px;
  }

  .pp__main {
    padding: 48px 20px 80px;
  }

  .pp__badge {
    font-size: 12px;
    padding: 6px 14px 6px 12px;
    margin-bottom: 24px;
  }

  .pp__title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .pp__updated {
    margin-bottom: 40px;
    padding-bottom: 28px;
  }

  .pp__text section {
    margin-bottom: 36px;
  }

  .pp__text h2 {
    font-size: 18px;
  }

  .pp__text p,
  .pp__text li {
    font-size: 14px;
  }

  .pp__footer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .pp__header {
    padding: 16px;
  }

  .pp__main {
    padding: 36px 16px 64px;
  }

  .pp__title {
    font-size: 24px;
  }
}
