main {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 4vw, 40px) 0 clamp(56px, 8vw, 96px);
}

.doc-head {
  margin-bottom: 32px;
}
h1 {
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.updated {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.policy {
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: clamp(28px, 5vw, 48px) clamp(24px, 5vw, 56px);
}
.policy p {
  color: var(--text-muted);
  font-size: 17px;
  margin: 0 0 18px;
}
.policy p strong {
  color: var(--text);
  font-weight: 600;
}
.policy ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 17px;
}
.policy li {
  margin-bottom: 8px;
}
.policy li strong {
  color: var(--text);
}
.policy h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 38px 0 14px;
  padding-top: 28px;
  border-top: 1px solid var(--outline-soft);
}
.policy h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.callout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid var(--outline);
  border-radius: var(--radius-sm);
  background: var(--surface-variant);
  padding: 20px 22px;
  margin-bottom: 32px;
}
.callout .bar {
  width: 3px;
  align-self: stretch;
  border-radius: 2px;
  background: var(--protecting);
  flex-shrink: 0;
}
.callout p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}
.callout p strong {
  color: var(--text);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 760px) {
  .policy ul {
    padding-left: 18px;
  }
}

@media (max-width: 480px) {
  .policy {
    padding: 24px 18px;
  }
  .callout {
    padding: 16px 18px;
  }
}
