/* Privacy Policy page — standalone, stile coerente col sito principale */
:root{
  --bg: #222222;
  --paper: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.14);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --accent: #e0ab3d;
  --shadow: 0 18px 55px rgba(0,0,0,.35);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container{
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.top{
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(34,34,34,0.65);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.back{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .02em;
  opacity: .9;
}
.back:hover{ opacity: 1; }
.back-arrow{
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  line-height: 20px;
  text-align: center;
}

main{ padding: 28px 0 56px; }

.paper{
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: var(--shadow);
}

.kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.kicker::before{
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(224,171,61,0.8);
}

h1{
  margin: 10px 0 18px;
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.meta{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin: 18px 0 6px;
}
.meta-item{
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  background: rgba(0,0,0,0.10);
}
.meta-label{
  display: block;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.meta-value{
  font-size: 14px;
  color: var(--text);
}

hr{
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 18px 0 20px;
}

h2{
  margin: 22px 0 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p{
  margin: 0 0 12px;
  color: var(--text);
  line-height: 1.65;
  font-size: 14.5px;
}

ul{
  margin: 0 0 12px 18px;
  padding: 0;
  color: var(--text);
  line-height: 1.65;
  font-size: 14.5px;
}
li{ margin: 6px 0; }

.link{
  color: var(--accent);
  text-decoration: none;
}
.link:hover{ text-decoration: underline; }

.footer-note{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.60);
  font-size: 12.5px;
  display: flex;
  justify-content: flex-end;
}

.bottom{
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.60);
  font-size: 12.5px;
}
.bottom-row{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 640px){
  .container{ width: min(980px, calc(100% - 32px)); }
  .paper{ padding: 24px 18px; }
  .meta{ grid-template-columns: 1fr; }
}
