/* ============================================
   LEGAL PAGES
   ============================================ */

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 64px) 24px 120px;
}

/* ?embed=1 — used when a native app opens this page in an in-app browser,
   e.g. as a link-out from a ToS/risk-disclaimer acceptance screen. Hides the
   marketing chrome so it reads as a standalone document, not a landing page. */
body.is-embed .nav,
body.is-embed .footer {
  display: none;
}

body.is-embed .legal {
  padding-top: 48px;
}

.legal__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.legal__header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 40px;
}

.legal__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1.1;
}

.legal__updated {
  font-size: 13px;
  color: var(--muted);
}

.legal__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.legal__section h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gold-soft);
  letter-spacing: -0.01em;
}

.legal__section p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

.legal__section p + p {
  margin-top: 12px;
}

.legal__section a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.legal__section a:hover {
  color: var(--gold-hi);
}

.legal__list {
  list-style: none;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal__list li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.legal__list li::before {
  content: '·';
  position: absolute;
  left: 6px;
  color: var(--gold);
  font-weight: 700;
}
