/* Shared look for the legal pages: the site's type and colours, one column. */
:root { --orange: #ff5e00; --ink: #1f1d2a; --muted: #6f6b7c; --line: rgba(31,29,42,.1);
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, 'Segoe UI', Roboto, Inter, sans-serif; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font); color: var(--ink); background: #fff; -webkit-font-smoothing: antialiased; line-height: 1.6; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(760px, calc(100% - 40px)); margin: 0 auto; }
.nav { background: var(--ink); color: #fff; }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; }
.brand img { border-radius: 8px; }
.back { color: rgba(255,255,255,.8); font-size: 14px; }
.legal { padding: 48px 0 72px; }
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--orange); }
h1 { font-size: clamp(32px, 5vw, 44px); letter-spacing: -.02em; line-height: 1.1; margin: 8px 0 6px; }
.meta { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
h2 { font-size: 20px; letter-spacing: -.01em; margin: 32px 0 8px; }
p, ul { margin-bottom: 14px; font-size: 16px; }
ul { padding-left: 22px; }
li { margin-bottom: 8px; }
.foot { border-top: 1px solid var(--line); padding: 22px 0; color: var(--muted); font-size: 14px; }
.foot .wrap { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; }
.foot a { color: inherit; }
