:root {
  color-scheme: light;
  --page: #f8f7fc;
  --surface: #ffffff;
  --ink: #201c2b;
  --muted: #686276;
  --purple: #7350b7;
  --purple-dark: #55318f;
  --border: #e5e0ee;
  --shadow: 0 24px 70px rgba(53, 36, 80, 0.08);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page);
  color: var(--ink);
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 50% -12rem, rgba(143, 105, 214, 0.13), transparent 35rem),
    var(--page);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--purple-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--purple);
}

a:focus-visible {
  border-radius: 4px;
  outline: 3px solid rgba(115, 80, 183, 0.28);
  outline-offset: 4px;
}

.home-page {
  display: grid;
  place-items: center;
  padding: 32px;
}

.home-shell {
  width: min(100%, 520px);
  padding: 72px 32px;
  text-align: center;
}

.home-shell .brand-mark {
  width: 48px;
  height: 48px;
  margin: 0 auto 22px;
}

.home-shell h1 {
  margin: 0;
  font-size: clamp(2.6rem, 10vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1;
}

.tagline {
  margin: 20px 0 34px;
  color: var(--muted);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.tagline span {
  padding: 0 0.18em;
  color: #a08bbf;
}

.primary-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 30px rgba(53, 36, 80, 0.07);
  font-weight: 600;
  text-decoration: none;
}

.brand-mark {
  display: inline-block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, #eee7ff 0 7%, transparent 8%),
    radial-gradient(circle at 65% 68%, #a883ea 0 18%, transparent 42%),
    linear-gradient(145deg, #d8c6ff 4%, #8e65d4 50%, #573198 100%);
  box-shadow:
    inset -5px -6px 12px rgba(51, 25, 104, 0.23),
    0 5px 16px rgba(94, 56, 157, 0.22);
}

.site-header {
  width: min(100% - 40px, 1080px);
  margin: 0 auto;
  padding: 26px 0 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  text-decoration: none;
}

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

.legal-document {
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(229, 224, 238, 0.9);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.legal-heading {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--purple);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-heading h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.dates {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.legal-document > p {
  font-size: 1.04rem;
}

.legal-document section {
  margin-top: 52px;
  scroll-margin-top: 24px;
}

.legal-document h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.legal-document h3 {
  margin: 32px 0 10px;
  color: #3b3448;
  font-size: 1.03rem;
  line-height: 1.4;
}

.legal-document p,
.legal-document li,
.legal-document address {
  color: #4e485a;
}

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

.legal-document ul {
  margin: 0 0 22px;
  padding-left: 1.35rem;
}

.legal-document li {
  margin: 7px 0;
  padding-left: 0.25rem;
}

.legal-document li::marker {
  color: #a183cf;
}

.legal-document strong {
  color: var(--ink);
  font-weight: 650;
}

.legal-document address {
  font-style: normal;
}

.site-footer {
  width: min(100% - 40px, 880px);
  margin: 0 auto;
  padding: 34px 12px 50px;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.site-footer p {
  margin: 2px 0;
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
    line-height: 1.68;
  }

  .site-header,
  .legal-shell,
  .site-footer {
    width: min(100% - 24px, 880px);
  }

  .site-header {
    padding-top: 18px;
  }

  .legal-document {
    padding: 28px 22px 38px;
    border-radius: 20px;
  }

  .legal-heading {
    padding-bottom: 28px;
  }

  .legal-document section {
    margin-top: 42px;
  }

  .legal-document ul {
    padding-left: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}

@media print {
  body {
    background: #fff;
  }

  .site-header,
  .site-footer {
    display: none;
  }

  .legal-shell {
    width: 100%;
  }

  .legal-document {
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}
