* { box-sizing: border-box; }
html.is-resetting-scroll { scroll-behavior: auto !important; }
body { -webkit-font-smoothing: antialiased; }
html.is-loading body { overflow: hidden; }
.site-preloader {
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #fff;
  transition: opacity .35s ease, visibility .35s ease;
}
.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-preloader__card {
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-preloader__spinner {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(237,107,45,.16);
  border-top-color: #ED6B2D;
  border-radius: 999px;
  animation: spin .8s linear infinite;
}
.site-preloader__logo {
  height: 34px;
  width: auto;
}
.legal-shell {
  background: #F7F8F8;
}
.legal-card {
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: 0 24px 70px rgba(15,27,36,.06), inset 0 1px 0 rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.legal-copy h2 {
  margin-top: 2rem;
  font-family: 'League Spartan', sans-serif;
  font-size: 1.8rem;
  line-height: 1.05;
  color: #0F1B24;
}
.legal-copy p, .legal-copy li {
  color: #536068;
  font-size: 15px;
  line-height: 1.9;
}
.legal-copy ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
}
.legal-copy a {
  color: #ED6B2D;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@media (max-width: 639px) {
  .legal-card { border-radius: 28px !important; }
}
