/* Shared policy typography and footer; also supports direct, script-free policy URLs. */
.legal-standalone {
  margin: 0;
  background: #101c19;
  color: #eef2df;
  color-scheme: dark;
  font-family: 'DM Sans Variable', system-ui, sans-serif;
}
.legal-standalone * {
  box-sizing: border-box;
}
.legal-standalone a {
  color: inherit;
  text-decoration: none;
}
.legal-standalone > header {
  height: 68px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #adc0a526;
}
.legal-standalone .brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1.7px;
}
.legal-standalone .brand-icon {
  display: flex;
  gap: 4px;
  transform: rotate(-10deg);
}
.legal-standalone .brand-icon i {
  width: 16px;
  height: 23px;
  background: #d2f865;
  border-radius: 50%;
}
.legal-standalone .play {
  padding: 10px 16px;
  border-radius: 7px;
  background: #26372d;
  color: #d2f865;
  font-size: 12px;
  font-weight: 600;
}
.legal-standalone > main {
  width: min(100% - 48px, 760px);
  margin: 48px auto 64px;
}
.legal-document {
  color: #d3deca;
}
.legal-document .date {
  color: #9cab9e;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.legal-document h1 {
  color: #eef2df;
  font-family: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  margin: 16px 0;
}
.legal-document .lede {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 32px;
  color: #a9baa1;
}
.legal-document section {
  border-top: 1px solid #adc0a526;
  padding-top: 24px;
  margin-top: 28px;
}
.legal-document h2 {
  color: #e2ead5;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin: 0 0 12px;
}
.legal-document p {
  font-size: 14px;
  line-height: 1.85;
  margin: 12px 0;
}
.legal-document a {
  color: #c5df9c;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.site-footer,
#app .site-footer {
  box-sizing: border-box;
  width: 100%;
  max-width: 1600px;
  min-height: 44px;
  height: auto;
  margin: auto auto 0;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #9cab9e;
  font-family: 'DM Sans Variable', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
}
.site-footer nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
  padding: 10px 0;
}
.site-footer a:hover,
.legal-document a:hover {
  color: #d2f865;
}
.site-footer a[aria-current='page'] {
  color: #d2f865;
}
.site-footer > span {
  color: #7d9180;
  font-size: 10px;
}
.legal-standalone a:focus-visible {
  outline: 2px solid #d2f865;
  outline-offset: 4px;
}
@media (max-width: 760px) {
  .site-footer,
  #app .site-footer {
    padding: 0 16px;
  }
  .site-footer nav {
    gap: 20px;
  }
  .site-footer > span,
  #app .site-footer > span {
    display: none;
  }
  .legal-standalone > header {
    height: 58px;
    padding: 0 16px;
  }
  .legal-standalone > main {
    margin-top: 32px;
  }
}
