@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/newsreader-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/fonts/jetbrains-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

:root {
  --font-display: 'Newsreader', Georgia, 'Times New Roman', Times, serif;
  --font-sans: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas,
    monospace;

  --step-display: clamp(2.375rem, 1.45rem + 3.95vw, 4.25rem);
  --step-title: clamp(1.75rem, 1.35rem + 1.7vw, 2.5rem);
  --step-h2: clamp(1.375rem, 1.2rem + 0.75vw, 1.75rem);
  --step-h3: 1.0625rem;
  --step-body: 1.0625rem;
  --step-small: 0.9375rem;
  --step-caption: 0.75rem;

  --page: #ffffff;
  --ink: #0d1526;
  --muted: #4d5b72;

  --faint: #5a6a80;
  --rule: #e3e8ef;

  --header-scrim: rgba(255, 255, 255, 0.94);

  --header-h: 5rem;
  --rule-strong: #c8d2e0;
  --tint: #f5f7fa;

  --band: #0b1120;
  --band-ink: #eaeff7;

  --band-muted: #b4c2d5;
  --band-rule: #24314b;
  --band-accent: #9cc0ff;

  --band-scrim: rgba(11, 17, 32, 0.72);
  --band-scrim-0: rgba(11, 17, 32, 0);

  --accent: #1d4ed8;
  --accent-hover: #16359b;

  --dur-structure: 0.25s;
  --dur-colour: 0.1s;
  --ease: ease;

  --measure: 42rem;
  --measure-wide: 54rem;
  --gutter: 1.5rem;
  --cadastre-opacity: 1;
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #0b1120;
    --ink: #e6ebf3;
    --muted: #9db0c8;
    --faint: #8494ab;
    --rule: #1c2740;
    --header-scrim: rgba(11, 17, 32, 0.94);
    --rule-strong: #33425f;
    --tint: #101a2e;

    --band: #060a13;
    --band-rule: #1b2740;
    --band-scrim: rgba(6, 10, 19, 0.72);
    --band-scrim-0: rgba(6, 10, 19, 0);

    --accent: #9cc0ff;
    --accent-hover: #c9ddff;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  background: var(--page);
}

:root {
  --grid-light: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='32' height='32' fill='none' stroke='rgb(226 232 240 / 0.8)' stroke-dasharray='5 3' transform='scale(1, -1)'%3e%3cpath d='M0 .5H31.5V32'/%3e%3c/svg%3e");
  --grid-dark: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='32' height='32' fill='none' stroke='rgb(248 250 252 / .025)' stroke-dasharray='5 3' transform='scale(1, -1)'%3e%3cpath d='M0 .5H31.5V32'/%3e%3c/svg%3e");

  --grid-theme: var(--grid-light);
}

@media (prefers-color-scheme: dark) {
  :root {
    --grid-theme: var(--grid-dark);
  }
}

.masthead,
.band,
.site-footer {
  --grid-image: var(--grid-dark);
}

.band--tint {
  --grid-image: var(--grid-theme);
}

.band--grid {
  position: relative;
  z-index: 0;
}

.band--grid::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: var(--grid-image, var(--grid-theme));
  -webkit-mask-image: linear-gradient(transparent, black, transparent);
  mask-image: linear-gradient(transparent, black, transparent);
}

.band--grid-fade-out::before {
  -webkit-mask-image: linear-gradient(black, black, transparent);
  mask-image: linear-gradient(black, black, transparent);
}

.band--grid-fade-in::before {
  -webkit-mask-image: linear-gradient(transparent, black, black);
  mask-image: linear-gradient(transparent, black, black);
  background-position: 0 100%;
}

body {
  margin: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--step-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
}

.wrap {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.wrap--wide {
  max-width: var(--measure-wide);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--page);
  color: var(--ink);
  border: 1px solid var(--rule-strong);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color var(--dur-colour) var(--ease),
    border-color var(--dur-colour) var(--ease);
}

a:hover {
  color: var(--accent-hover);
}

.brand,
.nav a,
.cta,
.chip {
  border-bottom-color: transparent;
}

.chip:hover {
  border-bottom-color: currentColor;
}

a:focus-visible,
.skip-link:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.masthead {
  background: var(--band);
  color: var(--band-ink);
}

.masthead a {
  color: var(--band-accent);
}

.masthead a:hover {
  color: #ffffff;
}

.masthead a:focus-visible {
  outline-color: var(--band-accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--band);
  color: var(--band-ink);

  border-bottom: 1px solid transparent;
}

