/* ============================================================
   Legal pages (privacy). Reuses the signup page's tokens, fonts
   and footer from style.css - this only adds the long-form
   reading column.
   ============================================================ */

.legal {
  flex: 1 0 auto;
  padding: clamp(28px, 5vw, 64px) var(--gutter);
}
.legal__inner {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(24px, 4.5vw, 44px);
  background: var(--panel-bg);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.legal__eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.legal__eyebrow a { color: var(--white); text-decoration: none; }
.legal__eyebrow a:hover { color: var(--white); text-decoration: underline; }

.legal__title {
  margin: 0 0 14px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(1.7rem, 5.4vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--white);
  text-wrap: balance;
}
.legal__title em {
  display: block;
  font-family: var(--font-display);
  font-style: normal;       /* the artwork's serif is roman, not italic */
  font-weight: 400;
  color: var(--sky-pale);
}
.legal__lede {
  margin: 0 0 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--cloud);
}

.legal__body { font-size: 14.5px; line-height: 1.72; color: rgba(193, 186, 184, .92); }
.legal__body h2 {
  margin: 32px 0 12px;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--white);
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body p { margin: 0 0 14px; }
.legal__body strong { color: var(--white); font-weight: 600; }
.legal__body ul { margin: 0 0 16px; padding-left: 20px; }
.legal__body li { margin: 0 0 7px; }
.legal__body a { color: var(--sky-pale); text-underline-offset: 2px; word-break: break-word; }
.legal__body a:hover { color: var(--white); }

/* Controller / contact disclosure - the legally operative block, so it is
   lifted out of the running text rather than buried in it. */
.controller {
  margin: 22px 0;
  padding: 16px 18px;
  border-left: 2px solid var(--white);
  background: rgba(196, 121, 74, .09);
}
.controller p { margin: 0 0 10px; }
.controller p:last-child { margin-bottom: 0; }
