/* Brand attribution and future scope extend the existing landing-page theme. */
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
}
.studio-credit {
  font-size: 13px;
  color: var(--muted);
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.studio-credit:hover,
.footer-studio:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-studio {
  font-weight: 600;
  color: var(--ink);
}
/* Future ideas are visually distinct from available app functionality. */
.future {
  padding-top: 65px;
}
.future > .section-heading {
  border-top: 1px solid var(--line);
  padding-top: 50px;
}
.future-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.future-item {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.future-status {
  display: inline-block;
  padding: 4px 9px;
  background: var(--accent);
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 0.8px;
  font-weight: 600;
}
.future-item h3 {
  margin: 18px 0 12px;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}
.future-item p {
  color: var(--muted);
  font-size: 16px;
}
.future-note {
  color: var(--muted);
  font-size: 14px;
  margin-top: 22px;
}
/* Stack future cards and brand attribution on narrower screens. */
@media (max-width: 760px) {
  .brand-lockup {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .studio-credit {
    border-left: 0;
    padding-left: 0;
    font-size: 12px;
  }
  .future {
    padding-top: 45px;
  }
  .future > .section-heading {
    padding-top: 35px;
  }
  .future-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .future-item {
    padding: 24px;
  }
  .future-item h3 {
    font-size: 23px;
  }
  .footer p {
    margin-left: 0;
    flex-basis: 100%;
  }
}
