*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  background: #030812;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  min-height: 100vh;
}

/* ── Top bar ─────────────────────────────────────────────────────────── */

.legal-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: rgba(3, 8, 18, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-topbar .brand {
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.legal-topbar .back-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.legal-topbar .back-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.legal-topbar .back-link svg {
  flex-shrink: 0;
}

/* ── Content ─────────────────────────────────────────────────────────── */

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2.5rem 6rem;
}

.legal-content h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.legal-content .last-updated {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 1rem;
  font-weight: 600;
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-content h3 {
  font-size: 0.85rem;
  font-weight: 600;
  font-style: normal;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
}

.legal-content ul {
  margin: 0.5rem 0 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.legal-content li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.legal-content .last-updated {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 3rem;
}

.legal-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}

.legal-content a {
  color: rgba(168, 204, 255, 0.75);
  text-decoration: none;
}

.legal-content a:hover {
  color: rgba(168, 204, 255, 1);
}

.placeholder-note {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.03em;
}
