:root {
  --color-bg1: black;
  --color-bg2: #070707;
  --color1: 18, 113, 255;
  --color2: 221, 74, 255;
  --color3: 100, 220, 255;
  --color4: 200, 50, 50;
  --color5: 61, 158, 255;
  --color-interactive: 140, 100, 255;
  --circle-size: 100%;
  --blending: hard-light;
}

@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes moveVertical {
  0% {
    transform: translate3d(0, -50%, 0);
  }
  50% {
    transform: translate3d(0, 50%, 0);
  }
  100% {
    transform: translate3d(0, -50%, 0);
  }
}
@keyframes moveHorizontal {
  0% {
    transform: translate3d(-50%, -10%, 0);
  }
  50% {
    transform: translate3d(50%, 10%, 0);
  }
  100% {
    transform: translate3d(-50%, -10%, 0);
  }
}
html {
  min-height: 100%;
  background: #000000;
}

body.legalPage {
  min-height: 100vh;
  margin: 0;
  color: #FFF;
  background: linear-gradient(180deg, rgba(24, 41, 57, 0.42), transparent 360px), #000000;
  font-family: "primary";
  letter-spacing: 0;
}

.legalPage * {
  box-sizing: border-box;
}

.legalPage a {
  color: inherit;
}

.legalShell {
  width: min(1120px, 100% - 48px);
  margin: 0 auto;
  padding: 26px 0 56px;
}

.legalTopbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.legalBrand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #FFF;
  text-decoration: none;
}

.legalBrand img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.legalBrand span {
  min-width: 0;
  overflow: hidden;
  color: #FFF;
  font-family: "Vardon";
  font-size: 34px;
  line-height: 1;
  letter-spacing: 18px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.legalNav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.legalNav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 11px 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(0, 0, 0, 0.2);
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.legalNav a:hover,
.legalNav a:focus-visible,
.legalNav a[aria-current=page] {
  color: #FFF;
  border-color: rgba(61, 158, 255, 0.82);
  background: rgba(24, 41, 57, 0.62);
}

.legalIntro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 36px;
  align-items: end;
  padding: 76px 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.legalEyebrow {
  margin: 0 0 13px;
  color: #FFA8CD;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.legalIntro h1 {
  max-width: 760px;
  margin: 0;
  color: #FFF;
  font-size: 54px;
  font-weight: normal;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.legalIntro p {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(229, 229, 229, 0.76);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

.legalMeta {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.legalMeta div {
  min-width: 0;
  padding: 15px 0 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.legalMeta div:first-child {
  border-top: 0;
}

.legalMeta dt {
  color: rgba(229, 229, 229, 0.54);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.legalMeta dd {
  margin: 8px 0 0;
  color: #FFF;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0;
}

.legalBody {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  padding-top: 42px;
}

.legalToc {
  position: sticky;
  top: 22px;
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(31, 31, 31, 0.46);
}

.legalTocTitle {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.legalToc a {
  color: rgba(229, 229, 229, 0.72);
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0;
  text-decoration: none;
}

.legalToc a:hover,
.legalToc a:focus-visible {
  color: #FFF;
}

.legalDocument {
  min-width: 0;
}

.legalDocument section {
  min-width: 0;
  padding: 0 0 34px;
  margin: 0 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legalDocument section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.legalDocument h2 {
  margin: 0;
  color: #FFF;
  font-size: 28px;
  font-weight: normal;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.legalDocument h3 {
  margin: 24px 0 0;
  color: #FFF;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0;
}

.legalDocument p,
.legalDocument li {
  color: rgba(229, 229, 229, 0.78);
  font-size: 14px;
  line-height: 1.68;
  letter-spacing: 0;
}

.legalDocument p {
  margin: 14px 0 0;
}

.legalDocument ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.legalDocument li {
  position: relative;
  padding-left: 18px;
}

.legalDocument li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(61, 158, 255, 0.14);
}

.legalDocument strong {
  color: #FFF;
  font-weight: bold;
}

.legalNotice {
  margin-top: 18px;
  padding: 15px 16px 14px;
  border: 1px solid rgba(255, 168, 205, 0.28);
  border-radius: 8px;
  color: rgba(229, 229, 229, 0.82);
  background: rgba(255, 168, 205, 0.08);
  font-size: 13px;
  line-height: 1.55;
}

.legalDataList {
  display: grid;
  grid-template-columns: minmax(150px, 0.36fr) minmax(0, 1fr);
  gap: 0;
  margin: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.legalDataList div {
  display: grid;
  grid-column: 1/-1;
  grid-template-columns: minmax(150px, 0.36fr) minmax(0, 1fr);
  min-width: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.legalDataList dt,
.legalDataList dd {
  min-width: 0;
  margin: 0;
  padding: 14px 16px 13px 0;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0;
}

.legalDataList dt {
  color: #FFF;
}

.legalDataList dd {
  color: rgba(229, 229, 229, 0.76);
}

.legalFooter {
  display: grid;
  gap: 18px;
  margin-top: 52px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  line-height: 1.4;
}

.legalFooter nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.legalFooter nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 8px 10px 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.66);
  background: rgba(31, 31, 31, 0.42);
  text-decoration: none;
}

.legalFooter nav a:hover,
.legalFooter nav a:focus-visible,
.legalFooter nav a[aria-current=page] {
  color: #FFF;
  border-color: rgba(61, 158, 255, 0.82);
  background: rgba(24, 41, 57, 0.62);
}

.legalFooter p {
  margin: 0;
}

@media (max-width: 900px) {
  .legalIntro {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }
  .legalMeta {
    max-width: 360px;
  }
  .legalBody {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .legalToc {
    position: static;
  }
}
@media (max-width: 640px) {
  .legalShell {
    width: min(100% - 28px, 1120px);
    padding-top: 16px;
  }
  .legalTopbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .legalBrand img {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
  .legalBrand span {
    font-size: 27px;
  }
  .legalNav {
    justify-content: flex-start;
  }
  .legalIntro {
    padding: 42px 0 28px;
  }
  .legalIntro h1 {
    font-size: 36px;
  }
  .legalIntro p {
    font-size: 14px;
  }
  .legalDocument h2 {
    font-size: 23px;
  }
  .legalDataList,
  .legalDataList div {
    display: block;
  }
  .legalDataList dt,
  .legalDataList dd {
    padding-right: 0;
  }
  .legalDataList dd {
    padding-top: 0;
  }
  .legalFooter nav {
    justify-content: flex-start;
  }
}
