@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600&display=swap');

:root {
  font-family: 'Manrope', sans-serif;
  color: #0c0e0c;
  background: #f2f0e9;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background-color: #f2f0e9;
  background-image: linear-gradient(rgba(12,14,12,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(12,14,12,.035) 1px, transparent 1px);
  background-size: 48px 48px;
}
a { color: inherit; text-decoration: none; }

.legal-header {
  height: 92px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(12,14,12,.13);
  background: rgba(242,240,233,.88);
  backdrop-filter: blur(16px);
}
.legal-header img { display: block; width: 126px; height: auto; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.back-link::before { content: '\2190'; color: #5e5cff; font-size: 17px; }

.legal-shell {
  width: min(1160px, 90vw);
  margin: 0 auto;
  padding: 105px 0 130px;
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: clamp(60px, 9vw, 150px);
}
.legal-intro { position: sticky; top: 54px; align-self: start; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 27px;
  font-family: 'DM Mono', monospace;
  color: #5e5cff;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 25px; height: 2px; background: #5e5cff; }
h1 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(62px, 7vw, 104px);
  font-weight: 500;
  line-height: .87;
  letter-spacing: -.065em;
}
.updated {
  margin-top: 32px;
  font-family: 'DM Mono', monospace;
  color: #6c7067;
  font-size: 9px;
  line-height: 1.7;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.legal-copy { counter-reset: section; }
.legal-copy > p:first-child {
  margin: 0 0 55px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.25;
  letter-spacing: -.03em;
}
.legal-copy section {
  counter-increment: section;
  padding: 35px 0 38px;
  border-top: 1px solid rgba(12,14,12,.14);
}
.legal-copy h2 {
  margin: 0 0 19px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -.035em;
}
.legal-copy h2::before {
  content: counter(section, decimal-leading-zero) ' / ';
  margin-right: 8px;
  font-family: 'DM Mono', monospace;
  color: #5e5cff;
  font-size: 9px;
  letter-spacing: .1em;
  vertical-align: middle;
}
.legal-copy p, .legal-copy li { color: #555950; font-size: 13px; line-height: 1.85; }
.legal-copy ul { padding-left: 20px; }
.legal-copy li + li { margin-top: 8px; }
.legal-copy strong { color: #0c0e0c; }
.legal-copy a { color: #4d4bd6; text-decoration: underline; text-underline-offset: 3px; }

.legal-footer {
  min-height: 150px;
  padding: 40px 5vw;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  color: #f2f0e9;
  background: #11130f;
}
.legal-footer p { margin: 0; font-family: 'DM Mono', monospace; color: #858880; font-size: 8px; line-height: 1.8; letter-spacing: .1em; }
.legal-links { display: flex; gap: 24px; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 760px) {
  .legal-header { height: 74px; }
  .legal-header img { width: 110px; }
  .legal-shell { padding: 75px 0 90px; grid-template-columns: 1fr; gap: 65px; }
  .legal-intro { position: static; }
  .legal-footer { grid-template-columns: 1fr; }
}
