/* Privacy page — shares Filippo Bellisola design system */

body.privacy-page {
  overflow-x: hidden;
  min-height: 0;
}

.privacy-back-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--page-gutter);
  pointer-events: none;
}

.privacy-back-pill {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-bold);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.privacy-back-pill:hover {
  color: var(--white);
  border-color: var(--glass-border-hover);
  background: var(--glass-strong);
}

.privacy-main {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-h) + clamp(2rem, 6vh, 3.5rem));
  padding-right: var(--page-gutter);
  padding-bottom: 0.5rem;
  padding-left: var(--page-gutter);
  background: #000;
}

.privacy-panel {
  width: 100%;
  max-width: min(42rem, 100%);
  margin-inline: auto;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.privacy-panel__eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-bold);
  font-weight: 800;
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
}

.privacy-panel__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.privacy-panel__updated {
  margin: 0 0 clamp(1.75rem, 4vw, 2.25rem);
  text-align: center;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.privacy-prose {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.privacy-prose > * + * {
  margin-top: 1rem;
}

.privacy-prose h2 {
  margin-top: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 0.65rem;
  font-family: var(--font-bold);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.privacy-prose h2:first-child {
  margin-top: 0;
}

.privacy-prose ul {
  margin: 0.35rem 0 0;
  padding-left: 1.15rem;
}

.privacy-prose li + li {
  margin-top: 0.35rem;
}

.privacy-prose a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s var(--ease);
}

.privacy-prose a:hover {
  color: var(--white);
}

.privacy-prose strong {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}
