:root {
  --ink: #2b2530;
  --muted: #625a6c;
  --line: #e4e0e8;
  --yellow: #f8c633;
  --teal: #2a7b74;
  --surface: #ffffff;
  --soft: #f7f6f8;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Nunito, Arial, sans-serif;
  line-height: 1.65;
}

a { color: #344bd2; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
}

.header-inner,
.legal-main,
.footer-inner {
  width: min(100% - 40px, 920px);
  margin: 0 auto;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.back-link {
  font-weight: 700;
  text-decoration: none;
}

.legal-hero {
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.legal-hero .legal-main { padding: 58px 0 48px; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 22ch;
  font-family: "Baloo 2", Nunito, Arial, sans-serif;
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1.08;
}

.intro {
  margin: 18px 0 0;
  max-width: 66ch;
  color: var(--muted);
  font-size: 18px;
}

.legal-content { padding: 48px 0 72px; }

.legal-content section + section {
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0 0 12px;
  font-family: "Baloo 2", Nunito, Arial, sans-serif;
  font-size: clamp(23px, 3vw, 30px);
  line-height: 1.2;
}

p { margin: 0 0 12px; }
ul { margin: 8px 0 0; padding-left: 22px; }
li + li { margin-top: 8px; }
.company-lines { white-space: pre-line; }

.site-footer {
  color: rgba(255, 255, 255, .75);
  background: #403a47;
}

.footer-inner {
  padding: 28px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 24px;
}

.site-footer p { margin: 0; }
.site-footer a { color: #ffffff; }

@media (max-width: 600px) {
  .header-inner,
  .legal-main,
  .footer-inner { width: min(100% - 32px, 920px); }
  .brand span { display: none; }
  .legal-hero .legal-main { padding: 42px 0 36px; }
  .legal-content { padding: 36px 0 56px; }
}
