/* =========================
   GLOBAL
========================= */

* {
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  min-height: 100vh;
  background-color: var(--bg);
  color: #e5e7eb;

  /* Softer grid + fade */
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 70%);
  background-size: 48px 48px, 48px 48px, cover;

  line-height: 1.75;
}

/* =========================
   CONTAINER
========================= */

.legal-container {
  max-width: 720px; /* narrower = easier reading */
  margin: 0 auto;
  padding: 72px 24px 120px;
}

/* =========================
   HEADER
========================= */

.legal-header {
  margin-bottom: 48px;
}

.legal-header h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.legal-header p {
  font-size: 14px;
  color: #9ca3af;
}

/* =========================
   CONTENT
========================= */

.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 56px;
  margin-bottom: 14px;
  color: #f9fafb;
}

.legal-content p {
  font-size: 16px;
  color: #d1d5db;
  margin-bottom: 20px;
  max-width: 65ch;
}

.legal-content ul {
  margin: 16px 0 24px 22px;
  max-width: 65ch;
}

.legal-content li {
  margin-bottom: 12px;
  color: #d1d5db;
}

/* =========================
   LINKS
========================= */

a {
  color: #a5b4fc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =========================
   FOOTER
========================= */

.legal-footer {
  margin-top: 96px;
  font-size: 13px;
  color: #9ca3af;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-footer a {
  color: #9ca3af;
}

.legal-footer a:hover {
  color: #e5e7eb;
}
