@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-variable.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --paper: #fff;
  --ink: #000;
  --muted-paper: #6f6f6f;
  --muted-ink: #a6a6a6;
  --rule-paper: rgba(0, 0, 0, 0.16);
  --rule-ink: rgba(255, 255, 255, 0.22);
  --nav-h: 64px;
  --foot-h: 58px;
  --gutter: clamp(22px, 5vw, 80px);
  --maxw: 1280px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --chrome: #fff;
  color-scheme: light dark;
  font-synthesis-weight: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ink);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body[data-theme="dark"] {
  --chrome: #fff;
}

body[data-theme="light"] {
  --chrome: #000;
}

body.is-grabbing {
  cursor: grabbing;
}

.legal-root,
.legal-root body {
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: auto;
  background: #fff;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: #000;
  color: #fff;
}

.skip-link {
  position: fixed;
  left: var(--gutter);
  top: 10px;
  z-index: 200;
  transform: translateY(-140%);
  background: #fff;
  color: #000;
  border: 1px solid #000;
  padding: 10px 14px;
  font-size: .78rem;
  font-weight: 700;
}

.skip-link:focus {
  transform: none;
}

.deck {
  position: fixed;
  inset: 0;
  height: 100svh;
  overflow: hidden;
  touch-action: pan-y;
}

.track {
  display: flex;
  height: 100%;
  will-change: transform;
  transition: transform .68s cubic-bezier(.7, 0, .2, 1);
}

.slide {
  flex: 0 0 100vw;
  width: 100vw;
  height: 100%;
  padding: calc(var(--nav-h) + clamp(20px, 4.5vh, 52px)) var(--gutter) calc(var(--foot-h) + clamp(18px, 3.5vh, 44px));
  display: flex;
  overflow: hidden;
}

.slide--dark {
  background: var(--ink);
  color: #fff;
}

.slide--light {
  background: var(--paper);
  color: var(--ink);
}

.wrap {
  margin: auto;
  width: 100%;
  max-width: var(--maxw);
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 var(--gutter);
  color: var(--chrome);
  transition: color .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}

.nav__logo {
  position: relative;
  height: 24px;
  min-width: 102px;
}

.nav__logo a,
.nav__logo img {
  display: block;
  height: 100%;
}

.nav__logo img {
  width: auto;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity .4s var(--ease);
}

.nav__logo .spacer {
  position: static;
  visibility: hidden;
  opacity: 0;
}

body[data-theme="dark"] .logo-black {
  opacity: 0;
}

body[data-theme="dark"] .logo-white {
  opacity: 1;
}

body[data-theme="light"] .logo-black {
  opacity: 1;
}

body[data-theme="light"] .logo-white {
  opacity: 0;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 34px);
}

.nav__links,
.lang-switch {
  display: flex;
  align-items: center;
}

.nav__links {
  gap: clamp(16px, 2.2vw, 30px);
}

.nav__links a,
.lang-switch a,
.lang-switch span {
  font-size: .76rem;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .82;
}

.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: opacity .3s var(--ease);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .36s var(--ease);
}

.nav__links a:hover,
.nav__links a:focus-visible,
.lang-switch a:hover,
.lang-switch a:focus-visible {
  opacity: 1;
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  transform: scaleX(1);
}

.lang-switch {
  gap: 8px;
  white-space: nowrap;
}

.lang-switch [aria-current="true"] {
  opacity: 1;
}

.cta,
.pill-button,
.form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65em;
  cursor: pointer;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .35s var(--ease), color .35s var(--ease), opacity .35s var(--ease);
}

.cta {
  padding: 10px 18px;
}

.pill-button,
.form button {
  padding: 12px 22px;
}

body[data-theme="dark"] .cta:hover,
body[data-theme="dark"] .cta:focus-visible,
.slide--dark .pill-button:hover,
.slide--dark .pill-button:focus-visible,
.slide--dark .form button:hover,
.slide--dark .form button:focus-visible {
  background: #fff;
  color: #000;
}

body[data-theme="light"] .cta:hover,
body[data-theme="light"] .cta:focus-visible,
.slide--light .pill-button:hover,
.slide--light .pill-button:focus-visible {
  background: #000;
  color: #fff;
}

