/* ============================================================
   legal.css — Privacy & ToS typography.
   Used in combination with create-project.css for layout.
   ============================================================ */

.create-project.legal {
  max-width: 760px;
}

.legal__body {
  margin-top: 2.5rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.62;
}

.legal__body h2 {
  font-family: var(--display);
  font-variation-settings: 'opsz' 60, 'wght' 480, 'SOFT' 50;
  font-size: 1.45rem;
  color: var(--ink);
  margin: 2.8rem 0 0.9rem;
  letter-spacing: -0.005em;
  position: relative;
}

.legal__body h2::before {
  content: '';
  position: absolute;
  top: -1.4rem;
  left: 0;
  width: 2.2rem;
  height: 1px;
  background: var(--gold);
}

.legal__body h2:first-of-type {
  margin-top: 1rem;
}

.legal__body p {
  margin: 0 0 1rem;
}

.legal__body strong {
  font-weight: 600;
  color: var(--ink);
}

.legal__body em {
  font-style: italic;
}

.legal__body code {
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 0.9em;
  color: var(--oxblood-deep);
  background: var(--paper-deep);
  padding: 0.1em 0.4em;
  border-radius: 2px;
}

.legal__body ul {
  margin: 0 0 1.2rem;
  padding-left: 0;
  list-style: none;
}

.legal__body ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.55rem;
}

.legal__body ul li::before {
  content: '§';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1em;
  line-height: 1.6;
}

.legal__body a {
  color: var(--oxblood);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 200ms var(--ease);
}

.legal__body a:hover {
  color: var(--oxblood-warm);
}
