/* privacy.html page styles — Direction B (Soft Premium), design-system/MASTER.md
   Shared tokens/components live in styles.css (.nx-*). No raw hex — var(--nx-*) only. */

.nx-privacy-body { background: var(--nx-surface-warm); }

/* ── hero ──────────────────────────────────────────────────────────── */
.nx-legal-hero {
  padding: clamp(48px, 8vw, 72px) 0 var(--nx-s-12);
  text-align: center;
}
.nx-legal-hero .nx-hero__chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--nx-text-label); font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; color: var(--nx-ink-soft);
  background: var(--nx-orange-tint); border-radius: var(--nx-r-pill); padding: 6px 14px;
  margin-bottom: var(--nx-s-6);
}
.nx-legal-hero .nx-hero__chip::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--nx-orange);
}
.nx-legal-hero h1 {
  font-size: var(--nx-text-h1); font-weight: 800; letter-spacing: -.02em;
  color: var(--nx-ink); margin: 0 auto var(--nx-s-4); max-width: 22ch;
}
.nx-legal-hero p {
  font-size: var(--nx-text-body-lg); color: var(--nx-ink-soft);
  max-width: 52ch; margin: 0 auto;
}

/* ── document wrapper ──────────────────────────────────────────────── */
.nx-legal-wrap { padding: 0 0 var(--nx-s-32); }

.nx-legal-doc {
  background: var(--nx-surface); border-radius: var(--nx-r-lg);
  box-shadow: var(--nx-shadow-soft); padding: clamp(28px, 5vw, 56px);
  max-width: 820px; margin: 0 auto;
}

/* ── meta row ──────────────────────────────────────────────────────── */
.nx-legal-meta {
  display: flex; gap: var(--nx-s-8); flex-wrap: wrap;
  font-size: var(--nx-text-label); color: var(--nx-ink-soft);
  border-bottom: 1px solid var(--nx-line);
  padding-bottom: var(--nx-s-6); margin-bottom: var(--nx-s-10);
}
.nx-legal-meta p { margin: 0; }

/* ── sections ──────────────────────────────────────────────────────── */
.nx-legal-section { margin-bottom: var(--nx-s-10); }
.nx-legal-section:last-child { margin-bottom: 0; }

.nx-legal-section h2 {
  font-size: var(--nx-text-h3); font-weight: 700; color: var(--nx-ink);
  margin: 0 0 var(--nx-s-4);
  padding-bottom: var(--nx-s-3); border-bottom: 2px solid var(--nx-orange-tint);
}
.nx-legal-section p {
  font-size: var(--nx-text-body); color: var(--nx-ink-soft);
  line-height: 1.65; margin: 0 0 var(--nx-s-4);
}
.nx-legal-section p:last-child { margin-bottom: 0; }

/* inline links */
.nx-legal-section a { color: var(--nx-ink); text-decoration: underline; }
.nx-legal-section a:hover { color: var(--nx-orange-dark); }

/* inline code */
.nx-legal-section code {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
  font-size: 0.875em; background: var(--nx-orange-tint);
  border-radius: 4px; padding: 1px 6px; color: var(--nx-ink);
}

/* ── lists ─────────────────────────────────────────────────────────── */
.nx-legal-list {
  list-style: none; padding: 0; margin: var(--nx-s-4) 0;
}
.nx-legal-list li {
  font-size: var(--nx-text-body); color: var(--nx-ink-soft); line-height: 1.65;
  padding: var(--nx-s-3) 0 var(--nx-s-3) var(--nx-s-8);
  border-bottom: 1px solid var(--nx-line); position: relative;
}
.nx-legal-list li:last-child { border-bottom: none; }
.nx-legal-list li::before {
  content: ""; position: absolute; left: var(--nx-s-3); top: 20px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--nx-orange);
}
.nx-legal-list a { color: var(--nx-ink); text-decoration: underline; }
.nx-legal-list a:hover { color: var(--nx-orange-dark); }

/* ── contact block ─────────────────────────────────────────────────── */
.nx-legal-contact {
  background: var(--nx-orange-tint); border-radius: var(--nx-r-md);
  padding: var(--nx-s-6) var(--nx-s-8); margin-top: var(--nx-s-4);
}
.nx-legal-contact p {
  margin: 0 0 var(--nx-s-2); font-size: var(--nx-text-body);
  color: var(--nx-ink-soft);
}
.nx-legal-contact p:last-child { margin: 0; }
.nx-legal-contact a { color: var(--nx-ink); text-decoration: underline; }
.nx-legal-contact a:hover { color: var(--nx-orange-dark); }
