:root {
  color-scheme: light;
  --legal-ink: #11141a;
  --legal-muted: #626874;
  --legal-paper: #f4f3ef;
  --legal-blue: #155eef;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--legal-ink);
  background: var(--legal-paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

.legal-shell {
  width: min(100% - 40px, 980px);
  margin-inline: auto;
}

.legal-header {
  background: #0c0e13;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-brand img {
  display: block;
  width: 190px;
  height: auto;
}

.legal-back {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-back:hover,
.legal-back:focus-visible {
  color: #79a7ff;
}

.legal-hero {
  padding: 92px 0 58px;
  border-bottom: 1px solid #d5d4cf;
}

.legal-kicker {
  margin: 0 0 18px;
  color: var(--legal-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(48px, 9vw, 92px);
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.legal-updated {
  margin: 30px 0 0;
  color: var(--legal-muted);
  font-size: 14px;
}

.legal-content {
  padding: 68px 0 100px;
}

.legal-intro {
  max-width: 760px;
  margin: 0 0 56px;
  font-size: clamp(19px, 2.4vw, 25px);
  line-height: 1.45;
}

.legal-content section {
  padding: 30px 0;
  border-top: 1px solid #d5d4cf;
}

.legal-content h2 {
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.legal-content p,
.legal-content ul {
  max-width: 760px;
  margin: 0;
  color: #3d424c;
}

.legal-content p + p,
.legal-content p + ul,
.legal-content ul + p {
  margin-top: 14px;
}

.legal-content ul {
  padding-left: 21px;
}

.legal-content strong {
  color: var(--legal-ink);
}

.legal-content a {
  color: #0e51d8;
  text-underline-offset: 3px;
}

.legal-note {
  padding: 22px 24px;
  background: #e5ecfb;
  border-left: 4px solid var(--legal-blue);
}

.legal-footer {
  color: #a8acb5;
  background: #0c0e13;
}

.legal-footer-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  font-size: 12px;
}

.legal-footer-links {
  display: flex;
  gap: 22px;
}

.legal-footer a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 640px) {
  .legal-shell {
    width: min(100% - 28px, 980px);
  }

  .legal-header-inner {
    min-height: 78px;
  }

  .legal-brand img {
    width: 158px;
  }

  .legal-hero {
    padding: 68px 0 44px;
  }

  .legal-content {
    padding: 48px 0 74px;
  }

  .legal-footer-inner {
    padding: 24px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

