/* privacy.css — distinct from nwt/docs style */

.privacy-wrap {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

/* Header */
.privacy-header { margin-bottom: 3rem; }
.privacy-title {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.privacy-meta {
  font-size: 0.78rem;
  color: var(--faint);
}

/* Lead paragraph */
.privacy-lead {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

/* Sections */
.privacy-section { margin-bottom: 2.5rem; }

.privacy-section-title {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--void);
  margin-bottom: 0.85rem;
}

.privacy-section p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.85rem;
}
.privacy-section p:last-child { margin-bottom: 0; }
.privacy-section a { color: var(--void); }
.privacy-section a:hover { color: var(--accent); }

.privacy-section ul {
  list-style: none;
  margin: 0.5rem 0 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.privacy-section ul li {
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}
.privacy-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--faint);
}

/* Sub-headings */
.privacy-section h3 {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 1.25rem;
  margin-bottom: 0.4rem;
}

/* Disclaimer callout */
.disclaimer {
  border: 1px solid var(--border-hi);
  border-left: 2px solid var(--faint);
  background: var(--card);
  border-radius: 0 6px 6px 0;
  padding: 0.85rem 1.1rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 0.5rem;
}

@media (max-width: 600px) {
  .privacy-wrap { padding: 3rem 1.5rem 5rem; }
}