:root {
  color-scheme: dark;
  font-family: "Inter", system-ui, sans-serif;
  color: #f5f5f5;
  background: #070707;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --page-gutter: clamp(22px, 5vw, 72px);
  --muted: #a3a3a3;
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(255, 255, 255, 0.045);
}

* {
  box-sizing: border-box;
}

html {
  background: #070707;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 255, 255, 0.055), transparent 28rem),
    #070707;
  color: #f5f5f5;
}

a {
  color: inherit;
}

.legal-shell {
  min-height: 100vh;
}

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px var(--page-gutter);
  border-bottom: 1px solid var(--line);
}

.site-title {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.launch-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.launch-button:hover,
.launch-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.07);
}

.legal-document {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: clamp(68px, 9vw, 112px) var(--page-gutter) clamp(84px, 10vw, 132px);
}

.draft-label {
  margin: 0 0 15px;
  color: #bdbdbd;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Manrope", sans-serif;
  color: #fff;
  letter-spacing: -0.035em;
}

h1 {
  margin: 0;
  font-size: clamp(2.45rem, 8vw, 4.4rem);
  line-height: 0.98;
}

.draft-notice {
  margin: 32px 0 46px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  color: #cfcfcf;
  font-size: 0.88rem;
}

.legal-document section {
  margin-top: 42px;
}

.legal-document h2 {
  margin: 0 0 13px;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  line-height: 1.25;
}

.legal-document h3 {
  margin: 25px 0 8px;
  color: #f2f2f2;
  font-size: 0.95rem;
}

.legal-document p,
.legal-document li {
  color: #b8b8b8;
  font-size: 0.97rem;
  line-height: 1.78;
}

.legal-document p {
  margin: 0 0 14px;
}

.legal-document ul {
  margin: 14px 0 0;
  padding-left: 21px;
}

.legal-document li + li {
  margin-top: 8px;
}

.legal-document strong {
  color: #ececec;
}

.inline-link {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 3px;
}

.inline-link:hover,
.inline-link:focus-visible {
  text-decoration-color: #fff;
}

.page-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 38px var(--page-gutter) 44px;
  border-top: 1px solid var(--line);
}

.footer-titleblock strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
}

.footer-titleblock p {
  margin: 7px 0 0;
  color: #777;
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer-links a {
  color: #8c8c8c;
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links a[aria-current="page"] {
  color: #fff;
}

@media (max-width: 640px) {
  .legal-nav {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .legal-document {
    padding-top: 54px;
  }

  .page-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
