:root {
  --ink: #121513;
  --paper: #f2f0e9;
  --acid: #d9ff43;
  --muted: #686d68;
  --line: rgba(18, 21, 19, 0.14);
  --sans: "Manrope", sans-serif;
  --serif: "Newsreader", serif;
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); }
a { color: inherit; text-decoration: none; }

.legal-header {
  width: min(1180px, calc(100% - 40px));
  height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 8px; font-size: 19px; font-weight: 700; letter-spacing: -.04em; }
.brand-logo { width: 28px; height: 28px; display: block; border-radius: 8px; box-shadow: 0 4px 14px rgba(0,0,0,.09); }
.brand-wordmark { width: 128px; height: auto; display: block; }
.brand-mark { width: 25px; height: 25px; display: inline-flex; align-items: flex-end; justify-content: center; gap: 2px; }
.brand-mark i { width: 5px; border-radius: 5px; background: currentColor; display: block; }
.brand-mark i:nth-child(1) { height: 9px; transform: rotate(-27deg); transform-origin: bottom; }
.brand-mark i:nth-child(2) { height: 20px; }
.brand-mark i:nth-child(3) { height: 13px; transform: rotate(25deg); transform-origin: bottom; }
.back-home { display: inline-flex; align-items: center; gap: 8px; padding: 11px 15px; border: 1px solid var(--line); border-radius: 99px; font-size: 12px; font-weight: 650; transition: background .2s; }
.back-home:hover { background: white; }

.legal-hero { width: min(1180px, calc(100% - 40px)); margin: auto; padding: 105px 0 80px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 7vw; border-bottom: 1px solid var(--line); }
.legal-kicker { font: 500 10px var(--mono); letter-spacing: .13em; text-transform: uppercase; }
.legal-hero h1 { max-width: 780px; margin: 0; font-size: clamp(52px, 6.2vw, 86px); line-height: .9; letter-spacing: -.065em; font-weight: 500; }
.legal-hero h1 > span, .legal-hero h1 em { display: block; white-space: nowrap; }
.legal-hero h1 em { font-family: var(--serif); font-weight: 400; }
.legal-meta { align-self: end; color: var(--muted); font: 10px/1.6 var(--mono); text-transform: uppercase; letter-spacing: .06em; }

.legal-layout { width: min(1180px, calc(100% - 40px)); margin: auto; padding: 80px 0 120px; display: grid; grid-template-columns: 250px 1fr; gap: 8vw; align-items: start; }
.legal-nav { position: sticky; top: 30px; display: grid; gap: 4px; }
.legal-nav p { margin: 0 0 13px; font: 500 9px var(--mono); letter-spacing: .12em; color: var(--muted); }
.legal-nav a { padding: 9px 0; font-size: 12px; color: var(--muted); transition: color .2s, transform .2s; }
.legal-nav a:hover { color: var(--ink); transform: translateX(4px); }
.legal-copy { max-width: 760px; }
.legal-copy .intro { margin: 0 0 65px; font-size: clamp(20px, 2.3vw, 31px); line-height: 1.42; letter-spacing: -.035em; color: #373c38; }
.legal-copy section { padding: 0 0 42px; margin: 0 0 42px; border-bottom: 1px solid var(--line); }
.legal-copy h2 { margin: 0 0 18px; font-size: 23px; letter-spacing: -.035em; }
.legal-copy p, .legal-copy li { color: var(--muted); font-size: 14px; line-height: 1.78; }
.legal-copy ul { padding-left: 20px; }
.legal-copy strong { color: var(--ink); }
.notice { padding: 18px 20px; border-left: 3px solid var(--acid); background: rgba(255,255,255,.55); }

.legal-footer { min-height: 120px; padding: 35px max(20px, calc((100vw - 1180px) / 2)); background: var(--ink); color: white; display: flex; align-items: center; justify-content: space-between; gap: 25px; font-size: 11px; }
.legal-footer div { display: flex; gap: 22px; color: rgba(255,255,255,.6); }
.legal-footer a:hover { color: white; }

@media (max-width: 760px) {
  .legal-hero { grid-template-columns: 1fr; padding: 75px 0 55px; }
  .legal-layout { grid-template-columns: 1fr; padding-top: 55px; }
  .legal-nav { position: static; grid-template-columns: repeat(2, 1fr); padding-bottom: 25px; border-bottom: 1px solid var(--line); }
  .legal-nav p { grid-column: 1 / -1; }
  .legal-footer { align-items: flex-start; flex-direction: column; }
  .legal-hero h1 { font-size: clamp(46px, 13vw, 70px); }
  .legal-hero h1 > span, .legal-hero h1 em { white-space: normal; }
}
