:root {
  --ink: #061827;
  --navy: #071b2d;
  --blue: #86a8c0;
  --paper: #f4f8fb;
  --white: #ffffff;
  --muted: #647386;
  --line: rgba(7, 27, 45, 0.14);
  --radius: 8px;
  --container: 920px;
  --display: "Newsreader", Georgia, serif;
  --body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  min-width: 320px;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.container {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
}
.legal-header {
  background: var(--navy);
  color: var(--white);
  padding: 26px 0;
}
.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand img {
  width: 156px;
  height: auto;
  display: block;
}
.back-link {
  color: #d4e0ea;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(212, 224, 234, 0.35);
  text-underline-offset: 4px;
}
.legal-main {
  padding: 72px 0;
}
.legal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 52px);
  box-shadow: 0 18px 46px rgba(7, 27, 45, 0.07);
}
.eyebrow {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1, h2 {
  font-family: var(--display);
  color: var(--navy);
  font-weight: 500;
  line-height: 1.04;
}
h1 {
  margin-top: 12px;
  font-size: clamp(2.35rem, 7vw, 4rem);
}
h2 {
  margin-top: 36px;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}
p, li {
  color: var(--muted);
}
p {
  margin-top: 16px;
}
.legal-card p:not(.updated),
.legal-card li {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}
ul {
  margin: 14px 0 0 1.1rem;
}
li + li {
  margin-top: 8px;
}
.updated {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}
.legal-footer {
  padding: 22px 0;
  color: #7f92a5;
  background: #04111d;
  font-size: 0.78rem;
  text-align: center;
}
@media (max-width: 700px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .legal-nav { align-items: flex-start; flex-direction: column; }
  .legal-main { padding: 44px 0; }
}
