:root {
  color-scheme: dark;
  --bg: #030607;
  --ink: #f8fbff;
  --muted: rgba(248, 251, 255, 0.72);
  --soft: rgba(248, 251, 255, 0.5);
  --cyan: #87e9ff;
  --blue: #78b6ff;
  --lime: #eaff8e;
  --panel: rgba(5, 12, 16, 0.86);
  --line: rgba(255, 255, 255, 0.14);
  --shadow: rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100svh;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

.legal-landing-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-bottom: 72px;
  isolation: isolate;
}

.legal-landing-bg,
.legal-landing-bg img {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

.legal-landing-bg {
  z-index: -3;
}

.legal-landing-bg img {
  object-fit: cover;
  object-position: 62% 42%;
  opacity: 0.42;
  transform: scale(1.02);
}

.legal-landing-vignette {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.72) 40%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.52) 46%, rgba(0, 0, 0, 0.94) 100%);
}

.legal-landing-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 26px clamp(20px, 5vw, 72px);
}

.legal-landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.legal-landing-brand img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
}

.legal-landing-back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 760;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.legal-landing-hero {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  margin: 34px auto 0;
  padding: 0 clamp(20px, 5vw, 72px);
}

.legal-landing-kicker {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 820;
  text-transform: uppercase;
}

.legal-landing-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.legal-landing-updated {
  margin: 18px 0 0;
  color: var(--soft);
  font-size: 15px;
  font-weight: 680;
}

.legal-landing-document {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 980px);
  margin: 34px auto 0;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 30px 100px var(--shadow);
  backdrop-filter: blur(18px);
}

.legal-landing-document h1,
.legal-landing-document h2,
.legal-landing-document h3 {
  color: var(--ink);
  line-height: 1.32;
  letter-spacing: 0;
}

.legal-landing-document h1 {
  margin: 0 0 20px;
  font-size: clamp(30px, 4vw, 42px);
}

.legal-landing-document h2 {
  margin: 34px 0 12px;
  font-size: 22px;
}

.legal-landing-document h3 {
  margin: 28px 0 10px;
  font-size: 18px;
}

.legal-landing-document p,
.legal-landing-document li {
  color: rgba(248, 251, 255, 0.78);
  font-size: 16px;
  line-height: 1.86;
}

.legal-landing-document p {
  margin: 0 0 16px;
}

.legal-landing-document ul,
.legal-landing-document ol {
  margin: 0 0 18px;
  padding-left: 1.4em;
}

.legal-landing-document a {
  color: var(--cyan);
  text-decoration-color: rgba(135, 233, 255, 0.42);
  text-underline-offset: 4px;
}

.legal-landing-document table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  overflow: hidden;
  border-radius: 8px;
}

.legal-landing-document th,
.legal-landing-document td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  color: rgba(248, 251, 255, 0.78);
  text-align: left;
  vertical-align: top;
}

.legal-landing-document th {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 760px) {
  .legal-landing-shell {
    padding-bottom: 42px;
  }

  .legal-landing-bg img {
    object-position: center top;
    opacity: 0.52;
  }

  .legal-landing-topbar {
    padding: 22px 20px;
    gap: 16px;
  }

  .legal-landing-brand {
    gap: 10px;
    font-size: 24px;
  }

  .legal-landing-brand img {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .legal-landing-back {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .legal-landing-hero {
    margin-top: 26px;
  }

  .legal-landing-hero h1 {
    font-size: 46px;
  }

  .legal-landing-document {
    width: calc(100% - 28px);
    margin-top: 28px;
    padding: 26px 22px 32px;
  }

  .legal-landing-document h1 {
    font-size: 30px;
  }

  .legal-landing-document h2 {
    font-size: 20px;
  }

  .legal-landing-document p,
  .legal-landing-document li {
    font-size: 15px;
  }
}
