.legal-page {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(70% 45% at 90% 0%, rgba(139, 47, 201, 0.28), transparent 70%),
    radial-gradient(50% 40% at 0% 40%, rgba(210, 131, 255, 0.14), transparent 65%),
    linear-gradient(175deg, #170a30 0%, #16121f 50%, #100523 100%);
}

.legal-page__glow {
  position: absolute;
  top: -4rem;
  left: 50%;
  width: 28rem;
  height: 12rem;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(171, 81, 227, 0.22), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}

.legal-page__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.legal-page__hero {
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-page__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(210, 131, 255, 0.35);
  background: rgba(171, 81, 227, 0.12);
  font-family: "Aeonik-Medium", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e0b0ff;
}

.legal-page__title {
  margin: 0.9rem 0 0;
  font-family: "Aeonik-Medium", sans-serif;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
}

.legal-page__updated {
  margin: 0.9rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.legal-page__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-page__section {
  padding: clamp(1.25rem, 3vw, 1.6rem);
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(22, 18, 31, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.legal-page__section h2 {
  margin: 0 0 0.85rem;
  font-family: "Aeonik-Medium", sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  letter-spacing: -0.015em;
  color: #fff;
}

.legal-page__section h3 {
  margin: 1rem 0 0.55rem;
  font-family: "Aeonik-Medium", sans-serif;
  font-size: 0.95rem;
  color: #e0b0ff;
}

.legal-page__section p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.legal-page__section p:last-child {
  margin-bottom: 0;
}

.legal-page__section ul {
  margin: 0 0 0.75rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.legal-page__section ul:last-child {
  margin-bottom: 0;
}

.legal-page__section li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  list-style: none;
}

.legal-page__section li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: linear-gradient(140deg, #d283ff, #ab51e3);
  box-shadow: 0 0 0 3px rgba(171, 81, 227, 0.16);
}

.legal-page__section a {
  color: #e0b0ff;
  text-decoration: none;
  font-family: "Aeonik-Medium", sans-serif;
  border-bottom: 1px solid rgba(210, 131, 255, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.legal-page__section a:hover {
  color: #fff;
  border-bottom-color: rgba(224, 176, 255, 0.8);
}

.legal-page__contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.legal-page__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.legal-page__chip:hover {
  transform: translateY(-2px);
  background: rgba(171, 81, 227, 0.2);
  border-color: rgba(210, 131, 255, 0.45);
  color: #fff;
}

@media (max-width: 575px) {
  .legal-page__inner {
    width: calc(100% - 1.25rem);
    padding-top: 1.5rem;
  }

  .legal-page__section {
    padding: 1.1rem;
  }
}
