* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7fafc;
  --ink: #101828;
  --muted: #58677a;
  --line: #d9e2ec;
  --panel: #ffffff;
  --cyan: #0fbfc0;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.legal-shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 36px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: var(--cyan);
  color: #00151a;
  font-weight: 1000;
}

.back-link {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 750;
}

.legal-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 54px);
  box-shadow: 0 20px 60px rgba(16, 24, 40, 0.06);
}

.eyebrow {
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

h1 {
  margin: 10px 0 10px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.updated {
  margin: 0 0 32px;
  color: var(--muted);
}

h2 {
  margin: 32px 0 10px;
  font-size: 22px;
}

p,
li {
  color: var(--muted);
  line-height: 1.65;
}

ul {
  padding-left: 22px;
}

.notice {
  margin-top: 28px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f2fbfb;
}

@media (max-width: 640px) {
  .legal-nav {
    align-items: flex-start;
    flex-direction: column;
  }
}
