/* LEGAL PAGES — Privacy, Terms, Refund */

.legal-hero {
  padding: clamp(160px, 22vh, 240px) 0 clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.aurora--legal {
  width: 55vw;
  height: 55vw;
  right: -15vw;
  top: -5vw;
  background: radial-gradient(closest-side, rgba(255, 106, 0, 0.28), transparent 70%);
  z-index: -1;
}
.legal-hero__title {
  margin: 24px auto 16px;
  max-width: 18ch;
}
.legal-hero__sub {
  max-width: 52ch;
  margin: 0 auto;
  font-size: clamp(17px, 1.8vw, 19px);
  line-height: 1.65;
  font-weight: 500;
  color: var(--text);
}

.legal-content {
  padding-top: 0;
  padding-bottom: clamp(56px, 8vw, 120px);
}
.legal-prose {
  max-width: min(720px, 100%);
  margin: 0 auto;
  text-align: center;
}
.legal-block {
  padding: clamp(28px, 4vw, 40px) 0;
  border-bottom: 1px solid var(--border);
}
.legal-block:first-child {
  padding-top: 0;
}
.legal-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.legal-block__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 auto 16px;
  max-width: 28ch;
}
.legal-block p {
  font-size: clamp(17px, 1.15vw, 19px);
  font-weight: 500;
  line-height: 1.75;
  color: var(--text);
  margin: 0 auto 14px;
  max-width: 58ch;
}
.legal-block p:last-child {
  margin-bottom: 0;
}
.legal-block ul {
  margin: 0 auto 14px;
  padding-left: 1.35em;
  max-width: 42ch;
  display: inline-block;
  text-align: left;
}
.legal-block li {
  font-size: clamp(17px, 1.15vw, 19px);
  font-weight: 500;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 8px;
}
.legal-block li:last-child {
  margin-bottom: 0;
}
.legal-block a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}
.legal-block a:hover {
  color: var(--accent-bright);
}

@media (min-width: 900px) {
  .legal-block p,
  .legal-block li {
    font-size: 18px;
  }
}
