:root {
  color-scheme: light;
  --ink: #171912;
  --muted: #62655b;
  --line: #dedfd8;
  --paper: #f7f7f3;
  --accent: #d8ff56;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(22px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.legal-brand { display: flex; flex-direction: column; font-size: 22px; font-weight: 900; line-height: 1; letter-spacing: 0; text-decoration: none; }
.legal-wordmark { font-weight: 800; letter-spacing: -.03em; }
.legal-wordmark span { color: #6b7f5e; }
.legal-brand small { margin-top: 3px; color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.legal-header nav { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: 14px; }
.legal-main { width: min(820px, calc(100% - 40px)); margin: 64px auto 90px; }
.legal-kicker { display: inline-block; margin-bottom: 10px; font-size: 12px; font-weight: 800; letter-spacing: .14em; }
h1 { margin: 0; font-family: Manrope, sans-serif; font-size: clamp(38px, 7vw, 64px); line-height: 1.02; letter-spacing: -.05em; }
.legal-updated { margin: 18px 0 42px; color: var(--muted); }
.legal-summary { padding: 22px 24px; border: 1px solid var(--ink); border-radius: 14px; background: var(--accent); font-weight: 600; }
.legal-section { padding: 28px 0; border-bottom: 1px solid var(--line); }
.legal-section h2 { margin: 0 0 10px; font-family: Manrope, sans-serif; font-size: 24px; letter-spacing: -.02em; }
.legal-section p, .legal-section ul { margin: 10px 0 0; }
.legal-section li + li { margin-top: 7px; }
.legal-footer { display: flex; flex-wrap: wrap; gap: 16px; padding-top: 32px; color: var(--muted); font-size: 14px; }
@media (max-width: 620px) {
  .legal-header { align-items: flex-start; flex-direction: column; }
  .legal-main { margin-top: 42px; }
}