.foot {
  position: fixed;
  inset: auto 0 0;
  height: var(--foot-h);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 var(--gutter);
  color: var(--chrome);
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  margin-right: 18px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .72;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sig {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}

.pager {
  display: flex;
  align-items: center;
  gap: 12px;
}

.count {
  min-width: 70px;
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  font-variant-numeric: tabular-nums;
  opacity: .8;
}

.pg {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  opacity: .75;
  transition: background .35s var(--ease), opacity .3s var(--ease);
}

.pg svg {
  width: 17px;
  height: 17px;
}

.pg:hover,
.pg:focus-visible {
  opacity: 1;
}

body[data-theme="dark"] .pg:hover,
body[data-theme="dark"] .pg:focus-visible {
  background: rgba(255, 255, 255, .11);
}

body[data-theme="light"] .pg:hover,
body[data-theme="light"] .pg:focus-visible {
  background: rgba(0, 0, 0, .07);
}

.pg:disabled {
  cursor: default;
  opacity: .24;
  background: transparent;
}

.edge-base,
.edge-fill {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 1px;
  z-index: 91;
  background: var(--chrome);
}

.edge-base {
  right: 0;
  opacity: .16;
}

.edge-fill {
  width: 12.5%;
  opacity: 1;
  transition: width .62s var(--ease);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .9em;
  margin-bottom: clamp(18px, 3.4vh, 42px);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow .num {
  opacity: .58;
  font-variant-numeric: tabular-nums;
}

.eyebrow .bar {
  flex: 0 0 34px;
  height: 1px;
  background: currentColor;
  opacity: .42;
}

.slide--dark .eyebrow {
  color: var(--muted-ink);
}

.slide--light .eyebrow {
  color: var(--muted-paper);
}

h1,
h2,
h3 {
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.03;
}

.lead {
  max-width: 26ch;
  margin-top: clamp(18px, 2.6vh, 32px);
  font-size: clamp(1.02rem, 1.55vw, 1.28rem);
  font-weight: 430;
  line-height: 1.52;
}

.slide--dark .lead {
  color: #d4d4d4;
}

.slide--light .lead {
  color: #363636;
}

.lead--wide {
  max-width: 46ch;
}

.hero {
  align-items: center;
  text-align: center;
}

.hero .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__kicker {
  margin-bottom: clamp(22px, 4.5vh, 44px);
  color: var(--muted-ink);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3rem, 11.2vw, 10.2rem);
  font-weight: 850;
  line-height: .91;
  text-transform: uppercase;
}

.hero h1 .l2 {
  display: block;
}

.swipecue {
  position: absolute;
  left: 50%;
  bottom: calc(var(--foot-h) + 26px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-ink);
  transition: opacity .5s var(--ease);
}

.swipecue span {
  font-size: .64rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.swipecue .arr {
  position: relative;
  width: 46px;
  height: 1px;
  overflow: hidden;
  background: currentColor;
}

.swipecue .arr::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 40%;
  background: var(--chrome);
  animation: slidearr 2.2s var(--ease) infinite;
}

body.moved .swipecue {
  opacity: 0;
  pointer-events: none;
}

@keyframes slidearr {
  0% {
    left: -40%;
  }
  60%,
  100% {
    left: 100%;
  }
}

.statement h2 {
  font-size: clamp(1.9rem, 5.6vw, 4.8rem);
}

.statement h2 .dim {
  color: var(--muted-paper);
}

.sec-head,
.work-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.sec-head h2,
.work-head h2 {
  font-size: clamp(1.9rem, 5vw, 4rem);
}

.note {
  max-width: 32ch;
  color: var(--muted-paper);
  font-size: .94rem;
  line-height: 1.5;
}

.blocks {
  margin-top: clamp(22px, 3.6vh, 46px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule-paper);
  border-left: 1px solid var(--rule-paper);
}

.block {
  position: relative;
  min-height: clamp(112px, 14.5vh, 162px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 0;
  border-right: 1px solid var(--rule-paper);
  border-bottom: 1px solid var(--rule-paper);
  background: transparent;
  color: var(--ink);
  padding: clamp(20px, 3vw, 40px) clamp(20px, 2.4vw, 32px);
  text-align: left;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease);
}

.block .idx {
  color: var(--muted-paper);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  font-variant-numeric: tabular-nums;
}

.block .name {
  max-width: 11ch;
  font-size: clamp(1.25rem, 2.05vw, 1.82rem);
  font-weight: 700;
}

.block .plus {
  position: absolute;
  top: clamp(20px, 2.6vw, 34px);
  right: clamp(20px, 2.2vw, 30px);
  width: 13px;
  height: 13px;
  opacity: .55;
  transition: transform .45s var(--ease), opacity .35s var(--ease);
}

.block .plus::before,
.block .plus::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.block .plus::before {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
}

.block .plus::after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.block:hover,
.block:focus-visible,
.block[aria-pressed="true"] {
  background: #000;
  color: #fff;
}

.block[aria-pressed="true"] .plus {
  transform: rotate(45deg);
  opacity: .9;
}

.imagining {
  min-height: 1.4em;
  margin-top: 20px;
  color: var(--muted-paper);
  font-size: .94rem;
  transition: opacity .35s var(--ease);
}

.imagining b {
  color: var(--ink);
}

.road {
  margin-top: clamp(18px, 3.2vh, 44px);
  border-top: 1px solid var(--rule-ink);
}

.step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 4vw, 60px);
  padding: clamp(12px, 2.2vh, 28px) 0;
  border-bottom: 1px solid var(--rule-ink);
}

