/* Shared styling for the legal pages (privacy, terms).
   Deliberately small: it reuses styles.css for the header, footer, palette
   and type, and only adds what a long-form prose page needs on top. */

.legal {
  padding: 120px 0 90px;
}

.legal .wrap {
  max-width: 760px; /* a readable measure, not the 1160 the marketing grid uses */
}

.legal h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ink);
}

.legal .effective {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-soft);
  margin: 0 0 44px;
}

.legal h2 {
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 44px 0 14px;
  color: var(--ink);
}

.legal p,
.legal li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--grey);
}

.legal p {
  margin: 0 0 16px;
}

.legal ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal li {
  margin-bottom: 9px;
}

.legal a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal strong {
  color: var(--ink);
  font-weight: 700;
}

/* The intro rule under the title, echoing the marketing page's section marks. */
.legal .rule {
  height: 3px;
  width: 56px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--purple), var(--purple-bright));
  margin: 0 0 28px;
}

@media (max-width: 640px) {
  .legal { padding: 96px 0 70px; }
  .legal p, .legal li { font-size: 16px; }
}

/* The horizontal lockup in the header. It carries the wordmark itself, so it
   replaces the old icon-plus-text pairing rather than sitting beside it. */
.brand-logo {
  height: 30px;
  width: auto;
  display: block;
}

@media (max-width: 640px) {
  .brand-logo { height: 26px; }
}