.site-header a,
.site-header .brand,
.site-header .brand:hover {
  color: inherit;
}

.nav a {
  color: inherit;
  opacity: 0.78;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current='page'] {
  opacity: 1;
}

.site-header a:focus-visible {
  outline-color: currentColor;
}

@keyframes header-settle {
  from {
    background-color: var(--band);
    border-bottom-color: rgba(0, 0, 0, 0);
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
    color: var(--band-ink);
  }

  to {
    background-color: var(--header-scrim);
    border-bottom-color: var(--rule);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: var(--ink);
  }
}

body {
  timeline-scope: --masthead-exit;
}

.masthead {
  view-timeline-name: --masthead-exit;
  view-timeline-axis: block;
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .site-header {
      animation-name: header-settle;
      animation-fill-mode: both;
      animation-timing-function: linear;
      animation-timeline: --masthead-exit;

      animation-range: exit calc(100% - 9rem) exit calc(100% - 5rem);
    }
  }
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding-top: 1.375rem;
  padding-bottom: 1.375rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-bottom: none;
}

.site-header .brand:hover {
  border-bottom: none;
}

.brand__legal {
  color: var(--band-muted);
  font-weight: 400;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: var(--step-small);
}

.nav a {
  position: relative;
  display: inline-block;
  padding: 0.25rem 0;
  border-bottom: none;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform var(--dur-structure) var(--ease);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a[aria-current='page']::after {
  transform: scaleX(1);
}

@media (max-width: 48rem) {
  :root {
    --header-h: 4rem;
  }

  .site-header__inner {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    gap: 0.125rem 1rem;
  }

  .brand {
    font-size: 1rem;
    line-height: 1.25;
  }

  .nav {
    flex-wrap: nowrap;
    gap: 0.75rem;
    font-size: 0.875rem;
  }

  .nav a {
    padding: 0.125rem 0;
    line-height: 1.5;
  }
}

.masthead {
  position: relative;
  overflow: hidden;
}

.masthead__inner {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  padding-bottom: 5.5rem;
}

.masthead--page .masthead__inner {
  padding-top: 3rem;
  padding-bottom: 3.25rem;
}

.masthead::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    96deg,
    var(--band-scrim) 0%,
    var(--band-scrim) 30%,
    var(--band-scrim-0) 78%
  );
}

@media (max-width: 48rem) {

  .masthead::after {
    background: linear-gradient(
      180deg,
      var(--band-scrim) 0%,
      var(--band-scrim) 70%,
      var(--band-scrim-0) 100%
    );
  }
}

.cadastre {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: var(--cadastre-opacity);
  pointer-events: none;

}

.cadastre g {
  fill: none;
  stroke: #9cc0ff;
  vector-effect: non-scaling-stroke;
}

.cadastre__contours {
  stroke-width: 1;
  stroke-opacity: 0.07;
}

.cadastre__parcels {
  stroke-width: 1;
  stroke-opacity: 0.1;
}

.cadastre__traverse {
  stroke-width: 1;
  stroke-opacity: 0.13;
  stroke-dasharray: 7 5;
}

.cadastre__traverse circle {
  stroke-dasharray: none;
}

.cadastre__detail {
  stroke-width: 1;
  stroke-opacity: 0.11;
}

.cadastre__detail text {
  fill: #9cc0ff;
  fill-opacity: 0.16;
  stroke: none;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.masthead--page {
  --cadastre-opacity: 0.55;
}

@media (max-width: 48rem) {
  .cadastre__detail {
    display: none;
  }
}

h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--step-display);
  line-height: 1.06;
  letter-spacing: -0.021em;
  font-weight: 400;
  color: var(--band-ink);
  max-width: 16ch;
}

.masthead--page h1 {
  font-size: var(--step-title);
  line-height: 1.1;
  max-width: none;
}

.hero__sub {
  margin: 1.75rem 0 0;
  max-width: 52ch;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--band-muted);
}

.masthead--page .hero__sub {
  margin-top: 1.125rem;
}

.hero__standfirst {
  margin: 1.125rem 0 0;
  font-family: var(--font-mono);
  font-size: var(--step-small);
  color: var(--band-muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
}

.cta {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--rule-strong);
  font-size: var(--step-small);
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  transition: color var(--dur-colour) var(--ease),
    background-color var(--dur-colour) var(--ease),
    border-color var(--dur-colour) var(--ease);
}

.cta:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.cta--primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--page);
}