.step .n {
  color: var(--muted-ink);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  font-variant-numeric: tabular-nums;
}

.step .w {
  font-size: clamp(1.55rem, 4.8vw, 3.2rem);
  font-weight: 780;
}

.step .d {
  max-width: 23ch;
  color: var(--muted-ink);
  font-size: .84rem;
  line-height: 1.45;
  text-align: right;
}

.cols,
.cards {
  margin-top: clamp(22px, 3.6vh, 50px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 44px);
}

.col {
  border-top: 2px solid var(--ink);
  padding-top: 20px;
}

.col .cn {
  display: block;
  margin-bottom: 14px;
  color: var(--muted-paper);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.col h3 {
  font-size: clamp(1.18rem, 1.9vw, 1.55rem);
}

.col p {
  margin-top: 12px;
  color: #3a3a3a;
  font-size: .95rem;
  line-height: 1.55;
}

.card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--rule-paper);
  border-radius: 2px;
  padding: clamp(18px, 2vw, 28px);
  transition: border-color .35s var(--ease);
}

.card:hover {
  border-color: #000;
}

.card .tag {
  color: var(--muted-paper);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.card h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.card dl {
  display: grid;
  gap: 13px;
}

.card dt {
  margin-bottom: 4px;
  color: var(--muted-paper);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.card dd {
  color: #262626;
  font-size: .9rem;
  line-height: 1.48;
}

.card .thinking dd {
  color: #000;
  font-weight: 650;
}

.gate,
.contact {
  text-align: center;
}

.gate .wrap {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gate h2,
.contact h2 {
  font-size: clamp(2rem, 5.4vw, 4.4rem);
}

.gate .lead {
  max-width: 42ch;
  text-align: center;
}

.form {
  width: 100%;
  max-width: 640px;
  margin-top: clamp(22px, 3.4vh, 42px);
  display: grid;
  gap: 10px;
}

.form--inline {
  grid-template-columns: 1fr auto;
  align-items: end;
  border-bottom: 1px solid var(--rule-ink);
  padding-bottom: 10px;
}

.contact-grid {
  width: min(100%, 960px);
  margin: clamp(24px, 4vh, 48px) auto 0;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  text-align: left;
}

.contact-grid .form {
  margin-top: 0;
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--muted-ink);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.form input,
.form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--rule-ink);
  background: transparent;
  color: #fff;
  padding: 11px 2px;
  font-size: 1rem;
  resize: vertical;
}

.form textarea {
  min-height: 108px;
}

.form input::placeholder,
.form textarea::placeholder {
  color: #777;
}

.form input:focus,
.form textarea:focus {
  outline: 0;
  border-color: #fff;
}

.form input[aria-invalid="true"],
.form textarea[aria-invalid="true"] {
  border-color: #fff;
  box-shadow: 0 1px 0 #fff;
}

.form .hp {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

.form-message {
  min-height: 1.4em;
  color: var(--muted-ink);
  font-size: .84rem;
  line-height: 1.4;
}

.form-message.is-ok {
  color: #fff;
}

.micro {
  margin-top: 16px;
  color: var(--muted-ink);
  font-size: .78rem;
}

.details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
  border-top: 1px solid var(--rule-ink);
  padding-top: 22px;
}

.details dt {
  margin-bottom: 8px;
  color: var(--muted-ink);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.details dd {
  color: #fff;
  font-size: .96rem;
  font-weight: 560;
  line-height: 1.45;
}

.details a:hover,
.details a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(13px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

.slide.is-active .reveal {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .1s;
}

.d2 {
  transition-delay: .2s;
}

.d3 {
  transition-delay: .3s;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

@media (max-width: 960px) {
  .blocks,
  .cols,
  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: auto 1fr;
    gap: 14px 20px;
  }

  .step .d {
    grid-column: 2;
    text-align: left;
  }
}

@media (max-width: 700px) {
  :root {
    --nav-h: 64px;
    --foot-h: 0px;
  }

  html,
  body {
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: auto;
    background: #fff;
    scroll-behavior: smooth;
  }

  body[data-theme="dark"] {
    background: #000;
  }

  body[data-theme="light"] {
    background: #fff;
  }

  .deck {
    position: static;
    height: auto;
    min-height: 100svh;
    overflow: visible;
    touch-action: auto;
  }

  .track {
    display: block;
    height: auto;
    transform: none !important;
    transition: none;
    will-change: auto;
  }

  .slide {
    width: 100%;
    min-height: auto;
    height: auto;
    padding: calc(var(--nav-h) + 54px) var(--gutter) 78px;
    display: block;
    overflow: visible;
    -webkit-overflow-scrolling: touch;
    scroll-margin-top: var(--nav-h);
  }

  .hero {
    min-height: 100svh;
    display: flex;
    padding-top: calc(var(--nav-h) + 28px);
    padding-bottom: 72px;
  }

  .slide--light + .slide--light {
    border-top: 1px solid rgba(0, 0, 0, .08);
  }

  .slide--dark + .slide--dark {
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .wrap {
    margin: 0;
  }

  .hero .wrap {
    margin: auto 0;
  }

  .nav {
    background: rgba(255, 255, 255, .88);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    backdrop-filter: blur(14px);
  }

  body[data-theme="dark"] .nav {
    background: rgba(0, 0, 0, .82);
    border-bottom-color: rgba(255, 255, 255, .12);
  }

  .nav__logo {
    height: 21px;
    min-width: 92px;
  }

  .nav__links {
    display: none;
  }

  .nav__menu {
    gap: 12px;
  }

  .cta {
    padding: 9px 13px;
    font-size: .7rem;
  }

  .lang-switch a,
  .lang-switch span {
    font-size: .7rem;
  }

  .sig {
    max-width: none;
    white-space: normal;
    font-size: .62rem;
    line-height: 1.2;
  }

  .foot {
    position: static;
    min-height: 92px;
    height: auto;
    display: grid;
    gap: 12px;
    align-items: start;
    padding: 22px var(--gutter);
    background: #000;
    color: #fff;
  }

  .legal-links {
    margin: 0;
    gap: 16px;
    flex-wrap: wrap;
  }

  .pager {
    display: none;
  }

  .edge-base,
  .edge-fill,
  .swipecue {
    display: none;
  }

  .count {
    min-width: 58px;
    font-size: .66rem;
  }

  .pg {
    width: 32px;
    height: 32px;
  }

  .hero__kicker,
  .eyebrow {
    font-size: .66rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
    line-height: .94;
  }

  .lead {
    font-size: 1rem;
  }

  .cols,
  .cards {
    grid-template-columns: 1fr;
  }

  .cards {
    gap: 14px;
  }

  .card {
    min-height: auto;
    padding: 16px;
    gap: 10px;
  }

  .card h3 {
    font-size: 1.35rem;
  }

  .card dd {
    font-size: .88rem;
  }

  .blocks {
    grid-template-columns: 1fr 1fr;
  }

  .block {
    min-height: 86px;
    padding: 15px 16px;
  }

  .block .name {
    font-size: clamp(1rem, 5vw, 1.3rem);
  }

  .block .idx {
    font-size: .62rem;
  }

  .block .plus {
    top: 15px;
    right: 16px;
  }

  .road {
    margin-top: 18px;
  }

  .step {
    padding: 13px 0;
  }

  .step .w {
    font-size: clamp(1.45rem, 7.2vw, 2.15rem);
  }

  .form--inline {
    grid-template-columns: 1fr;
    border: 0;
    padding-bottom: 0;
  }

  .form--inline button,
  .form button {
    width: 100%;
  }

  .contact h2 {
    font-size: clamp(1.85rem, 8vw, 2.7rem);
  }

  .details {
    grid-template-columns: 1fr;
  }
}

.legal-page {
  min-height: 100svh;
  overflow: auto;
  background: #fff;
  color: #000;
}

.legal-page .nav,
.legal-page .foot {
  color: #000;
}

.legal-page .nav {
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  backdrop-filter: blur(14px);
}

.legal-page .foot {
  position: static;
  min-height: 88px;
  height: auto;
  border-top: 1px solid rgba(0, 0, 0, .1);
  background: #fff;
}

.legal-main {
  padding: calc(var(--nav-h) + 64px) var(--gutter) 80px;
}

.legal-main .wrap {
  max-width: 860px;
}

.legal-main h1 {
  font-size: clamp(2.4rem, 7vw, 5rem);
  margin-bottom: 24px;
}

.legal-main h2 {
  margin-top: 36px;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
}

.legal-main p,
.legal-main li {
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
}

.legal-main ul {
  margin: 14px 0 0 1.1em;
}

.legal-main .lead {
  max-width: 58ch;
}

.legal-main .back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: #555;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.legal-main .back-link:hover,
.legal-main .back-link:focus-visible {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 700px) {
  .legal-page .nav {
    background: rgba(255, 255, 255, .88);
  }

  .legal-main {
    padding-top: calc(var(--nav-h) + 42px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .track,
  .reveal,
  .swipecue .arr::after,
  .edge-fill {
    animation: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
