/* Fixed developer credit bar — landing pages */
.store-footer-dev-bar {
  background: #232424;
  color: #9ca3af;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  font-size: 14px;
  line-height: 1.5;
}
.store-footer-dev-bar-inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.store-footer-dev-copy {
  flex: 1;
  min-width: 180px;
  color: #9ca3af;
  font-weight: 500;
}
.store-footer-dev-credit {
  margin-left: auto;
  color: #9ca3af;
  font-weight: 500;
  white-space: nowrap;
}
.store-footer-dev-credit a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.store-footer-dev-credit a:hover {
  text-decoration: underline;
  opacity: .9;
}
@media (max-width: 575px) {
  .store-footer-dev-bar-inner {
    flex-direction: column;
    text-align: center;
  }
  .store-footer-dev-copy,
  .store-footer-dev-credit {
    width: 100%;
    margin-left: 0;
  }
}
body:has(.lp1-sticky) .store-footer-dev-bar {
  padding-bottom: calc(12px + 78px + env(safe-area-inset-bottom, 0px));
}
