.landing-layout.ft-public-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg, #0a0a0a);
  color: var(--fg, #f5f5f7);
  overflow-x: hidden;
}

.ft-public-shell__content {
  flex: 1;
  width: 100%;
  padding-top: 76px;
}

.ft-public-shell__footer {
  border-top: 1px solid var(--card-border, #38383a);
  background: var(--bg, #0a0a0a);
  padding: 0;
}

.ft-public-shell__footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0;
}

.ft-public-shell__footer-brand,
.ft-public-shell__footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ft-public-shell__footer-brand {
  color: var(--fg, #f5f5f7);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.ft-public-shell__footer-brand img {
  width: 24px;
  height: 24px;
}

.ft-public-shell__footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ft-public-shell__footer a {
  color: var(--fg-secondary, #98989d);
  font-size: 14px;
  text-decoration: none;
}

.ft-public-shell__footer a:hover {
  color: var(--fg, #f5f5f7);
}

.hide-mobile {
  display: initial;
}

.mobile-only {
  display: none;
}

@media (max-width: 760px) {
  .ft-public-shell__content {
    padding-top: 68px;
  }

  .ft-public-shell__footer-inner {
    align-items: flex-start;
    flex-direction: column;
    width: min(100% - 28px, 560px);
  }

  .ft-public-shell__footer nav {
    justify-content: flex-start;
  }

  .hide-mobile {
    display: none !important;
  }

  .mobile-only {
    display: flex !important;
  }
}
