@font-face {
  font-family: "HelveticaNeueBdEx";
  src: url("/assets/fonts/HelveticaNeueLTStd-BdEx.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --docu-credits-duration: 58s;
  --docu-credits-width: min(1040px, 92vw);
  --docu-credits-heading: clamp(26px, 2.65vw, 52px);
  --docu-credits-body: clamp(10.5px, 0.76vw, 14.5px);
  --docu-credits-leading: 1.04;
  --docu-video-shade-opacity: 0.16;
  --docu-end-fade-duration: 5200ms;
}

html,
body {
  background: #000;
}

#nav {
  position: relative;
  z-index: 80;
}

#dark-mode-button {
  display: none !important;
  z-index: 81;
}

#docu-main {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: #000;
  color: #fff;
  opacity: 1;
  transition: opacity 220ms ease;
}

#docu-bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  opacity: 1;
  filter: none;
  transition:
    opacity var(--docu-end-fade-duration) cubic-bezier(0.16, 1, 0.3, 1),
    filter var(--docu-end-fade-duration) cubic-bezier(0.16, 1, 0.3, 1);
}

#docu-video-shade {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: #000;
  opacity: var(--docu-video-shade-opacity);
  transition: opacity var(--docu-end-fade-duration) cubic-bezier(0.16, 1, 0.3, 1);
}

#docu-blackout {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  background: #000;
  opacity: 0;
  transition: opacity var(--docu-end-fade-duration) cubic-bezier(0.16, 1, 0.3, 1);
}

#docu-credits-viewport {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
  padding: 0 24px;
  box-sizing: border-box;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 4%, #000 16%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, transparent 4%, #000 16%, #000 100%);
}

#docu-credits-roll {
  width: var(--docu-credits-width);
  max-width: 100%;
  color: #fff;
  font-family: "HelveticaNeueBdEx", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  will-change: transform, opacity;
  transform: translate3d(0, 100svh, 0);
  opacity: 1;
  transition: opacity 1700ms cubic-bezier(0.16, 1, 0.3, 1);
  animation: none;
  pointer-events: auto;
}

body.docu-is-restarting #docu-credits-roll {
  animation: none;
}

body.docu-ending #docu-credits-roll,
body.docu-ended #docu-credits-roll {
  opacity: 0;
}

@keyframes docuCreditsRoll {
  from { transform: translate3d(0, 100svh, 0); }
  to { transform: translate3d(0, calc(-100% - 96svh), 0); }
}

.docu-credit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(20px, 2.8vw, 46px);
  align-items: start;
}

.docu-credit-block {
  min-width: 0;
  overflow: visible;
}

.docu-credit-block h1,
.docu-credit-block h2 {
  margin: 0;
  font-family: inherit;
  font-size: var(--docu-credits-heading);
  font-weight: inherit;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.docu-credit-block h2 {
  margin-top: clamp(20px, 2.25vw, 38px);
}

.docu-credit-block p,
.docu-footer-copy,
.docu-footer-line,
.docu-footer-copyright,
.docu-footer-legal {
  margin: 0;
  font-family: "HelveticaNeueRoman", Helvetica, Arial, sans-serif;
  font-size: var(--docu-credits-body);
  font-weight: 400;
  line-height: var(--docu-credits-leading);
  letter-spacing: -0.055em;
}

.docu-credit-block h1,
.docu-credit-block h2 {
  font-family: "HelveticaNeueBdEx", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.docu-about,
.docu-about h1,
.docu-about h2 {
  text-align: right;
}

.docu-extra,
.docu-extra h1,
.docu-extra h2 {
  text-align: left;
}

.docu-special-thanks-heading {
  white-space: nowrap;
}

.docu-credit-block h1 + p,
.docu-credit-block h2 + p {
  margin-top: 6px;
}

.docu-credit-block p + p {
  margin-top: 14px;
}

.docu-contact-link,
.docu-contact-link:link,
.docu-contact-link:visited {
  color: inherit;
  text-decoration: none;
  pointer-events: auto;
  position: relative;
  z-index: 80;
}

.docu-contact-link:hover,
.docu-contact-link:focus-visible {
  opacity: 0.45;
  outline: none;
}

.docu-credit-footer {
  position: relative;
  width: min(920px, 96vw);
  margin: clamp(82px, 10vh, 122px) auto 0;
  text-align: center;
  color: #fff;
}

.docu-footer-triptych {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  column-gap: clamp(120px, 15vw, 250px);
  width: min(900px, 96vw);
  margin: 0 auto;
}

.docu-footer-copy {
  width: max-content;
  max-width: 200px;
  text-align: left;
}

.docu-footer-copy-left {
  justify-self: start;
  margin-top: 0;
}

.docu-footer-copy-center {
  justify-self: center;
  margin-top: clamp(58px, 7vh, 96px);
}

.docu-footer-copy-right {
  justify-self: end;
  margin-top: clamp(124px, 15vh, 188px);
}

.docu-footer-software {
  margin-top: clamp(82px, 9vh, 118px);
}

.docu-footer-line {
  text-align: center;
}

.docu-footer-asset-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(760px, 92vw);
  margin: 18px auto 0;
}

.docu-footer-asset {
  display: block;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.docu-footer-asset-pyx {
  width: clamp(58px, 6vw, 84px);
  justify-self: center;
}

.docu-footer-asset-stamp {
  width: clamp(158px, 20vw, 230px);
  justify-self: center;
}

.docu-footer-asset-uic {
  width: clamp(112px, 14vw, 164px);
  justify-self: center;
  transform: translateX(-6px);
}

.docu-footer-brand {
  margin-top: clamp(74px, 8vh, 106px);
  text-align: center;
}

.docu-footer-main-logo {
  display: block;
  width: clamp(124px, 13vw, 184px);
  height: auto;
  margin: 14px auto 18px;
  pointer-events: none;
  user-select: none;
}

.docu-footer-copyright {
  text-align: center;
}

.docu-footer-legal {
  width: min(620px, 86vw);
  margin: clamp(24px, 3.2vh, 38px) auto 0;
  text-align: center;
}

#docu-final-menu {
  position: fixed;
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate3d(-50%, -50%, 0);
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

body.docu-ended #docu-final-menu {
  opacity: 1;
  pointer-events: auto;
}

.docu-final-link,
.docu-final-slash {
  font-family: "HelveticaNeueRoman", Helvetica, Arial, sans-serif;
  font-size: calc(var(--text-size) + 2px);
  line-height: 0.96;
  letter-spacing: var(--tracking);
  color: inherit;
  text-transform: uppercase;
}

.docu-final-link,
.docu-final-link:link,
.docu-final-link:visited {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  text-decoration: none;
  cursor: pointer;
}

.docu-final-link:hover,
.docu-final-link:focus-visible {
  opacity: 0.45;
  outline: none;
}

.docu-final-frag {
  display: inline-block;
  opacity: 0;
  transition: opacity 70ms linear;
  will-change: opacity;
}

.docu-final-frag.is-visible {
  opacity: 1;
}

.docu-final-space {
  display: inline-block;
  width: 0.34em;
}

body.docu-ending #docu-bg-video,
body.docu-ended #docu-bg-video {
  opacity: 0;
  filter: none;
}