.cta--primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--page);
}

.masthead .cta {
  border-color: var(--band-rule);
  color: var(--band-ink);
}

.masthead .cta:hover {
  border-color: var(--band-ink);
  color: var(--band-ink);
}

.masthead .cta--primary {
  background: var(--band-ink);
  border-color: var(--band-ink);
  color: var(--band);
}

.masthead .cta--primary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--band);
}

@media (prefers-color-scheme: dark) {
  .cta--primary {
    background: var(--ink);
    color: var(--page);
  }

  .cta--primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #06101f;
  }
}

section {
  padding: 3.5rem 0;
}

.rule-top {
  border-top: 1px solid var(--rule);
}

h2 {
  margin: 0 0 1.125rem;
  font-family: var(--font-display);
  font-size: var(--step-h2);
  line-height: 1.2;
  letter-spacing: -0.012em;
  font-weight: 500;
}

h3 {
  margin: 0 0 0.5rem;
  font-size: var(--step-h3);
  font-weight: 600;
  letter-spacing: -0.005em;
}

p {
  margin: 0 0 1.125rem;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.125rem;
  color: var(--muted);
}

.eyebrow {
  display: block;
  margin: 0 0 1.5rem;
  font-family: var(--font-mono);
  font-size: var(--step-caption);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}

.band {
  background: var(--band);
  color: var(--band-ink);
  border-top: 1px solid var(--band-rule);
  border-bottom: 1px solid var(--band-rule);
}

.band a {
  color: var(--band-accent);
}

.band .eyebrow {
  color: var(--band-muted);
}

.band blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.05rem + 1.9vw, 2.375rem);
  line-height: 1.28;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: var(--band-ink);
}

.band--tint {
  background: var(--tint);
  color: var(--ink);
  border-color: var(--rule);
}

.callout-band {
  padding: 3.5rem 0;
}

.callout {
  padding: 2rem;
  background: var(--page);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--accent);
}

.callout h2 {
  margin-bottom: 0.75rem;
  font-size: var(--step-h2);
}

.callout p {
  max-width: 62ch;
  color: var(--muted);
}

.proof {
  display: grid;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 48rem) {
  .proof {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
  }
}

.proof > li {
  padding-top: 1.25rem;
  border-top: 2px solid var(--ink);
}

.proof p {
  font-size: var(--step-small);
  color: var(--muted);
  line-height: 1.65;
}

.proof a {
  font-size: var(--step-small);
}

.papers__group + .papers__group {
  margin-top: 3.5rem;
}

.papers__group > h2 {
  margin-bottom: 0.25rem;
}

.papers__gloss {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--muted);
}

.papers__gloss:has(+ .papers__note) {
  margin-bottom: 0.5rem;
}

.papers__note {
  margin: 0 0 1.5rem;
  max-width: 62ch;
  font-size: 0.9375rem;
  color: var(--faint);
}

.papers {
  display: grid;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.paper {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--rule);
  background: var(--page);
  transition: transform var(--dur-structure) var(--ease),
    border-color var(--dur-structure) var(--ease);
}

.paper::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform var(--dur-structure) var(--ease);
}

.paper:hover,
.paper:focus-within {
  transform: translateY(-2px);
  border-color: var(--rule-strong);
}

.paper:hover::before,
.paper:focus-within::before {
  transform: scaleX(1);
}

.paper__label {
  display: block;
  margin: 0 0 0.75rem;
  font-family: var(--font-mono);
  font-size: var(--step-caption);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.paper h3 {
  margin-bottom: 0.25rem;
  font-size: 1.5rem;
}

.paper h3 a {
  color: var(--ink);
  border-bottom-color: transparent;
}

.paper h3 a:hover,
.paper h3 a:focus-visible {
  color: var(--accent);
  border-bottom-color: currentColor;
}

.paper__subtitle {
  margin: 0 0 1.125rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--muted);
}

.paper__abstract {
  margin: 0 0 1.25rem;
  font-size: var(--step-small);
  line-height: 1.7;
}

.paper__doi {
  margin: 0 0 1.125rem;
  padding-top: 1.125rem;
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  overflow-wrap: anywhere;
}

.paper__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: var(--step-small);
}

.chip {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border: 1px solid var(--rule-strong);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.chip:hover {
  border-color: currentColor;
}

.site-header .brand:hover,
.brand:hover {
  border-bottom-color: transparent;
}

.note {
  margin: 2.5rem 0 0;
  font-size: var(--step-small);
  color: var(--faint);
}

.offer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--rule);
}

