.app-main {
  flex: 1;
  padding: 44px 0 72px;
  animation: content-in 380ms var(--ease) both;
}

@keyframes content-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.app-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 18px 0;
  background: rgba(12, 18, 32, 0.6);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.footer-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.footer-hipaa,
.footer-powered {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.footer-powered a {
  color: var(--accent-dim);
  text-decoration: none;
  transition: color 160ms var(--ease);
}
.footer-powered a:hover { color: var(--accent); }