body.docu-ending #docu-video-shade,
body.docu-ended #docu-video-shade {
  opacity: 0;
}

body.docu-ending #docu-blackout,
body.docu-ended #docu-blackout {
  opacity: 1;
}

#docu-page-transition {
  position: fixed;
  inset: 0;
  z-index: 500000;
  background: var(--fg);
  pointer-events: none;
  transform: translate3d(0, -100%, 0);
  will-change: transform;
}

body.docu-preload #docu-page-transition {
  transform: translate3d(0, 0, 0);
}

body.docu-intro #docu-page-transition {
  transform: translate3d(0, 100%, 0);
  transition: transform 980ms cubic-bezier(0.76, 0, 0.24, 1);
}

body.docu-preload #docu-main {
  opacity: 0;
}

body.docu-intro #docu-main,
body.docu-intro-ready #docu-main {
  opacity: 1;
}

@media (pointer: coarse) and (max-width: 900px) {
  :root {
    --docu-credits-width: min(92vw, 580px);
    --docu-credits-heading: clamp(24px, 7.8vw, 38px);
    --docu-credits-body: clamp(9.5px, 2.55vw, 12.5px);
    --docu-credits-leading: 1.06;
  }

  #nav {
    position: fixed;
    top: 18px;
    left: 16px;
    right: 16px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 90;
  }

  #desktop-nav-links {
    display: none;
  }

  #mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: none;
    padding: 0;
    margin: 0;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    box-shadow: none;
    z-index: 120;
    position: relative;
    top: -2px;
  }

  #mobile-menu-button::before {
    width: 30px;
    height: 30px;
    background-size: 100% 100%;
  }

  #docu-bg-video {
    object-position: 48% center;
  }

  #docu-credits-viewport {
    padding: 0 16px;
  }

  .docu-credit-grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .docu-about,
  .docu-extra,
  .docu-about h1,
  .docu-about h2,
  .docu-extra h1,
  .docu-extra h2 {
    text-align: center;
  }

  .docu-special-thanks-heading {
    white-space: normal;
  }

  .docu-credit-footer {
    width: min(92vw, 580px);
    margin-top: 76px;
  }

  .docu-footer-triptych {
    grid-template-columns: 1fr;
    row-gap: 42px;
    width: max-content;
    max-width: 100%;
  }

  .docu-footer-copy,
  .docu-footer-copy-left,
  .docu-footer-copy-center,
  .docu-footer-copy-right {
    justify-self: center;
    width: max-content;
    max-width: 220px;
    text-align: left;
    margin-top: 0;
  }

  .docu-footer-software {
    margin-top: 72px;
  }

  .docu-footer-asset-row {
    width: min(92vw, 460px);
  }

  .docu-footer-asset-pyx {
    width: clamp(52px, 13vw, 70px);
  }

  .docu-footer-asset-stamp {
    width: clamp(128px, 36vw, 190px);
  }

  .docu-footer-asset-uic {
    width: clamp(96px, 27vw, 138px);
    transform: translateX(-2px);
  }

  .docu-footer-brand {
    margin-top: 72px;
  }

  .docu-footer-main-logo {
    width: clamp(124px, 34vw, 172px);
  }

  .docu-footer-legal {
    width: min(88vw, 520px);
  }

  #docu-final-menu {
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
    flex-wrap: wrap;
  }

  @keyframes docuCreditsRoll {
    from { transform: translate3d(0, 100svh, 0); }
    to { transform: translate3d(0, calc(-100% - 118svh), 0); }
  }
}

@media (pointer: coarse) and (max-width: 600px) {
  #mobile-menu-button {
    width: 36px;
    height: 36px;
    padding: 0;
    top: -2px;
  }

  #mobile-menu-button::before {
    width: 30px;
    height: 30px;
    background-size: 100% 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  #docu-credits-roll {
    animation-duration: 1ms;
  }

  #docu-bg-video,
  #docu-video-shade,
  #docu-blackout,
  #docu-final-menu {
    transition-duration: 1ms;
  }
}