.legal-page {
  background: var(--utl-paper, #f7f8f8);
  color: var(--utl-ink, #121c2b);
}

.legal-hero {
  background: var(--utl-purple-deep, #17133d);
  color: var(--utl-paper, #f7f8f8);
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 6.5rem);
}

.legal-hero .eyebrow {
  color: var(--utl-green, #b8ff3d);
}

.legal-hero h1 {
  max-width: 58rem;
  margin: 1rem 0 0;
  font-family: var(--heading-font-family, "Poppins", sans-serif);
  font-size: clamp(2.75rem, 7vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .96;
}

.legal-hero p {
  max-width: 36rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-content-section {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.legal-content {
  max-width: 54rem;
  margin: 0 auto;
  color: var(--utl-slate, #445064);
  font-size: 1rem;
  line-height: 1.8;
}

.legal-content h2 {
  margin: 3.25rem 0 1rem;
  color: var(--utl-ink, #121c2b);
  font-family: var(--heading-font-family, "Poppins", sans-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 1.25rem;
}

.legal-content ul {
  margin: 0 0 1.5rem;
  padding-left: 1.4rem;
}

.legal-content li {
  margin-bottom: .5rem;
  padding-left: .35rem;
}

.legal-content a {
  color: var(--utl-purple, #6d35ff);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--utl-ink, #121c2b);
}

.legal-content strong {
  color: var(--utl-ink, #121c2b);
  font-weight: 600;
}

.legal-table-wrap {
  width: 100%;
  margin: 1.5rem 0 2rem;
  overflow-x: auto;
  border: 1px solid var(--utl-border, #d9dee6);
  background: #fff;
}

.legal-content table {
  width: 100%;
  min-width: 44rem;
  border-collapse: collapse;
  font-size: .9rem;
  line-height: 1.55;
}

.legal-content th,
.legal-content td {
  border-bottom: 1px solid var(--utl-border, #d9dee6);
  padding: .9rem 1rem;
  text-align: left;
  vertical-align: top;
}

.legal-content th {
  background: var(--utl-mist, #eef1f5);
  color: var(--utl-ink, #121c2b);
  font-weight: 600;
}

.legal-content tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 767px) {
  .legal-content {
    font-size: .95rem;
  }

  .legal-table-wrap {
    margin-right: -1.25rem;
    width: calc(100% + 2.5rem);
    border-right: 0;
    border-left: 0;
  }
}