.offer h2 {
  font-size: 1.4375rem;
  margin-bottom: 1.125rem;
}

.offer p {
  font-size: var(--step-small);
  margin-bottom: 0.875rem;
}

.offer__label {
  color: var(--faint);
}

.offer__meta {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--faint);
}

.models {
  margin: 0;
}

.models dt {
  margin-top: 1.5rem;
  font-weight: 600;
}

.models dt:first-child {
  margin-top: 0;
}

.models dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.table-scroll {
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--rule);
  border-radius: 4px;

  background:
    linear-gradient(to right, var(--page) 30%, rgba(255, 255, 255, 0)) left center,
    linear-gradient(to left, var(--page) 30%, rgba(255, 255, 255, 0)) right center,
    radial-gradient(farthest-side at 0 50%, rgba(13, 21, 38, 0.18), rgba(13, 21, 38, 0)) left
      center,
    radial-gradient(farthest-side at 100% 50%, rgba(13, 21, 38, 0.18), rgba(13, 21, 38, 0))
      right center;
  background-repeat: no-repeat;
  background-size:
    3rem 100%,
    3rem 100%,
    0.85rem 100%,
    0.85rem 100%;
  background-attachment: local, local, scroll, scroll;
}

.table-scroll:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.matrix {

  min-width: 50rem;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: var(--step-small);
  text-align: left;
}

.matrix th,
.matrix td {
  padding: 0.7rem 0.9rem;
  vertical-align: top;
  border-bottom: 1px solid var(--rule);
}

.matrix thead th {
  border-bottom: 1px solid var(--rule-strong);
  font-size: var(--step-caption);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}

.matrix thead th:nth-child(1) {
  width: 12rem;
}

.matrix thead th:nth-child(2) {
  width: 7rem;
}

.matrix tbody th {
  font-weight: 600;
  color: var(--ink);
}

.matrix tbody td {
  color: var(--muted);
}

.matrix tbody tr:last-child th,
.matrix tbody tr:last-child td {
  border-bottom: 0;
}

.matrix__hint {
  margin: -0.75rem 0 1.5rem;
  font-size: var(--step-caption);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
}

@media (min-width: 48rem) {
  .matrix__hint {
    display: none;
  }
}

.matrix__note {
  margin: 0;
  max-width: 62ch;
  font-size: var(--step-small);
  color: var(--faint);
}

@media (prefers-color-scheme: dark) {
  .table-scroll {
    background:
      linear-gradient(to right, var(--page) 30%, rgba(11, 17, 32, 0)) left center,
      linear-gradient(to left, var(--page) 30%, rgba(11, 17, 32, 0)) right center,
      radial-gradient(farthest-side at 0 50%, rgba(180, 194, 213, 0.38), rgba(180, 194, 213, 0))
        left center,
      radial-gradient(farthest-side at 100% 50%, rgba(180, 194, 213, 0.38), rgba(180, 194, 213, 0))
        right center;
    background-repeat: no-repeat;
    background-size:
      3rem 100%,
      3rem 100%,
      0.85rem 100%,
      0.85rem 100%;
    background-attachment: local, local, scroll, scroll;
  }
}

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .papers__group > h2,
    .paper {
      animation: reveal-rise 300ms var(--ease) both;
      animation-timeline: view();

      animation-range: entry 0% entry 35%;
    }
  }
}

@keyframes reveal-rise {
  from {
    opacity: 0;
    translate: 0 8px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

.address {
  margin: 0 0 1.5rem;
  font-family: var(--font-mono);
  font-size: clamp(1.0625rem, 0.88rem + 0.8vw, 1.4375rem);
  overflow-wrap: anywhere;
}

.fineprint {
  font-size: var(--step-small);
  color: var(--faint);
}

.legal h2 {
  margin-top: 3rem;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal h3 {
  margin-top: 1.75rem;
  font-size: 1rem;
}

.legal p {
  font-size: var(--step-small);
}

.legal__updated {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--faint);
}

.site-footer {
  padding: 3rem 0 4rem;
  background: var(--band);
  color: var(--band-muted);
  font-size: var(--step-small);
}

.site-footer a {
  color: var(--band-accent);
}

.site-footer a:hover {
  color: var(--band-ink);
}

.site-footer a:focus-visible {
  outline-color: var(--band-accent);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.site-footer p {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
}

.site-footer p:last-child {
  margin-bottom: 0;
}