@font-face {
  font-family: 'Chillax';
  src: url('../fonts/Chillax.ttf') format('truetype');
  font-weight: 200 700;
  font-display: swap;
}

:root {
  --blue: #3370FF;
  --orange: #FF7A3C;
  --yellow: #FFDB6F;
  --dark: #231F20;
  --dark2: #444041;
  --mid: #635f60;
  --light-mid: #a19b9d;
  --bg: #F5F6F9;
  --white: #ffffff;
  --chillax: 'Chillax', -apple-system, sans-serif;
  --body: 'DM Sans', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  min-height: 100vh;
}

::selection { background: rgba(51, 112, 255, 0.18); }

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}

.blob-1 {
  width: 600px; height: 600px;
  background: var(--blue);
  top: -10%; right: -5%;
}
.blob-2 {
  width: 500px; height: 500px;
  background: var(--orange);
  bottom: -10%; left: -8%;
}
.blob-3 {
  width: 450px; height: 450px;
  background: var(--yellow);
  top: 40%; left: 50%;
  transform: translateX(-50%);
}

.shell {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 24px 80px;
}

.legal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 48px;
}

.wordmark {
  font-family: var(--chillax);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--dark);
  text-decoration: none;
}

.legal-nav {
  display: flex;
  gap: 20px;
}

.legal-nav a {
  font-size: 13px;
  color: var(--mid);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  color: var(--dark);
}

.legal-nav a[aria-current="page"] {
  font-weight: 500;
}

.kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

h1 {
  font-family: var(--chillax);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.meta {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 40px;
}

.legal-body h2 {
  font-family: var(--chillax);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 40px 0 14px;
  scroll-margin-top: 24px;
}

.legal-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 28px 0 10px;
}

.legal-body p,
.legal-body li {
  font-size: 15px;
  color: var(--dark2);
}

.legal-body p { margin-bottom: 14px; }

.legal-body a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(51, 112, 255, 0.25);
}

.legal-body a:hover { border-bottom-color: var(--blue); }

.legal-body ul,
.legal-body ol {
  margin: 0 0 16px 1.25em;
}

.legal-body li { margin-bottom: 8px; }
.legal-body li ul,
.legal-body li ol { margin-top: 8px; margin-bottom: 0; }

.legal-body blockquote {
  margin: 16px 0 20px;
  padding: 14px 18px;
  background: rgba(51, 112, 255, 0.06);
  border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0;
}

.legal-body blockquote p { margin: 0; color: var(--dark); font-weight: 500; }

.legal-body hr {
  border: 0;
  border-top: 1px solid rgba(35, 31, 32, 0.08);
  margin: 32px 0;
}

.legal-body strong { color: var(--dark); font-weight: 600; }

.table-wrap {
  overflow-x: auto;
  margin: 0 0 20px;
  border: 1px solid rgba(35, 31, 32, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th, td {
  text-align: left;
  vertical-align: top;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(35, 31, 32, 0.06);
}

th {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mid);
  background: rgba(255, 255, 255, 0.4);
}

tr:last-child td { border-bottom: 0; }

.page-footer {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid rgba(35, 31, 32, 0.08);
  text-align: center;
}

.page-footer a,
.page-footer span {
  font-size: 11px;
  color: rgba(99, 95, 96, 0.85);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.page-footer a:hover { color: var(--dark2); }
.page-footer .sep { margin: 0 8px; color: rgba(161, 155, 157, 0.4); }

@media (max-width: 600px) {
  .shell { padding: 20px 18px 64px; }
  .legal-top { margin-bottom: 36px; }
  .blob-1, .blob-2, .blob-3 { opacity: 0.1; }
}
